/* ========================================
   ESTILOS PRINCIPALES - EMPRESAS 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 EMPRESAS
   ======================================== */

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

/* ========================================
   HEADER EMPRESAS
   ======================================== */

.encabezado-empresas {
    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-empresas a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #667eea;
    font-size: 2rem;
    font-weight: 700;
}
.logo-empresas .logo-viive-header {
    height: 60px;
    width: auto;
    object-fit: contain;
}

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

/* MENÚ HAMBURGUESA - OCULTO POR DEFECTO EN DESKTOP */
.menu-hamburguesa {
    display: none;
}

/* TABLET: 421px a 917px */
@media (min-width: 441px) 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Ú EMPRESAS EN TABLET - OCULTO */
    .menu-empresas {
        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-empresas.menu-abierto {
        display: flex !important;
        left: 0 !important;
    }
    
    .menu-empresas 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-empresas 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-empresas .enlace-activo {
        background: linear-gradient(135deg, #25d366, #128c7e) !important;
        color: white !important;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    }
    
    .menu-empresas .enlace-activo: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-empresas {
        display: flex !important;
        gap: 30px !important;
    }
}

.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;
}

/* ========================================
   HERO EMPRESAS
   ======================================== */

.hero-empresas {
    --hero-empresas-verde: #22c55e;
    --hero-empresas-morado-1: #4f46e5;
    --hero-empresas-morado-2: #4338ca;
    --hero-empresas-morado-3: #3730a3;
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 3.5rem 0 4rem;
    background: linear-gradient(155deg, var(--hero-empresas-morado-1) 0%, var(--hero-empresas-morado-2) 48%, var(--hero-empresas-morado-3) 100%);
    font-family: 'Poppins', sans-serif;
}

.hero-empresas::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 85% 70% at 8% 25%, rgba(255, 255, 255, 0.09), transparent 52%),
        radial-gradient(ellipse 70% 60% at 92% 78%, rgba(55, 48, 163, 0.55), transparent 50%),
        radial-gradient(ellipse 50% 45% at 65% 15%, rgba(34, 197, 94, 0.12), transparent 45%);
}

.hero-empresas::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 18px 18px;
    -webkit-mask-image: linear-gradient(to right, #000 0%, transparent 14%, transparent 86%, #000 100%);
    mask-image: linear-gradient(to right, #000 0%, transparent 14%, transparent 86%, #000 100%);
}

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

.hero-empresas-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    width: 100%;
}

.contenido-hero-empresas {
    width: 100%;
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
}

.hero-empresas-badge {
    display: inline-block;
    margin: 0 0 1.25rem;
    padding: 0.4rem 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
}

.titulo-hero-empresas {
    font-size: 2.1rem;
    font-weight: 700;
    margin: 0 0 1.1rem;
    line-height: 1.18;
    color: #fff;
    text-wrap: balance;
}

.titulo-hero-empresas-accent {
    display: block;
    margin-top: 0.35rem;
    color: var(--hero-empresas-verde);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

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

.subtitulo-hero-empresas {
    font-size: 1.05rem;
    margin: 0 0 1.75rem;
    opacity: 0.92;
    line-height: 1.65;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
}

.botones-hero-empresas-todos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.hero-cta {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    justify-content: flex-start;
    text-align: left;
    line-height: 1.3;
    border: 2px solid transparent;
}

.hero-cta-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: inherit;
}

.hero-cta--primario {
    background: var(--hero-empresas-verde);
    color: #fff;
    box-shadow: 0 4px 18px rgba(34, 197, 94, 0.35);
    display: flex;
    justify-content: center;
}

.hero-cta--primario .hero-cta-icon {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.hero-cta--primario:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(34, 197, 94, 0.45);
    filter: brightness(1.05);
}

.hero-cta--fantasma {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: none;
    display: flex;
    justify-content: center;
}

.hero-cta--fantasma .hero-cta-icon {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
}

.hero-cta--fantasma:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
}

.boton-constructoras-hero,
.boton-servicios-hero,
.boton-registro-sistema,
.boton-login-sistema {
    /* Reset solo de estilos antiguos; borde y padding vienen de .hero-cta */
    box-shadow: none;
}

.hero-empresas-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-empresas-avatars {
    display: flex;
    padding-left: 0.5rem;
}

.hero-empresas-avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    margin-left: -0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-empresas-avatar--1 { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.hero-empresas-avatar--2 { background: linear-gradient(135deg, #6ee7b7, #059669); }
.hero-empresas-avatar--3 { background: linear-gradient(135deg, #fcd34d, #ea580c); }
.hero-empresas-avatar--4 { background: linear-gradient(135deg, #93c5fd, #2563eb); }

.hero-empresas-social-texto {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    max-width: 16rem;
    line-height: 1.4;
    text-align: center;
}

.hero-empresas-visual {
    position: relative;
    width: 100%;
    max-width: 20.5rem;
    margin: 0 auto;
    min-height: 240px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0.5rem 0 0;
}

.hero-empresas-phone-wrap {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.28));
}

.hero-empresas-phone-wrap picture {
    display: block;
    line-height: 0;
}

.hero-empresas-phone-img {
    display: block;
    width: min(260px, 85vw);
    height: auto;
    max-height: 420px;
    object-fit: contain;
}

.hero-empresas-notif {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
    color: #1f2937;
    font-size: 0.78rem;
    max-width: min(11.5rem, 52vw);
    animation: hero-empresas-float 5s ease-in-out infinite;
}

.hero-empresas-notif--wa {
    top: 2%;
    right: -2%;
    animation-delay: 0s;
}

.hero-empresas-notif--srv {
    top: 38%;
    right: -6%;
    animation-delay: 1.2s;
}

.hero-empresas-notif-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.05rem;
    color: #fff;
}

.hero-empresas-notif-icon--wa {
    background: #25d366;
}

.hero-empresas-notif-icon--srv {
    background: #7c3aed;
}

.hero-empresas-notif-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    line-height: 1.25;
}

.hero-empresas-notif-body strong {
    font-weight: 700;
    font-size: 0.8rem;
    color: #111827;
}

.hero-empresas-notif-body span {
    font-size: 0.72rem;
    color: #6b7280;
}

.hero-empresas-flecha {
    display: none;
    position: absolute;
    z-index: 1;
    width: 72px;
    height: 72px;
    right: 21%;
    bottom: 28%;
    border: none;
    border-bottom: 3px dashed var(--hero-empresas-verde);
    border-right: 3px dashed var(--hero-empresas-verde);
    border-radius: 0 0 70% 0;
    opacity: 0.75;
    pointer-events: none;
    transform: rotate(-12deg);
}

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

/* ========================================
   SECCIÓN DE CONSTRUCTORAS
   ======================================== */

.seccion-constructoras {
    padding: 100px 0;
    background: white;
}

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

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

.titulo-seccion-2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}
.subtitulo-seccion {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #666;
}

.grid-planes-constructoras {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tarjeta-plan-constructoras {
    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;
    position: relative;
}

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

.tarjeta-plan-constructoras.plan-destacado {
    border: 3px solid #ffd700;
    transform: scale(1.05);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.badge-destacado {
    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;
}

.encabezado-plan {
    margin-bottom: 30px;
}

.encabezado-plan h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.tarjeta-plan-constructoras.plan-destacado .encabezado-plan h3 {
    color: white;
}

.precio-plan {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.precio-valor {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.tarjeta-plan-constructoras.plan-destacado .precio-valor {
    color: #ffd700;
}

.precio-periodo {
    font-size: 1rem;
    color: #666;
}

.tarjeta-plan-constructoras.plan-destacado .precio-periodo {
    color: rgba(255, 255, 255, 0.8);
}

.caracteristicas-plan {
    margin-bottom: 30px;
}

.caracteristica-plan {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #666;
}

.tarjeta-plan-constructoras.plan-destacado .caracteristica-plan {
    color: rgba(255, 255, 255, 0.9);
}

.caracteristica-plan i {
    color: #667eea;
    width: 20px;
}

.tarjeta-plan-constructoras.plan-destacado .caracteristica-plan i {
    color: #ffd700;
}

.boton-contratar-plan {
    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;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

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

.boton-formulario-plan {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
    border: 1px solid #667eea;
}

.boton-formulario-plan:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Banner y oferta inauguración */
.banner-inauguracion {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    text-align: center;
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 28px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.35);
}

.badge-oferta-inauguracion {
    display: inline-block;
    background: rgba(255, 215, 0, 0.95);
    color: #333;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.precio-normal-tachado {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.texto-oferta-inauguracion {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 600;
    margin: 8px 0 4px;
}

.texto-luego-precio {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 16px;
}

.tarjeta-plan-constructoras.plan-destacado .texto-oferta-inauguracion,
.tarjeta-plan-constructoras.plan-destacado .texto-luego-precio {
    color: rgba(255, 255, 255, 0.95);
}

.tarjeta-plan-constructoras.plan-destacado .precio-normal-tachado {
    color: rgba(255, 255, 255, 0.7);
}

.boton-6-meses {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    margin-bottom: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #667eea;
    background: rgba(102, 126, 234, 0.12);
    border: 1px dashed #667eea;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.boton-6-meses:hover {
    background: rgba(102, 126, 234, 0.2);
    border-style: solid;
}

.tarjeta-plan-constructoras.plan-destacado .boton-6-meses {
    color: #ffd700;
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
}

.tarjeta-plan-constructoras.plan-destacado .boton-6-meses:hover {
    background: rgba(255, 215, 0, 0.25);
}

.tarjeta-plan-servicios.plan-destacado .texto-oferta-inauguracion,
.tarjeta-plan-servicios.plan-destacado .texto-luego-precio {
    color: rgba(255, 255, 255, 0.95);
}

.tarjeta-plan-servicios.plan-destacado .precio-normal-tachado {
    color: rgba(255, 255, 255, 0.7);
}

.tarjeta-plan-servicios .boton-6-meses {
    color: #ff6b6b;
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.tarjeta-plan-servicios .boton-6-meses:hover {
    background: rgba(255, 107, 107, 0.2);
}

.tarjeta-plan-servicios.plan-destacado .boton-6-meses {
    color: #ffd700;
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
}

/* ========================================
   SECCIÓN DE SERVICIOS PROFESIONALES
   ======================================== */

.seccion-servicios-profesionales {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contenedor-servicios-profesionales {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-planes-servicios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tarjeta-plan-servicios {
    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;
    position: relative;
}

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

.tarjeta-plan-servicios.plan-destacado {
    border: 3px solid #ff6b6b;
    transform: scale(1.05);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.tarjeta-plan-servicios.plan-destacado .precio-valor {
    color: #ffd700;
}

.tarjeta-plan-servicios.plan-destacado .encabezado-plan h3 {
    color: white;
}

.tarjeta-plan-servicios.plan-destacado .precio-periodo {
    color: rgba(255, 255, 255, 0.8);
}

.tarjeta-plan-servicios.plan-destacado .caracteristica-plan {
    color: rgba(255, 255, 255, 0.9);
}

.tarjeta-plan-servicios.plan-destacado .caracteristica-plan i {
    color: #ffd700;
}

/* ========================================
   SECCIÓN DE BENEFICIOS + CÓMO FUNCIONA (EMPRESAS)
   ======================================== */

.seccion-beneficios-empresas {
    --be-emp-verde: #2e7d32;
    --be-emp-violeta: #5e35b1;
    --be-emp-naranja: #ef6c00;
    --be-emp-verificacion: #1565c0;
    --be-emp-texto: #1a1a1a;
    --be-emp-texto-suave: #5f6368;
    --be-emp-linea: #e8eaed;
    padding: 4.5rem 0 5rem;
    background: #fafbfc;
    color: var(--be-emp-texto);
    font-family: 'Poppins', sans-serif;
}

.contenedor-beneficios--ancho {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.contenedor-beneficios {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.beneficios-empresas-cabecera {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 3.25rem;
}

.beneficios-empresas-titulo {
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 1rem;
    color: #111827;
    letter-spacing: -0.02em;
}

.beneficios-empresas-titulo-resalte {
    color: var(--be-emp-verde);
}

.beneficios-empresas-subtitulo {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--be-emp-texto-suave);
    font-weight: 400;
}

.seccion-beneficios-empresas .grid-beneficios--features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    list-style: none;
}

.tarjeta-beneficio--feature {
    background: transparent;
    padding: 2rem 1.35rem;
    border-radius: 0;
    text-align: center;
    border: none;
    border-bottom: 1px solid var(--be-emp-linea);
    transition: background 0.2s ease;
}

.tarjeta-beneficio--feature:last-child {
    border-bottom: none;
}

.tarjeta-beneficio--feature:hover {
    background: rgba(255, 255, 255, 0.72);
    transform: none;
}

.icono-beneficio--tema-verde {
    background: #e8f5e9;
    color: var(--be-emp-verde);
    border: none;
}

.icono-beneficio--tema-violeta {
    background: #ede7f6;
    color: var(--be-emp-violeta);
    border: none;
}

.icono-beneficio--tema-naranja {
    background: #fff3e0;
    color: var(--be-emp-naranja);
    border: none;
}

.icono-beneficio--tema-verificacion {
    background: #e3f2fd;
    color: var(--be-emp-verificacion);
    border: none;
}

.tarjeta-beneficio--feature .icono-beneficio {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.35rem;
    font-size: 2rem;
}

.tarjeta-beneficio--feature h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.65rem;
    color: #111827;
}

.tarjeta-beneficio--feature p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--be-emp-texto-suave);
}

/* Subsección: Así funciona Viive */
.seccion-como-funciona-viive {
    margin-top: 4.5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--be-emp-linea);
}

.como-funciona-titulo {
    text-align: center;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    margin: 0 0 3rem;
    color: #111827;
    letter-spacing: -0.02em;
}

.como-funciona-titulo-marca {
    color: var(--be-emp-verde);
}

.como-funciona-pasos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2.25rem;
    position: relative;
}

.como-funciona-paso {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.como-funciona-paso__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.65rem;
}

.como-funciona-paso__num--verde {
    background: var(--be-emp-verde);
}

.como-funciona-paso__num--violeta {
    background: var(--be-emp-violeta);
}

.como-funciona-paso__num--naranja {
    background: var(--be-emp-naranja);
}

.como-funciona-paso__icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.85rem;
    font-size: 1.45rem;
    color: #fff;
}

.como-funciona-paso__icon--violeta {
    background: var(--be-emp-violeta);
}

.como-funciona-paso__icon--violeta-suave {
    background: #7e57c2;
}

.como-funciona-paso__icon--naranja {
    background: var(--be-emp-naranja);
}

.como-funciona-paso__icon--verde {
    background: #25d366;
}

.como-funciona-paso__texto {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--be-emp-texto-suave);
    max-width: 15rem;
    margin-left: auto;
    margin-right: auto;
}

.como-funciona-paso__texto--destacado {
    color: var(--be-emp-verde);
    font-weight: 600;
}

.como-funciona-paso__texto--destacado strong {
    font-weight: 700;
}

@media screen and (min-width: 441px) {
    .seccion-beneficios-empresas .grid-beneficios--features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .tarjeta-beneficio--feature {
        border-bottom: 1px solid var(--be-emp-linea);
        border-right: 1px solid var(--be-emp-linea);
    }

    .tarjeta-beneficio--feature:nth-child(2n) {
        border-right: none;
    }

    .tarjeta-beneficio--feature:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media screen and (min-width: 918px) {
    .seccion-beneficios-empresas .grid-beneficios--features {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
    }

    .tarjeta-beneficio--feature {
        border-bottom: none;
        padding: 2rem 1.25rem;
        border-right: none;
    }

    .tarjeta-beneficio--feature:not(:last-child) {
        border-right: 1px solid var(--be-emp-linea);
    }

    .como-funciona-paso {
        background: #fafbfc;
        padding-left: 0.35rem;
        padding-right: 0.35rem;
        border-radius: 0.5rem;
        max-width: 22%;
    }

    .como-funciona-pasos {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .como-funciona-pasos::before {
        content: '';
        position: absolute;
        left: 8%;
        right: 8%;
        top: 0.9rem;
        height: 0;
        border-top: 2px dotted #cfd4dc;
        z-index: 0;
    }
}

/* ========================================
   SECCIÓN DE CONTACTO (BANNER CTA)
   ======================================== */

.seccion-contacto-empresas {
    padding: 3rem 0 4.5rem;
    background: #fafbfc;
    font-family: 'Poppins', sans-serif;
}

.contenedor-contacto--cta-banner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.contacto-empresas-banner {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: clamp(2rem, 5vw, 3.25rem) clamp(1.25rem, 4vw, 3rem);
    background: linear-gradient(100deg, #4c1d95 0%, #5b21b6 38%, #166534 72%, #0f3d22 100%);
    box-shadow:
        0 24px 48px rgba(76, 29, 149, 0.22),
        0 4px 16px rgba(15, 61, 34, 0.12);
}

.contacto-empresas-banner__decor {
    position: absolute;
    right: 2%;
    top: 50%;
    width: min(140px, 28vw);
    height: min(110px, 22vw);
    transform: translateY(-50%) rotate(-8deg);
    pointer-events: none;
    opacity: 0.85;
    border: 2px dashed rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    border-left-color: transparent;
    border-top-color: transparent;
}

.contacto-empresas-banner__flecha {
    position: absolute;
    bottom: -4px;
    right: 14px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 11px solid #90caf9;
    transform: rotate(18deg);
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}

.contenido-contacto-empresas {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}

.titulo-contacto-empresas {
    font-size: clamp(1.45rem, 4.2vw, 2.35rem);
    margin: 0 0 1rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.titulo-contacto-empresas-resalte {
    color: #86efac;
}

.texto-contacto-empresas {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.55;
    font-weight: 400;
}

.botones-contacto-empresas {
    display: flex;
    gap: 1rem 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.boton-cta-empresas-icono {
    flex-shrink: 0;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.boton-cta-empresas-icono--blanco {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.boton-cta-empresas-icono--verde {
    background: rgba(22, 101, 52, 0.12);
    color: #166534;
    border: 1px solid rgba(22, 101, 52, 0.2);
}

.boton-whatsapp-empresas {
    background: #2e7d32;
    color: #fff;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    justify-content: center;
    border: 1px solid rgba(187, 247, 208, 0.55);
}

.boton-whatsapp-empresas:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    filter: brightness(1.06);
}

.boton-contacto-web-empresas {
    background: #fff;
    color: #14532d;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.85);
}

.boton-contacto-web-empresas:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

/* ========================================
   MODAL SELECTOR DE TIPO DE USUARIO
   ======================================== */

.modal-selector-tipo {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeInModal 0.3s ease;
}

.modal-selector-tipo.active {
    display: flex;
}

.modal-content-selector {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideInModal 0.3s ease;
}

.modal-header-selector {
    padding: 2rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

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

.btn-cerrar-modal-selector {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-cerrar-modal-selector:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body-selector {
    padding: 2rem;
}

.texto-selector {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #666;
}

.opciones-tipo-usuario {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.opcion-tipo-usuario {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.opcion-tipo-usuario::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

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

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

.opcion-tipo-usuario:active {
    transform: translateY(-2px);
}

.icono-tipo-usuario {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.opcion-tipo-usuario h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.opcion-tipo-usuario p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

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

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

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

/* Mobile (≤440px) */
@media screen and (max-width: 440px) {
    .contenedor-header {
        justify-content: space-between !important;
        align-items: center !important;
        flex-direction: row !important;
        gap: 0 !important;
        width: 100%;
        padding: 0 10px;
    }
    .logo-footer h3 {
        margin-left: 32px;
    }
    .seccion-servicios-profesionales {
        padding: 0px;
    }
    .seccion-beneficios-empresas {
        padding: 2.25rem 0 2.75rem;
    }

    .seccion-contacto-empresas {
        padding: 1.75rem 0 2.5rem;
    }

    .contacto-empresas-banner__decor {
        display: none;
    }

    /* Hero / beneficios / contacto — móvil (≤440px) */
    .hero-empresas {
        padding: 2.25rem 0 2.5rem;
    }

    .contenedor-hero {
        padding: 0 14px;
    }

    .hero-empresas-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.85rem;
        margin-bottom: 1rem;
    }

    .titulo-hero-empresas {
        font-size: clamp(1.55rem, 6.5vw, 1.95rem);
        line-height: 1.2;
    }

    .titulo-hero-empresas-accent {
        margin-top: 0.5rem;
    }

    .subtitulo-hero-empresas {
        font-size: 0.92rem;
        margin-bottom: 1.35rem;
        padding: 0 0.15rem;
    }

    .botones-hero-empresas-todos {
        gap: 0.65rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        font-size: 0.82rem;
        padding: 0.72rem 0.95rem;
        gap: 0.55rem;
        justify-content: center;
        width: 63%;
        box-sizing: border-box;
    }

    .hero-cta-icon {
        width: 2rem;
        height: 2rem;
        font-size: 0.85rem;
    }

    .hero-empresas-social {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-empresas-social-texto {
        text-align: center;
        max-width: 100%;
        font-size: 0.85rem;
    }

    .hero-empresas-visual {
        max-width: 17.5rem;
        min-height: 200px;
        padding-top: 0.25rem;
    }

    .hero-empresas-phone-img {
        width: min(220px, 72vw);
    }

    .hero-empresas-notif {
        font-size: 0.68rem;
        padding: 0.45rem 0.6rem;
        border-radius: 12px;
    }

    .hero-empresas-notif--wa {
        right: -4%;
    }

    .hero-empresas-notif--srv {
        top: 34%;
        right: -8%;
    }

    .beneficios-empresas-cabecera {
        margin-bottom: 2rem;
        padding: 0 0.25rem;
    }

    .beneficios-empresas-titulo {
        font-size: clamp(1.35rem, 5.5vw, 1.65rem);
    }

    .beneficios-empresas-subtitulo {
        font-size: 0.92rem;
    }

    .tarjeta-beneficio--feature {
        padding: 1.5rem 1rem 1.75rem;
    }

    .tarjeta-beneficio--feature .icono-beneficio {
        width: 4.75rem;
        height: 4.75rem;
        font-size: 1.75rem;
    }

    .tarjeta-beneficio--feature h3 {
        font-size: 1.05rem;
    }

    .tarjeta-beneficio--feature p {
        font-size: 0.88rem;
    }

    .seccion-como-funciona-viive {
        margin-top: 3rem;
        padding-top: 2.25rem;
    }

    .como-funciona-titulo {
        font-size: clamp(1.28rem, 5vw, 1.55rem);
        margin-bottom: 2rem;
    }

    .como-funciona-paso__num {
        width: 1.7rem;
        height: 1.7rem;
        font-size: 0.72rem;
    }

    .como-funciona-paso__icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.2rem;
    }

    .como-funciona-paso__texto {
        font-size: 0.85rem;
        max-width: 18rem;
    }

    .contenedor-contacto--cta-banner {
        padding: 0 14px;
    }

    .contacto-empresas-banner {
        border-radius: 16px;
        padding: 1.65rem 1.1rem 1.85rem;
    }

    .titulo-contacto-empresas {
        font-size: clamp(1.25rem, 6vw, 1.55rem);
    }

    .texto-contacto-empresas {
        margin-bottom: 1.5rem;
    }

    .boton-whatsapp-empresas,
    .boton-contacto-web-empresas {
        width: 100%;
        max-width: 20rem;
        box-sizing: border-box;
        font-size: 0.9rem;
        padding: 0.82rem 1.1rem;
    }

    .boton-cta-empresas-icono {
        width: 2.1rem;
        height: 2.1rem;
        font-size: 1.05rem;
    }
    
    /* 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;
    }
    
    .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Ú EMPRESAS EN MÓVIL - COMPLETAMENTE OCULTO */
    .menu-empresas {
        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-empresas.menu-abierto {
        display: flex !important;
        left: 0 !important;
    }
    
    .menu-empresas 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-empresas 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-empresas .enlace-activo {
        background: linear-gradient(135deg, #25d366, #128c7e) !important;
        color: white !important;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    }
    
    .seccion-constructoras {
        padding: 40px 0;
    }
    
    .botones-hero-empresas-todos {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .grid-planes-constructoras,
    .grid-planes-servicios {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tarjeta-plan-constructoras.plan-destacado,
    .tarjeta-plan-servicios.plan-destacado {
        transform: none;
    }
    
    .grid-beneficios:not(.grid-beneficios--features) {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .seccion-beneficios-empresas .grid-beneficios--features {
        gap: 0;
    }
    
    .botones-contacto-empresas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .tarjeta-plan-constructoras,
    .tarjeta-plan-servicios {
        padding: 1.5rem;
    }
    .footer-raiz-viive__social {
        justify-content: center;
    }
}

/* Tablet (441px - 917px) */
@media screen and (min-width: 441px) and (max-width: 917px) {
    .contenedor-header,
    .contenedor-hero,
    .contenedor-constructoras,
    .contenedor-servicios-profesionales,
    .contenedor-beneficios,
    .contenedor-contacto,
    .contenedor-contacto--cta-banner {
        width: 100%;
        padding: 0 1.5rem;
    }
    
    .grid-planes-constructoras,
    .grid-planes-servicios {
        gap: 2rem;
    }
    
    .grid-beneficios:not(.grid-beneficios--features) {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .titulo-hero-empresas {
        font-size: clamp(1.85rem, 3.8vw, 2.45rem);
    }

    .subtitulo-hero-empresas {
        font-size: 1rem;
        max-width: 32rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .botones-hero-empresas-todos {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .hero-empresas {
        padding: 2.75rem 0 3.25rem;
    }

    .hero-empresas-grid {
        gap: 2rem;
    }

    .hero-empresas-visual {
        max-width: 24rem;
        min-height: 260px;
    }

    .hero-empresas-phone-img {
        width: min(248px, 52vw);
    }

    .hero-empresas-notif {
        max-width: min(11rem, 42vw);
        font-size: 0.72rem;
    }

    .hero-empresas-notif--srv {
        right: -4%;
    }

    .seccion-beneficios-empresas {
        padding: 3rem 0 3.5rem;
    }

    .beneficios-empresas-cabecera {
        margin-bottom: 2.75rem;
    }

    .tarjeta-beneficio--feature {
        padding: 1.75rem 1.1rem;
    }

    .seccion-como-funciona-viive {
        margin-top: 3.5rem;
        padding-top: 3rem;
    }

    .como-funciona-titulo {
        margin-bottom: 2.5rem;
    }

    .seccion-contacto-empresas {
        padding: 2.5rem 0 3.5rem;
    }

    .contacto-empresas-banner {
        border-radius: 18px;
        padding: 2.25rem 1.75rem 2.5rem;
    }

    .contacto-empresas-banner__decor {
        opacity: 0.45;
        right: 0;
        width: min(120px, 22vw);
        height: min(95px, 18vw);
    }

    .botones-contacto-empresas {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 0.85rem 1rem;
    }

    .boton-whatsapp-empresas,
    .boton-contacto-web-empresas {
        flex: 1 1 auto;
        min-width: min(100%, 14.5rem);
        max-width: 18rem;
    }
}

/* Desktop (918px+) */
@media screen and (min-width: 918px) {
    .contenedor-header,
    .contenedor-hero,
    .contenedor-constructoras,
    .contenedor-servicios-profesionales,
    .contenedor-beneficios,
    .contenedor-contacto,
    .contenedor-contacto--cta-banner {
        width: 100%;
        padding: 0 2rem;
    }
    
    .grid-planes-constructoras,
    .grid-planes-servicios {
        gap: 2rem;
    }
    
    .grid-beneficios:not(.grid-beneficios--features) {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .hero-empresas-grid {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem 2.5rem;
    }

    .hero-empresas-visual {
        flex: 1 1 46%;
        width: auto;
        max-width: none;
        margin: 0 0 0 clamp(1rem, 3vw, 3rem);
        min-height: 380px;
        padding-top: 1rem;
        align-self: center;
    }

    .hero-empresas-phone-wrap {
        left: -63px;
    }

    .hero-empresas-notif {
        max-width: 200px;
    }

    .hero-empresas-notif--wa {
        top: 6%;
        right: 2%;
    }

    .hero-empresas-notif--srv {
        top: 42%;
        right: 0;
    }

    .hero-empresas-flecha {
        display: block;
    }

    .contenido-hero-empresas {
        margin: 0;
        max-width: none;
        text-align: left;
        flex: 1 1 50%;
        min-width: 0;
    }

    .hero-empresas-social {
        justify-content: flex-start;
    }

    .hero-empresas-social-texto {
        text-align: left;
    }

    .titulo-hero-empresas {
        font-size: clamp(2.35rem, 3.1vw, 3.2rem);
    }

    .subtitulo-hero-empresas {
        font-size: 1.12rem;
        max-width: 34rem;
    }

    .botones-hero-empresas-todos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
        max-width: 36rem;
    }

    .hero-empresas-phone-img {
        width: min(300px, 100%);
        max-height: 520px;
    }

    .hero-empresas-visual {
        min-height: 380px;
    }
}