/* COLORS */

:root{
    --rb__color-white: #F6F3EE;
    --rb__color-primary: #61BE1A;
    --rb__color-dark-primary: #144D29;
    --rb__color-light-primary: #AFDE8C;
}


/* ===== Normalize básico ===== */
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  *, *::before, *::after {
    box-sizing: inherit;
  }
  
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
  }

  html {
    overflow-x: hidden !important;
  }
  
  /* ===== Eliminar márgenes por defecto en encabezados y párrafos ===== */
  h1, h2, h3, h4, h5, h6,
  p, ul, ol, figure, blockquote {
    margin: 0;
    padding: 0;
  }
  
  /* ===== Reset de listas ===== */
  ul, ol {
    list-style: none;
  }
  
  /* ===== Reset de enlaces ===== */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* ===== Imágenes responsivas ===== */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* ===== Formularios ===== */
  input, textarea, select, button {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    color: inherit;
    outline: none;
  }
  
  button {
    cursor: pointer;
    background-color: transparent;
  }
  
  /* ===== Compatibilidad con Elementor ===== */
  .elementor *,
  .elementor :after,
  .elementor :before {
    box-sizing: border-box;
  }
  
  /* ===== Eliminar el espacio de columnas vacías de Elementor ===== */
  .elementor-column .elementor-widget-empty {
    display: none;
  }
  
  /* ===== Corregir tipografías duplicadas de Elementor ===== */
  body.elementor-page {
    font-family: inherit !important;
    color: inherit !important;
    background: inherit !important;
  }
  
  /* ===== Corregir elementos ocultos en responsive por defecto ===== */
  .elementor-hidden-desktop,
  .elementor-hidden-tablet,
  .elementor-hidden-phone {
    display: none !important;
  }
  
  /* ===== Margen automático de secciones ===== */
  .elementor-section {
    margin: 0 auto;
  }
  
  /* ===== Animaciones suaves para transiciones ===== */
  a,
  button,
  input,
  textarea,
  select {
    transition: all 0.3s ease;
  }

  /* Scrollbar styles */
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  ::-webkit-scrollbar-thumb {
    background-color: var(--rb__color-primary);
    border-radius: 4px;
  }
  ::-webkit-scrollbar-track {
    background-color: var(--rb__color-dark-primary);
  }


  /* GENERALS */

.rb__container {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */

.rb__main-header {
    width: 100%;
    max-width: 100vw;
    background-color: transparent;
    padding: 0 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    min-height: 90px; 
    transition: background-color 0.3s ease, box-shadow 0.3s ease; 
}

.rb__main-header > .rb__container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 100%;
    padding: 10px 0;
    padding-bottom: 15px;
    max-width: 90vw;
}

/* Dinamic header */
body.scrolled .rb__main-header,
.rb__main-header:hover,
body.header-blanco .rb__main-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.scrolled .rb__navigation .menu_primary a,
body.header-blanco .rb__navigation .menu_primary a,
.rb__main-header:hover .menu_primary a {
    color: var(--rb__color-dark-primary) !important;
}

.rb__main-header .rb__logo img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rb__main-header .rb__logo img.white {
    opacity: 1;
}

.rb__main-header:hover .rb__logo img.black,
body.scrolled .rb__logo img.black,
body.header-blanco .rb__logo img.black {
    opacity: 1;
}

/* TOP BAR */
.rb__top-bar a {
    color: white;
    font-family: "Urbanist", Sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.rb__top-bar {
    width: 100%;
    display: flex;
    justify-content:flex-end;
    align-items: center;
    padding: 5px 5vw;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid white
    
}

.rb__top-bar ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rb__top-bar a svg {
    height: 20px;
    width: 20px;
    fill: white;
}

body.scrolled .rb__top-bar,
.rb__main-header:hover .rb__top-bar,
body.header-blanco .rb__top-bar {
    background-color: var(--rb__color-dark-primary);
}

/* END HEADER */

/* START LOGO */
.rb__main-header .rb__logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.rb__main-header .rb__logo a {
    display: grid;
    position: relative;
}

.rb__main-header .rb__logo img {
    max-width: 100%;
    height: 50px;
    width: auto;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}
/* END LOGO */

/* STAR NAVIGATION */  

.rb__navigation ul {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.rb__navigation {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.rb__navigation a {
    font-family: "Urbanist", Sans-serif;
    display: inline-block;
}

.rb__navigation .menu_primary a {
    color: white;
    border-bottom: 2px solid transparent;
}

.rb__navigation li {
    display: inline-flex;
    align-items: center;
}

.rb__navigation .menu_primary a:hover,
.rb__navigation .menu_primary li.current-menu-item > a {
    color: white;
    border-color: white;
}

body.scrolled .rb__navigation .menu_primary li.current-menu-item > a,
.rb__main-header:hover .rb__navigation .menu_primary li.current-menu-item > a {
    color: var(--rb__color-dark-primary);
    border-color: var(--rb__color-dark-primary);
}

.rb__navigation .menu_secondary {
    margin-left: 30px;
}

.rb__navigation .menu_secondary a {
    color: var(--rb__color-dark-primary);
    background-color: var(--rb__color-primary);
    border: 2px solid var(--rb__color-primary);
    /*
    background-color: var(--rb__color-dark-primary);
    border: 2px solid var(--rb__color-dark-primary);
    */
    color: white;
    padding: 0px 20px;
    height: 40px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rb__navigation .menu_secondary li:last-child a{
    background-color: transparent;
    color: var(--rb__color-primary);
}

.rb__navigation .menu_secondary a:hover {
    background-color: var(--rb__color-dark-primary) !important;
    color: var(--rb__color-primary) !important;
    border-color: var(--rb__color-dark-primary) !important;
}

.rb__navigation .menu_secondary a:hover svg path {
    fill: var(--rb__color-primary) !important;
}

.rb__navigation .menu_secondary li {
    cursor: pointer;
}

.rb__navigation .menu_secondary li:hover a svg path {
    fill: white;
}

/* Submenu */

.rb__navigation .menu_primary .submenu-wrapper {
    display: none;
}

.menu-item-has-children .submenu-toggle {
    width: 22px !important;
    height: 22px !important;
    aspect-ratio: 1 / 1 !important;
    margin-left: 5px;
    background-image: url("../images/chevron_backward.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.menu-item-has-children.active .submenu-toggle,
.menu-item-has-children:hover .submenu-toggle {
    transform: rotate(180deg);
}

.menu-item-has-children.active .submenu-toggle svg path {
    fill: var(--rb__color-dark-primary);
}

.rb__navigation .menu_primary .submenu-toggle svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.rb__navigation .menu_primary .submenu-toggle svg path {
    fill: white;
}

body.scrolled .rb__navigation .menu_primary .submenu-toggle,
.rb__main-header:hover .rb__navigation .menu_primary .submenu-toggle,
body.header-blanco .rb__navigation .menu_primary .submenu-toggle {
    background-image: url("../images/chevron_backward_hover.svg");
}

body.scrolled .rb__navigation .menu_primary .submenu-toggle svg,
.rb__main-header:hover .rb__navigation .menu_primary .submenu-toggle svg {
    stroke: var(--rb__color-dark-primary);
}

.rb__navigation .menu_primary .menu-item-has-children.active .submenu-wrapper {
    display: flex;
}

.rb__navigation .menu_primary .submenu-wrapper {
    position: absolute;
    top: 120px;
    right: 60px;
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-direction: row;
    gap: 20px;
}


.rb__navigation .menu_primary .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.rb__navigation .menu_primary .submenu-images {
    display: grid;
    position: relative;
}

.rb__navigation .menu_primary .submenu-images img {
    width: 400px;
    height: auto;
    object-fit: cover;
    grid-row: 1 / 2; /* O simplemente grid-row: 1; */
    grid-column: 1 / 2; /* O simplemente grid-column: 1; */
    display: none;
    aspect-ratio: 400 / 300;
}

.rb__navigation .menu_primary .submenu-images img.active {
    display: block;
}


.rb__navigation .menu_primary .sub-menu a {
    color: var(--rb__color-dark-primary);
    border-color: transparent;
    padding: 10px 20px;
    background-color: #E3F3D6;
    border-radius: 10px;
    width: 100%;
    text-align: left;
    font-weight: 600;
}

.rb__navigation .menu_primary .sub-menu a:hover {
    background-color: var(--rb__color-dark-primary);
    color: white !important;
}

.rb__navigation .menu_primary .menu-item-has-children:before {
    position: absolute;
    content: "";
    bottom: -50px;
    height: 100px;
    width: 100px;
    background-color: transparent;
    z-index: 0;
}

/* WPML Language switcher */
.rb__navigation .wpml-ls a {
    color: white;
}

.rb__navigation .wpml-ls .wpml-ls-sub-menu {
    flex-direction: column;
    gap: 0;
    background-color: white;
}

.rb__navigation .wpml-ls-legacy-dropdown {
    margin-left: 20px;
}

.wpml-ls-legacy-dropdown {
    width: unset !important;
    display: flex !important;
}

.wpml-ls-legacy-dropdown a {
    border: none !important;
    background-color: transparent !important;
}

/* Replace WPML dropdown arrow with custom SVG */
.wpml-ls-legacy-dropdown .wpml-ls-item-toggle::after {
    background-image: url("../images/chevron_backward.svg"); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 22px;
    height: 22px;
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
    border: none !important;
    background-color: transparent !important;
}

/* Hide default WPML arrow */

.wpml-ls-legacy-dropdown .wpml-ls-item-toggle .wpml-ls-native::after {
    display: none;
}

/* Ensure proper dropdown alignment */
.wpml-ls-legacy-dropdown .wpml-ls-item-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
    right: 0;
    top: 2px;
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
    padding-right: 25px;
}

.wpml-ls-legacy-dropdown .wpml-ls-item li:hover {
    background-color: var(--rb__color-dark-primary);
}

.wpml-ls-legacy-dropdown .wpml-ls-item li:hover a {
    color: white !important;
}

/* Adjust for scrolled state */
body.scrolled .wpml-ls-legacy-dropdown .wpml-ls-item-toggle::after,
body.header-blanco .wpml-ls-legacy-dropdown .wpml-ls-item-toggle::after,
.rb__main-header:hover .wpml-ls-legacy-dropdown .wpml-ls-item-toggle::after {
   background-image: url("../images/chevron_backward_hover.svg");
}


body.scrolled .wpml-ls a, body.header-blanco .wpml-ls a, .rb__main-header:hover .wpml-ls a {
    color: var(--rb__color-dark-primary);
}




@media(min-width: 1199px){
    .rb__navigation .menu_primary .menu-item-has-children:hover .submenu-wrapper,
.rb__navigation .menu_primary .menu-item-has-children.hover .submenu-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
}


@media(max-width: 1199px){
    
    .rb__navigation .menu_primary .submenu-toggle svg {
        stroke: var(--rb__color-dark-primary);
    }

    .rb__navigation .menu_primary .submenu-toggle svg path {
        fill: var(--rb__color-dark-primary);
    }

    .menu-item-has-children {
        flex-wrap: wrap;
    }

    .menu-item-has-children a {
        padding-left: 20px;
        display: block !important;
        width: calc(100% - 20px) !important;
    }

    .menu-item-has-children button {
        width: 20px !important;
        margin-left: 0 !important;
        display: inline-flex !important;
    }

    .rb__navigation .menu_primary .menu-item-has-children.active .submenu-wrapper {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        display: flex;
        gap: 0;
        width: 100%;
        margin: 10px 0;
        padding: 15px;
    }

    .rb__navigation .menu_primary .menu-item-has-children.active .submenu-wrapper a {
        width: 100% !important;
    }

    .rb__navigation .menu_primary .menu-item-has-children.active .submenu-wrapper ul {
        width: 100% !important;
        gap: 10px;
    }

    .rb__navigation .menu_primary .submenu-images {
        display: none;
    }

    .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
        position: relative;
        inset: auto;
    }

    .rb__navigation .wpml-ls-legacy-dropdown {
        margin: auto;
    }

    .rb__navigation .wpml-ls .wpml-ls-sub-menu {
        flex-direction: row;
        visibility: visible;
    }

    .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
        display: none;
    }

    .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
        padding: 5px 10px;
    }
}


@media(max-width: 768px){
    .rb__main-header .rb__logo img {
        max-width: 150px;
        width: auto;
        height: auto;
    }

    .rb__navigation {
        display: none;
    }

        
}


.rb__main-header .menu-toggle {
    background-color: white;
    border: 2px solid var(--rb__color-primary);
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    display: none;
    border-radius: 5px;
}

/* Estilos básicos del botón */
.hamburger {
    width: 30px;  
    height: 23px;  
    position: relative;
    cursor: pointer;
    background: none;  
    border: none;   
    padding: 0;  
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 4px; 
    background-color: var(--rb__color-dark-primary);
    border-radius: 3px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform-origin: center;
    z-index: 9999;
}

.rb__main-header.active .line-2 {
    opacity: 0;
    transform: scaleX(0);
}

.rb__main-header.active .line-1 {
    transform: translateY(10px) rotate(45deg);
}

.rb__main-header.active .line-3 {
    transform: translateY(-8px) rotate(-45deg);
}


@media( max-width: 1199px){
    .rb__main-header .menu-toggle {
        display: flex;
    }

    .rb__main-header.active .rb__navigation  {
        display: flex
    }

    .rb__main-header .rb__navigation {
        flex-direction: column;
        gap: 20px;
        position: absolute;
        top: 110px;
        left: 10px;
        right: 10px;
        background-color: white;
        padding: 10px;
        border-radius: 10px;
        display: none;
    }

    .rb__main-header .menu_primary,
    .rb__main-header .menu_secondary {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
        margin: 0;
    }

    .rb__main-header .menu_secondary li {
        text-align: center;
    }

    .rb__main-header li a {
        width: 100%;
    }

    .rb__main-header .menu_primary li {
        text-align: center;
        flex-wrap: wrap;
        position: relative;
    }

    .rb__main-header .menu_primary a {
        color: var(--rb__color-dark-primary);
        font-size: 16px;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    .rb__navigation .menu_primary .menu-item-has-children.active .submenu-wrapper {
        max-height: 60vh;
        overflow-y: auto;
    }

    .menu-item-has-children .submenu-toggle {
        position: absolute;
        right: 10px;
        top: 2px;
    }
}

/* END NAVIGATION */

/* START MAIN */

#rb__main-content {
    width: 100%;
    min-height: 70vh;
}

@media( max-width: 1199px){
    body.menu-open:after {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 99;
    }
}

/* END MAIN */

/* START FOOTER */

.rb__footer {
    position: relative;
    margin-top: -40px;
    border-radius: 30px 30px 0 0;
    background: linear-gradient(to bottom, #092111, #090c21), #092111;
    padding: 80px 20px;
    padding-bottom: 40px;
    background-image: url(../images/bandex-background.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
}

.rb__footer * {
    font-family: "Inter", Sans-serif;
    color: white;
    font-weight: 100;
    font-size: 14px;
}

.rb__footer .rb__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.rb__footer .rrss-container ul {
    display: flex;
    gap: 20px;
    flex-direction: row;
}

.rb__footer .rrss-container a {
    padding: 5px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.436);
    border-radius: 50%;
    height: 40px;
}

.rb__footer .rrss-container a:hover {
    background-color: white;
}

.rb__footer .rrss-container a:hover svg path{
    fill: var(--rb__color-dark-primary);
}


.rb__footer .contact-links svg path {
    fill: white;
}

.rb__footer .contact-links a:hover,
.rb__footer .contact-links a:hover svg path {
    color: var(--rb__color-primary);
    fill: var(--rb__color-primary)
}

.rb__footer .rrss-container svg {
    height: 20px;
    width: auto;
}

.rb__footer .rrss-container li {
    font-weight: 600;
}

.rb__footer .rb__logo img{
    max-width: 300px;
}

.rb__footer .contact-links ul{
    display: flex;
    gap: 30px;
    flex-direction: row;
}

.rb__footer .contact-links ul li{
    display: flex;
    gap: 10px;
    align-items: center;
}

.rb__footer .contact-links ul li a{
    font-weight: 400;
}

.rb__footer .menu_legal {
    display: flex;
    gap: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.rb__footer .menu_legal li {
    padding: 0 10px;
}

.rb__footer .menu_legal li:not(:last-child){
    border-right: 1px solid white;
}


@media( max-width: 1025px){
    .rb__footer .contact-links ul {
        flex-direction: column;
        gap: 20px;
    }
}


@media(max-width: 768px){
    .rb__footer .menu_legal {
        flex-direction: column;
        gap: 20px;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
    }

    .rb__footer .menu_legal li {
        padding: 0;
        border: 0;
    }

    .rb__footer .menu_legal li:not(:last-child){
        border-right: none;
    }
}

/* END FOOTER */

/* ESTILOS DE WIDGETS ELEMENTOR */

/* Accordeon lineas blancas */

.accordeon-lineas-blancas .icon {
    width: 30px;
    height: 30px;
    background: transparent url("../images/linea-blanca.svg") no-repeat 50%;
    background-size: contain;
    aspect-ratio: 1 / 1;
    transform: rotate(0deg)
}

.accordeon-lineas-blancas .icon:after {
        content:'';
        position: absolute;
        inset: 0;
        background: transparent url("../images/linea-blanca.svg") no-repeat 50%;
        transform: rotate(90deg);
        width: 30px;
        background-size: contain;
        transition: all 0.3s ease;
        aspect-ratio: 1 / 1;
        g{
            display: none;
        }
}

.accordeon-lineas-blancas.open .icon:after {
     transform: rotate(0deg);
}

.accordeon-lineas-blancas p {
    max-height: 0;
    opacity: 0;
    margin: 0;
    margin-top: 0;
    margin-bottom: p;
    transition: opacity 500ms ease-in-out 0ms, max-height 500ms ease-in-out 500ms, margin-top 500ms ease-in-out 0ms, margin-bottom 500ms ease-in-out 0ms;
}

.accordeon-lineas-blancas.open p {
    display: block;
    max-height: 100%;
    opacity: 1;
    margin-top: 20px;
    margin-bottom: 20px;
}


@media(max-width:768px){
    .accordeon-lineas-blancas .icon {
        width: 20px;
        height: 20px;
    }

    .accordeon-lineas-blancas .icon:after {
        width: 20px;
    }
}

/* Accordeon lineas negras */

.accordeon-lineas-negras .icon {
    width: 30px;
    height: 30px;
    background: transparent url("../images/linea.svg") no-repeat 50%;
    background-size: contain;
    aspect-ratio: 1 / 1;
    transform: rotate(-90deg)
}

.accordeon-lineas-negras .icon:after {
        content:'';
        position: absolute;
        inset: 0;
        background: transparent url("../images/linea.svg") no-repeat 50%;
        transform: rotate(-90deg);
        width: 30px;
        background-size: contain;
        transition: all 0.3s ease;
        aspect-ratio: 1 / 1;
        g{
            display: none;
        }
}

.accordeon-lineas-negras.open .icon:after {
     transform: rotate(-0deg);
}

.accordeon-lineas-negras p {
    max-height: 0;
    opacity: 0;
    margin: 0;
    margin-top: 0;
    margin-bottom: p;
    transition: opacity 500ms ease-in-out 0ms, max-height 500ms ease-in-out 500ms, margin-top 500ms ease-in-out 0ms, margin-bottom 500ms ease-in-out 0ms;
}

.accordeon-lineas-negras.open p {
    display: block;
    max-height: 100%;
    opacity: 1;
    margin-top: 20px;
    margin-bottom: 20px;
}


@media(max-width:768px){
    .accordeon-lineas-negras .icon {
        width: 20px;
        height: 20px;
    }

    .accordeon-lineas-negras .icon:after {
        width: 20px;
    }
}


/* LEGAL PAGES */
.legal-page {
    padding: 100px 0;
    line-height: 1.8;
    color: #333;
}

.legal-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    max-width: 1200px;
    margin: 0 auto;
}

.legal-content h1 {
    color: var(--rb__color-dark-primary);
    margin-bottom: 30px;
    font-size: 2.2em;
    font-weight: 600;
    font-family: "Urbanist", Sans-serif;
}

.legal-content h2 {
    color: var(--rb__color-primary);
    margin: 30px 0 15px;
    font-size: 1.8em;
    font-weight: 500;
    font-family: "Urbanist", Sans-serif;
}

.legal-content h3 {
    color: var(--rb__color-dark-primary);
    margin: 25px 0 10px;
    font-size: 1.4em;
    font-weight: 500;
    font-family: "Urbanist", Sans-serif;
}

.legal-content p {
    margin-bottom: 1.2em;
    line-height: 1.8;
    font-family: "Inter", Sans-serif;
}

.legal-content ul {
    list-style-type: disc;
}

.legal-content ul, 
.legal-content ol {
    margin: 15px 0 15px 20px;
    font-family: "Inter", Sans-serif;
}

.legal-content li {
    margin-bottom: 8px;
    font-family: "Inter", Sans-serif;
}

.legal-content a {
    text-decoration: underline;
}

.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #666;
    font-family: "Inter", Sans-serif;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 25px 15px;
    }
    
    .legal-content h1 {
        font-size: 1.8em;
    }
    
    .legal-content h2 {
        font-size: 1.5em;
    }
}

/* SINGLE POSTS STYLES */

body.single-post .elementor-widget-theme-post-content h2,
body.single-post .elementor-widget-theme-post-content h3 {
    color: var(--rb__color-dark-primary) !important;
}

body.single-post .elementor-widget-theme-post-content h2 {
    font-size: 36px;
}

body.single-post .elementor-widget-theme-post-content h3 {
    font-size: 30px;
}

/* Social Share Buttons */

.rb-social-share {
    padding: 60px 20px;
}
.rb-social-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #5eb42420;
    height: 40px;
    width: 40px;
    border-radius: 5px;
}

.rb-social-share a:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.rb-social-share .social-icons {
    display: flex;
    gap: 20px;
}

