/* ========================================
   VARIABLES CSS - GEOTIN COLOR PALETTE
   ======================================== */
:root {
    /* Colores principales */
    --color-primary: #97c220;
    --color-secondary: #67a91f;
    --color-complementary: #003b2c;
    --color-dark: #1a1a1a;
    --color-light: #ffffff;
    --color-gray-100: #f8f9fa;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-700: #495057;
    --color-gray-800: #343a40;
    
    /* Tipografía */
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Tamaños */
    --max-width: 1280px;
    --header-height: 80px;
}

/* ========================================
   RESET Y ESTILOS BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.6;
    background-color: var(--color-light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   UTILIDADES GLOBALES
   ======================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-padding {
    padding: var(--spacing-lg) 0;
}




/* ==========================================
   TOP BAR
   ========================================== */
.menu_header-top_bar {
    background: var(--color-complementary);
    color: var(--color-light);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.menu_header-top_bar_container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu_header-top_bar_left,
.menu_header-top_bar_right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.menu_header-top_bar_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}

.menu_header-top_bar_item:hover {
    color: var(--color-primary);
}

.menu_header-top_bar_item i {
    font-size: 1rem;
}

/* ==========================================
   HEADER PRINCIPAL
   ========================================== */
.menu_header-main {
    background: var(--color-light);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu_header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================
   LOGO
   ========================================== */
.menu_header-logo {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1;
}

.menu_header-logo img{
    height: 35px;
}

/* ==========================================
   NAVEGACIÓN
   ========================================== */
.menu_header-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.menu_header-nav_list {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.menu_header-nav_item {
    position: relative;
}

.menu_header-nav_link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--color-complementary);
    border-radius: 8px;
    transition: var(--transition-normal);
    cursor: pointer;
}

.menu_header-nav_link:hover,
.menu_header-nav_link.menu_header-active {
    color: var(--color-primary);
    background: rgba(151, 194, 32, 0.1);
}

.menu_header-nav_link i {
    font-size: 0.7rem;
    transition: var(--transition-normal);
}

.menu_header-has_dropdown:hover .menu_header-nav_link i {
    transform: rotate(180deg);
}

/* ==========================================
   DROPDOWN DE SERVICIOS
   ========================================== */
.menu_header-dropdown {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    max-width: 90vw;
    background: var(--color-light);
    border-radius: 0 0 16px 16px;
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-normal);
    z-index: 999;
}

.menu_header-dropdown.menu_header-active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.menu_header-dropdown_header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-gray-200);
}

.menu_header-dropdown_title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-complementary);
    margin-bottom: 0.5rem;
}

.menu_header-dropdown_subtitle {
    color: var(--color-gray-700);
    font-size: 0.95rem;
}

.menu_header-dropdown_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.menu_header-dropdown_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 1rem;
    background: var(--color-gray-100);
    border-radius: 12px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.menu_header-dropdown_item:hover {
    background: rgba(151, 194, 32, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.menu_header-dropdown_icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.menu_header-dropdown_icon i {
    font-size: 1.5rem;
    color: var(--color-light);
}

.menu_header-dropdown_item h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-complementary);
    margin-bottom: 0.25rem;
}

.menu_header-dropdown_item p {
    font-size: 0.8rem;
    color: var(--color-gray-700);
}

.menu_header-dropdown_footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid var(--color-gray-200);
}

.menu_header-btn_all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-light);
    font-family: var(--font-display);
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.menu_header-btn_all:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(151, 194, 32, 0.4);
}

/* ==========================================
   BOTÓN CTA
   ========================================== */
.menu_header-btn_cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-light);
    font-family: var(--font-display);
    font-weight: 700;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(151, 194, 32, 0.3);
}

.menu_header-btn_cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(151, 194, 32, 0.5);
}

.menu_header-btn_cta i {
    font-size: 1.25rem;
}

/* ==========================================
   HAMBURGUESA
   ========================================== */
.menu_header-hamburger {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.menu_header-hamburger_line {
    width: 100%;
    height: 3px;
    background: var(--color-complementary);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.menu_header-hamburger.menu_header-active .menu_header-hamburger_line:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.menu_header-hamburger.menu_header-active .menu_header-hamburger_line:nth-child(2) {
    opacity: 0;
}

.menu_header-hamburger.menu_header-active .menu_header-hamburger_line:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}




/* BOTÓN CERRAR DROPDOWN MÓVIL */
.menu_header-dropdown_close {
    display: none;
}












/* ========================================
   FOOTER
   ======================================== */
.main-footer {
    background: linear-gradient(180deg, var(--color-complementary) 0%, #002820 100%);
    color: var(--color-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(151, 194, 32, 0.15);
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    margin-top: 1rem;
}

.footer-badge i {
    font-size: 2rem;
    color: var(--color-primary);
}

.footer-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-primary);
}

.footer-badge span {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    transition: var(--transition-fast);
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-links i {
    font-size: 0.875rem;
    color: var(--color-primary);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact i {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-top: 0.25rem;
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(151, 194, 32, 0.2);
    border-radius: 50%;
    color: var(--color-light);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-primary);
}

/* ========================================
   BOTÓN FLOTANTE WHATSAPP
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}



/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 992px) {
  
  
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
   
   
   
    .menu_header-top_bar_container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .menu_header-top_bar_left,
    .menu_header-top_bar_right {
        justify-content: center;
    }
    
    .menu_header-hamburger {
        display: flex;
    }
    
    .menu_header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-light);
        flex-direction: column;
        padding: 5rem 0 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        transition: right 0.4s ease;
        overflow-y: auto;
        gap: 0;
        z-index: 1002;
    }
    
    .menu_header-nav.menu_header-active {
        right: 0;
    }
    
    .menu_header-nav_list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .menu_header-nav_item {
        width: 100%;
        border-bottom: 1px solid var(--color-gray-200);
    }
    
    .menu_header-nav_link {
        width: 100%;
        padding: 1.25rem 2rem;
        border-radius: 0;
        justify-content: space-between;
        font-size: 1.05rem;
    }
    
    .menu_header-btn_cta {
        width: calc(100% - 4rem);
        margin: 1rem 2rem;
        justify-content: center;
    }
    
    /* DROPDOWN EN MÓVIL */
    .menu_header-dropdown {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        border-radius: 0;
        padding: 5rem 1.5rem 2rem;
        overflow-y: auto;
        z-index: 1003;
        transition: right 0.4s ease, opacity 0.3s ease;
    }
    
    .menu_header-dropdown.menu_header-active {
        right: 0;
    }
    
    .menu_header-dropdown_header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .menu_header-dropdown_title {
        font-size: 1.3rem;
    }
    
    .menu_header-dropdown_subtitle {
        font-size: 0.9rem;
    }
    
    .menu_header-dropdown_grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .menu_header-dropdown_item {
        padding: 1rem;
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }
    
    .menu_header-dropdown_item:hover {
        transform: translateX(5px);
    }
    
    .menu_header-dropdown_icon {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }
    
    .menu_header-dropdown_icon i {
        font-size: 1.3rem;
    }
    
    .menu_header-dropdown_item h4 {
        font-size: 0.95rem;
    }
    
    .menu_header-dropdown_item p {
        font-size: 0.8rem;
    }
    
    .menu_header-dropdown_footer {
        padding-top: 1rem;
    }
    
    .menu_header-btn_all {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }




.menu_header-dropdown_close {
        display: flex;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
        background: var(--color-gray-200);
        border: none;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: var(--transition-normal);
    }
    
    .menu_header-dropdown_close:hover {
        background: var(--color-primary);
        transform: rotate(90deg);
    }
    
    .menu_header-dropdown_close i {
        font-size: 1.2rem;
        color: var(--color-complementary);
    }
    
    .menu_header-dropdown_close:hover i {
        color: var(--color-light);
    }
   
   
}

/* ========================================
   RESPONSIVE - MÓVIL
   ======================================== */
@media (max-width: 576px) {
   



 .menu_header-top_bar {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }
    
    .menu_header-top_bar_container {
        padding: 0 1rem;
    }
    
    .menu_header-top_bar_left,
    .menu_header-top_bar_right {
        gap: 1rem;
    }
    
    .menu_header-container {
        padding: 1rem 1.5rem;
    }
    
    .menu_header-nav {
        max-width: 100%;
    }
    
    .menu_header-nav_link {
        padding: 1.15rem 1.5rem;
    }
    
    .menu_header-btn_cta {
        width: calc(100% - 3rem);
        margin: 1rem 1.5rem;
    }
    
    .menu_header-dropdown {
        max-width: 100%;
        padding: 5rem 1rem 2rem;
    }

    
   
}

/* ==========================================
   MEGA MENU POPUP (Click en Servicios)
   ========================================== */
body.services-menu-open{
  overflow: hidden;
}


.nav-link-clickable {
    cursor: pointer;
    user-select: none;
}

.mega-menu-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: auto;
}

.mega-menu-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mega-menu-popup-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.mega-menu-popup-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--color-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.mega-menu-popup-close:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: rotate(90deg);
}

.mega-menu-popup-content {
    width: 100%;
    animation: fadeInUpPopup 0.5s ease;
}

@keyframes fadeInUpPopup {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-popup-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.mega-popup-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 3rem;
}

.services-popup-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-popup-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-popup-item:hover {
    background: rgba(151, 194, 32, 0.2);
    border-color: var(--color-primary);
    transform: translateY(-8px);
}

.service-popup-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-popup-icon i {
    font-size: 1.5rem;
    color: var(--color-light);
}

.service-popup-item h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 0.5rem;
}

.service-popup-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.mega-popup-footer {
    text-align: center;
}

.btn-ver-todos-popup {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-light);
    font-family: var(--font-display);
    font-weight: 700;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.btn-ver-todos-popup:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(151, 194, 32, 0.6);
}

/* Responsive Popup */
@media (max-width: 992px) {
    .services-popup-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .mega-popup-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {



/* 1. Contenedor del Popup: Ajustamos el padding para que no coma pantalla */
    .mega-menu-popup-container {
        padding: 4rem 1rem 2rem !important;
        align-items: flex-start !important; /* Empezar desde arriba */
        min-height: auto;
    }

    .mega-popup-title {
        font-size: 1.6rem !important;
        margin-bottom: 0.5rem !important;
    }

    .mega-popup-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 2rem !important;
    }

    /* 2. Grid de Servicios: Una sola columna (Formato Lista) */
    .services-popup-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        width: 100%;
    }

    /* 3. La Tarjeta: Icono izquierda | Textos derecha */
.service-popup-item {
        display: flex !important;
        align-items: center !important;
        padding: 12px 15px !important;
        gap: 15px !important;
        background: rgba(255, 255, 255, 0.07) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px !important;
        width: 100% !important;
    }

    /* El icono se queda fijo a la izquierda */
    .service-popup-icon {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
    }

    /* CREAMOS UN CONTENEDOR INTERNO PARA LOS TEXTOS */
    /* Esto es lo que hará que la descripción se alinee a la derecha */
    .service-popup-item .texts-container {
        display: flex !important;
        justify-content: space-between !important; /* Separa título de descripción */
        align-items: center !important;
        width: 100% !important;
        gap: 10px !important;
    }

    /* Estilo para el título (Izquierda) */
    .service-popup-item h3 {
        flex: 1 !important; /* Ocupa el espacio disponible */
        font-size: 0.9rem !important;
        margin: 0 !important;
        text-align: left !important;
        line-height: 1.2 !important;
        color: #ffffff !important;
    }

    /* Estilo para la descripción (Derecha alineada) */
    .service-popup-item p {
        flex: 0 0 110px !important; /* Ancho fijo para que la línea vertical sea perfecta */
        font-size: 0.75rem !important;
        text-align: right !important; /* Alineado a la derecha */
        margin: 0 !important;
        color: rgba(255, 255, 255, 0.5) !important;
        line-height: 1.1 !important;
    }



    /* 6. Botón de cierre más pequeño en móvil */
    .mega-menu-popup-close {
        top: 1rem !important;
        right: 1rem !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }




}
