/* ========================================
   ESTILOS PRINCIPALES - PÁGINA RAÍZ VIIVE
   ======================================== */

/* RESET Y CONFIGURACIÓN BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* ========================================
   PÁGINA RAÍZ
   ======================================== */

.pagina-raiz {
    min-height: 100vh;
}

/* HEADER PRINCIPAL */
.encabezado-principal {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.contenedor-header {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
  
}

.logo-principal h1 {
    color: #667eea;
    font-size: 2rem;
    font-weight: 700;
}

.menu-principal {
    display: flex;
    gap: 30px;
}

/* MENÚ HAMBURGUESA - OCULTO POR DEFECTO EN DESKTOP */
.menu-hamburguesa {
    display: none;
}
.Viive{
    display: flex;
    width: 138px;
    height: 56px;
}
/* TABLET: 421px a 917px */
@media (min-width: 421px) and (max-width: 917px) {
    .contenedor-header {
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    /* MENÚ HAMBURGUESA PARA TABLET - VISIBLE */
    .menu-hamburguesa {
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 6px;
        z-index: 1001;
        position: relative;
        border-radius: 6px;
        transition: background-color 0.3s ease;
    }
    
    .menu-hamburguesa:hover {
        background-color: rgba(102, 126, 234, 0.1);
    }
    
    .linea-hamburguesa {
        width: 28px;
        height: 3px;
        background: #667eea;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
        display: block;
    }
    
    .menu-hamburguesa.menu-activo .linea-hamburguesa:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .menu-hamburguesa.menu-activo .linea-hamburguesa:nth-child(2) {
        opacity: 0;
    }
    
    .menu-hamburguesa.menu-activo .linea-hamburguesa:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* MENÚ PRINCIPAL EN TABLET - OCULTO */
    .menu-principal {
        position: fixed !important;
        top: 80px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 80px) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 50px 30px !important;
        gap: 35px !important;
        transition: left 0.3s ease !important;
        z-index: 1000 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        display: none !important;
    }
    
    .menu-principal.menu-abierto {
        display: flex !important;
        left: 0 !important;
    }
    
    .menu-principal a {
        font-size: 1.3rem !important;
        padding: 18px 35px !important;
        width: 100% !important;
        text-align: center !important;
        border-radius: 15px !important;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
        transition: all 0.3s ease !important;
    }
    
    .menu-principal a:hover {
        background: linear-gradient(135deg, #667eea, #764ba2) !important;
        color: white !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    }
    
    .menu-principal .enlace-activo {
        background: linear-gradient(135deg, #667eea, #764ba2) !important;
        color: white !important;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    }
    
    .menu-principal .empresas-link {
        background: linear-gradient(135deg, #25d366, #128c7e) !important;
        color: white !important;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    }
    
    .menu-principal .empresas-link:hover {
        background: linear-gradient(135deg, #128c7e, #0d6b5a) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
    }
}

/* DESKTOP: 918px+ */
@media (min-width: 918px) {
    .menu-hamburguesa {
        display: none !important;
    }
    
    .menu-principal {
        display: flex !important;
        gap: 30px !important;
    }
    .opcion-3{
        padding-bottom: 26px;
    }
}

.enlace-nav {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
}

.enlace-nav:hover {
    background-color: #f0f0f0;
    color: #667eea;
}

.enlace-activo {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #f0f0f0;
}

/* MENÚ DESPLEGABLE DE HERRAMIENTAS */
.dropdown-herramientas {
    position: relative;
    display: flex;
    align-items: center;
}

.btn-herramientas {
    background: transparent;
    border: none;
    font: inherit;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-herramientas i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.dropdown-herramientas.abierto .btn-herramientas i {
    transform: rotate(180deg);
}

.dropdown-herramientas.dropdown-activo .btn-herramientas {
    background: rgba(102, 126, 234, 0.12);
    color: #667eea;
}

.menu-desplegable-herramientas {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 30, 67, 0.12);
    padding: 12px;
    display: none;
    min-width: 230px;
    flex-direction: column;
    gap: 8px;
    z-index: 1200;
}

.dropdown-herramientas.abierto .menu-desplegable-herramientas {
    display: flex;
}

.menu-desplegable-herramientas .item-herramienta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    color: #1a202c;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-weight: 500;
}

.menu-desplegable-herramientas .item-herramienta i {
    color: inherit;
}

.menu-desplegable-herramientas .item-herramienta:hover {
    background: rgba(102, 126, 234, 0.12);
    color: #667eea;
}

.menu-desplegable-herramientas .item-herramienta.activo {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
}

@media (max-width: 917px) {
    .dropdown-herramientas {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .btn-herramientas {
        width: 100%;
        justify-content: space-between;
    }

    .menu-desplegable-herramientas {
        position: static;
        box-shadow: none;
        padding: 10px 0;
        background: transparent;
        gap: 10px;
    }

    .dropdown-herramientas.abierto .menu-desplegable-herramientas {
        display: flex;
    }

    .menu-desplegable-herramientas .item-herramienta {
        background: rgba(248, 250, 252, 0.95);
        color: #1a202c;
    }

    .menu-desplegable-herramientas .item-herramienta:hover {
        background: rgba(102, 126, 234, 0.15);
        color: #667eea;
    }
}

/* HERO PRINCIPAL CON IMAGEN DE FONDO ELEGANTE */
.hero-principal {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.imagen-fondo-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imagenes/esposa-mostrando-su-marido-el-televisor-nuevo-que-van-comprar-para-su-nueva-casa.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.overlay-gradiente {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    z-index: 2;
}

/* OVERLAY CON CONTENIDO */
.overlay-hero {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.contenedor-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.contenido-hero {
    max-width: 1000px;
    margin: 0 auto;
}

.titulo-hero {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.texto-destacado {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitulo-hero {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.6;
}

/* SECCIÓN DE ELECCIÓN INTERACTIVA */
.seccion-eleccion {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.titulo-eleccion {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffd700;
}

.opciones-eleccion {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.opcion-whatsapp,
.opcion-web {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 300px;
    height: 411px;
}

.opcion-whatsapp:hover,
.opcion-web:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.icono-whatsapp,
.icono-web {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

.icono-whatsapp {
    background: #25d366;
    color: white;
}

.icono-web {
    background: #667eea;
    color: white;
}

.opcion-whatsapp h3,
.opcion-web h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
    width: 241px;
}

.opcion-whatsapp p,
.opcion-web p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.boton-whatsapp-hero {
    background: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    justify-content: center;
}

.boton-whatsapp-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.boton-web-hero {
    background: white;
    color: #667eea;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    justify-content: center;
    margin-top: 54px;
    height: 85px;
}

.boton-web-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.separador-opciones {
    display: flex;
    align-items: center;
    justify-content: center;
}

.separador-opciones span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* BOTONES DE NAVEGACIÓN ADICIONALES */
.botones-navegacion-adicionales {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.boton-navegacion-secundario {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.boton-navegacion-secundario:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ANIMACIONES Y EFECTOS DINÁMICOS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* APLICAR ANIMACIONES A ELEMENTOS */
.titulo-hero {
    animation: fadeInUp 1.2s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitulo-hero {
    animation: fadeInUp 1.2s ease-out 0.4s both;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.seccion-eleccion {
    animation: fadeInUp 1.2s ease-out 0.8s both;
}

.boton-navegacion-principal {
    animation: pulse 2.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.boton-navegacion-principal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.boton-navegacion-principal:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.tarjeta-opcion {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.tarjeta-opcion::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.tarjeta-opcion:hover::before {
    left: 100%;
}

.tarjeta-opcion:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.icono-opcion {
    animation: float 3s ease-in-out infinite;
}

/* SECCIÓN DE INFORMACIÓN RÁPIDA */
.seccion-info-rapida {
    padding: 100px 0;
    background: white;
}

.contenedor-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.titulo-seccion {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.grid-opciones {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
}

.tarjeta-opcion {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    flex: 1;
    max-width: 400px;
}

.tarjeta-opcion:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.icono-opcion {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.tarjeta-opcion h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.tarjeta-opcion p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.boton-opcion {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.boton-opcion:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* SECCIÓN DESTACADA PARA EMPRESAS */
.seccion-empresas-destacada {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.seccion-empresas-destacada::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.contenedor-empresas {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.contenido-empresas {
    text-align: center;
    color: white;
}

.titulo-empresas {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.titulo-empresas i {
    font-size: 2.5rem;
    color: #ffd700;
}

.subtitulo-empresas {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.botones-empresas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.boton-empresas-principal {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 18px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.boton-empresas-principal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.boton-empresas-principal:hover::before {
    left: 100%;
}

.boton-empresas-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.boton-empresas-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 18px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.boton-empresas-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.boton-empresas-whatsapp:hover::before {
    left: 100%;
}

.boton-empresas-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.tarjeta-empresas-destacada {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.badge-empresas {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: badge-bounce 2s ease-in-out infinite;
}

@keyframes badge-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.servicios-empresas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.servicio-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.servicio-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.servicio-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    display: block;
}

.servicio-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.servicio-item p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* RESPONSIVE PARA SECCIÓN EMPRESAS */
@media screen and (max-width: 420px) {
    .titulo-empresas {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .subtitulo-empresas {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .botones-empresas {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .boton-empresas-principal,
    .boton-empresas-whatsapp {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .servicios-empresas {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tarjeta-empresas-destacada {
        padding: 25px 20px;
        margin: 0 10px;
    }
}

@media screen and (min-width: 421px) and (max-width: 917px) {
    .titulo-empresas {
        font-size: 2.5rem;
    }
    
    .botones-empresas {
        gap: 15px;
    }
    
    .servicios-empresas {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (min-width: 918px) {
    .servicios-empresas {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* SECCIÓN DE TESTIMONIOS REALES */
.seccion-testimonios {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contenedor-testimonios {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.titulo-testimonios {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.subtitulo-testimonios {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.grid-testimonios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.testimonio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.testimonio-card:hover::before {
    opacity: 1;
}

.testimonio-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.imagen-testimonio {
    height: 300px;
    background-image: url('imagenes/retrato-de-familia-feliz-viendo-una-pelicula.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonio-card:hover .imagen-testimonio {
    transform: scale(1.05);
}

.imagen-testimonio-2 {
    background-image: url('imagenes/gente-grabando-su-visita-la-casa.jpg');
}

.overlay-testimonio {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
}

.contenido-testimonio {
    padding: 30px;
}

.contenido-testimonio h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contenido-testimonio p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.rating-testimonio {
    display: flex;
    gap: 5px;
}

.rating-testimonio i {
    color: #ffd700;
    font-size: 1.2rem;
}

/* RESPONSIVE DESIGN PARA IMÁGENES */
@media screen and (max-width: 420px) {
    /* OPTIMIZACIÓN HERO PARA MÓVIL */
    
    .Viive{
        width: 100px;
        height: 46px;
    }
    .imagen-fondo-hero {
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
        min-height: 100vh;
    }
    
    .overlay-gradiente {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    }
    
    .titulo-hero {
        font-size: 2.5rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    }
    
    .subtitulo-hero {
        font-size: 1.1rem;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
        padding: 0 15px;
    }
    
    .seccion-eleccion {
        padding: 0 20px;
    }
    
    .titulo-eleccion {
        font-size: 1.6rem;
        margin-bottom: 25px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }
    
    .opciones-eleccion {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
    }
    
    .grid-opciones {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        margin-top: 30px !important;
        width: 100% !important;
    }
    
    .tarjeta-opcion {
        margin: 0 !important;
        padding: 25px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .titulo-opcion {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .descripcion-opcion {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .boton-navegacion-principal {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100% !important;
        text-align: center !important;
    }
    
    /* ESTILOS ESPECÍFICOS PARA OPCIONES EN MÓVIL */
    .opcion-whatsapp,
    .opcion-web {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .opcion-whatsapp h3, .opcion-web h3{
        width: 215px;
    }
    .opcion-whatsapp .boton-navegacion-principal {
        background: linear-gradient(135deg, #25d366, #128c7e) !important;
    }
    
    .opcion-web .boton-navegacion-principal {
        background: linear-gradient(135deg, #667eea, #764ba2) !important;
    }
    
    /* TESTIMONIOS MÓVIL */
    .grid-testimonios {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonio-card {
        margin: 0 10px;
    }
    
    .imagen-testimonio {
        height: 250px;
    }
    
    .contenido-testimonio {
        padding: 20px;
    }
    
    .titulo-testimonios {
        font-size: 2rem;
    }
    
    /* EFECTOS ESPECIALES MÓVIL */
    .hero-principal {
        position: relative;
        overflow: hidden;
    }
    
    .hero-principal::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
        z-index: 3;
        pointer-events: none;
    }
    
    /* MEJORAR CONTRASTE DEL TEXTO EN MÓVIL */
    .contenido-hero {
        position: relative;
        z-index: 4;
        text-align: center;
        padding: 0 20px;
    }
    
    .contenido-hero h1,
    .contenido-hero p {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    }
}

@media screen and (min-width: 421px) and (max-width: 917px) {
    /* OPTIMIZACIÓN TABLET */
    .imagen-fondo-hero {
        background-position: center center;
        background-size: cover;
    }
    
    .overlay-gradiente {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.18) 0%, rgba(118, 75, 162, 0.18) 100%);
    }
    
    .titulo-hero {
        font-size: 3rem;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    }
    
    .subtitulo-hero {
        font-size: 1.2rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }
    
    .grid-opciones {
        flex-direction: row !important;
        gap: 25px !important;
    }
    
    .tarjeta-opcion {
        flex: 1 !important;
        max-width: none !important;
    }
    
    .grid-testimonios {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .imagen-testimonio {
        height: 280px;
    }
}

@media screen and (min-width: 918px) {
    .grid-testimonios {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .imagen-testimonio {
        height: 300px;
    }
}

/* SCROLL SUAVE Y MEJORAS GENERALES */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* MEJORAR ESPACIADOS Y TIPOGRAFÍA */
.titulo-hero {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.subtitulo-hero {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.titulo-eleccion {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* SECCIÓN DE ESTADÍSTICAS */
.seccion-estadisticas {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
}

.contenedor-estadisticas {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    width: 100%;
}

.estadistica {
    text-align: center;
}

.numero-estadistica {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffd700;
}

.texto-estadistica {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* FOOTER */
.pie-pagina {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.contenedor-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

.logo-footer h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.logo-footer p {
    color: #ccc;
}

.contacto-footer h4,
.servicios-footer h4 {
    margin-bottom: 15px;
    color: #ffd700;
}

.contacto-footer p,
.servicios-footer p {
    margin-bottom: 8px;
    color: #ccc;
}

.derechos-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* CELULAR: 0px a 420px */
@media (max-width: 420px) {
    .contenedor-header,
    .contenedor-hero,
    .contenedor-info,
    .contenedor-estadisticas,
    .contenedor-footer {
        padding: 0 10px;
        width: 100%;
    }
    
    /* AJUSTAR HEADER PARA MÓVIL */
    .contenedor-header {
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    /* MENÚ HAMBURGUESA PARA MÓVIL - VISIBLE */
    .menu-hamburguesa {
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        width: 35px;
        height: 35px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
        position: relative;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }
    
    .menu-hamburguesa:hover {
        background-color: rgba(102, 126, 234, 0.1);
    }
    
    
    .linea-hamburguesa {
        width: 25px;
        height: 3px;
        background: #667eea;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
        display: block;
    }
    
    /* ASEGURAR QUE EL MENÚ HAMBURGUESA SEA VISIBLE EN MÓVIL */
    .menu-hamburguesa {
        display: flex !important;
    }
    
    .menu-hamburguesa.menu-activo .linea-hamburguesa:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-hamburguesa.menu-activo .linea-hamburguesa:nth-child(2) {
        opacity: 0;
    }
    
    .menu-hamburguesa.menu-activo .linea-hamburguesa:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* MENÚ PRINCIPAL EN MÓVIL - COMPLETAMENTE OCULTO */
    .menu-principal {
        position: fixed !important;
        top: 70px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 40px 20px !important;
        gap: 30px !important;
        transition: left 0.3s ease !important;
        z-index: 1000 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        display: none !important;
    }
    
    .menu-principal.menu-abierto {
        display: flex !important;
        left: 0 !important;
    }
    
    .menu-principal a {
        font-size: 1.2rem !important;
        padding: 15px 30px !important;
        width: 100% !important;
        text-align: center !important;
        border-radius: 15px !important;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
        transition: all 0.3s ease !important;
    }
    
    .menu-principal a:hover {
        background: linear-gradient(135deg, #667eea, #764ba2) !important;
        color: white !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    }
    
    .menu-principal .enlace-activo {
        background: linear-gradient(135deg, #667eea, #764ba2) !important;
        color: white !important;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    }
    
    .menu-principal .empresas-link {
        background: linear-gradient(135deg, #25d366, #128c7e) !important;
        color: white !important;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    }
    
    .menu-principal .empresas-link:hover {
        background: linear-gradient(135deg, #128c7e, #0d6b5a) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
    }
    
    
    .titulo-hero {
        font-size: 2rem;
        width: 100%;
    }
    
    .titulo-seccion {
        font-size: 1.8rem;
        width: 100%;
    }
    
    .botones-navegacion {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .boton-navegacion {
        width: 100%;
        justify-content: center;
    }
    
    .grid-opciones {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .contenedor-estadisticas {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .info-footer {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .menu-principal {
        display: none;
    }
}

/* TABLET: 421px a 917px */
@media (min-width: 421px) and (max-width: 917px) {
    .contenedor-header,
    .contenedor-hero,
    .contenedor-info,
    .contenedor-estadisticas,
    .contenedor-footer {
        padding: 0 20px;
        width: 100%;
    }
    
    .titulo-hero {
        font-size: 2.5rem;
        width: 100%;
    }
    
    .titulo-seccion {
        font-size: 2rem;
        width: 100%;
    }
    
    .botones-navegacion {
        justify-content: center;
        width: 100%;
    }
    
    .grid-opciones {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
    
    .contenedor-estadisticas {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
    
    .info-footer {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
    
    .menu-principal {
        display: flex;
        gap: 20px;
    }
}

/* DESKTOP: 918px en adelante */
@media (min-width: 918px) {
    .contenedor-header,
    .contenedor-hero,
    .contenedor-info,
    .contenedor-estadisticas,
    .contenedor-footer {
        padding: 0 20px;
        width: 100%;
    }
    
    .titulo-hero {
        font-size: 3.5rem;
        width: 100%;
    }
    
    .titulo-seccion {
        font-size: 2.5rem;
        width: 100%;
    }
    
    .botones-navegacion {
        justify-content: center;
        width: 100%;
    }
    
    .grid-opciones {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }
    
    .contenedor-estadisticas {
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
    }
    
    .info-footer {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }
    
    .menu-principal {
        display: flex;
        gap: 30px;
    }
}

/* ========================================
   SECCIÓN DESTACADA PARA EMPRESAS
   ======================================== */

.seccion-empresas-destacada {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.seccion-empresas-destacada::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contenedor-empresas {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.contenido-empresas {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.texto-empresas {
    color: white;
}

.titulo-empresas {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.titulo-empresas i {
    color: #ffd700;
    font-size: 2.5rem;
}

.subtitulo-empresas {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.beneficios-empresas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.beneficio-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.beneficio-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

.beneficio-item span {
    font-weight: 600;
    font-size: 1rem;
}

.botones-empresas {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.boton-empresas-principal {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: boton-empresas-pulse 2s ease-in-out infinite;
}

@keyframes boton-empresas-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.boton-empresas-principal:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
    animation: none;
}

.boton-empresas-whatsapp {
    background: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.boton-empresas-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* TARJETA EMPRESAS DESTACADA EN GRID */
.tarjeta-empresas-destacada {
    position: relative;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%) !important;
    color: white !important;
    border: 3px solid #ffd700 !important;
    transform: scale(1.05);
    animation: tarjeta-empresas-glow 3s ease-in-out infinite;
}

@keyframes tarjeta-empresas-glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5); }
}

.badge-empresas {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ffd700;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badge-bounce 2s ease-in-out infinite;
}

@keyframes badge-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.icono-empresas {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 3px solid #ffd700 !important;
}

.tarjeta-empresas-destacada h3 {
    color: white !important;
    font-size: 1.6rem !important;
}

.tarjeta-empresas-destacada p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.boton-empresas {
    background: #ffd700 !important;
    color: #333 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4) !important;
}

.boton-empresas:hover {
    background: #ffed4e !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5) !important;
}

/* Estilos para los nuevos botones empresariales */
.botones-empresas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.boton-registro {
    background: #28a745 !important;
    color: white !important;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 14px;
}

.boton-registro:hover {
    background: #218838 !important;
    transform: translateY(-1px);
}

.boton-login {
    background: #17a2b8 !important;
    color: white !important;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 14px;
}

.boton-login:hover {
    background: #138496 !important;
    transform: translateY(-1px);
}

/* RESPONSIVE PARA SECCIÓN EMPRESAS */
@media (max-width: 420px) {
    .seccion-empresas-destacada {
        padding: 60px 0;
    }
    
    .contenedor-empresas {
        padding: 0 10px;
    }
    
    .contenido-empresas {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .titulo-empresas {
        font-size: 2rem;
        justify-content: center;
    }
    
    .subtitulo-empresas {
        font-size: 1.1rem;
    }
    
    .beneficios-empresas {
        grid-template-columns: 1fr;
    }
    
    .boton-empresas-principal {
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
        justify-content: center;
    }
    
    .tarjeta-empresas-destacada {
        transform: scale(1);
    }
}

@media (min-width: 421px) and (max-width: 917px) {
    .seccion-empresas-destacada {
        padding: 70px 0;
    }
    
    .contenido-empresas {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .titulo-empresas {
        font-size: 2.5rem;
        justify-content: center;
    }
    
    .beneficios-empresas {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin: 0 auto;
    }
    
    .botones-empresas {
        flex-direction: row;
        justify-content: center;
    }
}

/* ========================================
   MODAL EXPLORAR PROPIEDADES
   ======================================== */

.modal-explorar-propiedades {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-content-explorar {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.3s ease;
}

.modal-header-explorar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
}

.modal-header-explorar h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.btn-cerrar-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-cerrar-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body-explorar {
    padding: 40px;
}

.opciones-explorar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.opcion-explorar {
    text-align: center;
    padding: 30px;
    border: 2px solid #eee;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.opcion-explorar:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.icono-opcion {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #667eea;
}

.opcion-explorar h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
}

.opcion-explorar p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.beneficios-sesion,
.beneficios-sin-sesion {
    text-align: left;
    margin-bottom: 25px;
    padding: 0 20px;
}

.beneficios-sesion li,
.beneficios-sin-sesion li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.beneficios-sesion li i.fa-check {
    color: #28a745;
}

.beneficios-sin-sesion li i.fa-check {
    color: #28a745;
}

.beneficios-sin-sesion li i.fa-times {
    color: #dc3545;
}

.btn-opcion-principal,
.btn-opcion-secundario {
    width: 100%;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-opcion-principal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-opcion-principal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-opcion-secundario {
    background: #6c757d;
    color: white;
}

.btn-opcion-secundario:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.4);
}

.modal-footer-explorar {
    padding: 20px 40px;
    border-top: 1px solid #eee;
    text-align: center;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
}

.texto-footer-modal {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.texto-footer-modal i {
    color: #667eea;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive para el modal */
@media (max-width: 768px) {
    .opciones-explorar {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-content-explorar {
        width: 95%;
        margin: 20px;
    }
    
    .modal-body-explorar {
        padding: 20px;
    }
    
    .opcion-explorar {
        padding: 20px;
    }
}
