/* ========================================
   PROMOTORA COMERCIAL TEXTIL ROCA
   Diseño Corporativo B/N — Efectos Pro
   Hero: Split | About: Minimal Dark
   Contact: Grid Cards | Footer: Centered
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* PALETA "CONSULK" — Professional/Elegant Purple */

    /* Colores Base */
    --gold-main: #C4A265;
    --gold-dark: #A88A50;
    --gold-light: #F5EFE0;

    --lavender-main: #7B68AE;
    --lavender-dark: #6352A0;
    --lavender-light: #EDE7F6;

    /* Textos y Fondos Matte */
    --black: #160F25;        /* Purple very dark (almost black) */
    --black-soft: #2A2040;   /* Purple dark for hero */

    --gray-900: #1E1832;
    --gray-800: #3A3050;
    --gray-700: #5A5070;
    --gray-600: #7A7090;
    --gray-500: #9A92AA;
    --gray-400: #BEB8CC;
    --gray-300: #DDD8E8;
    --gray-200: #EDE8F4;
    --gray-100: #F5F2FA;
    --gray-50: #F5F2FA;      /* Purple tint light */
    --white: #FFFFFF;

    /* Asignación de Roles */
    --primary: var(--lavender-main);       /* Botones, Enlaces, Iconos */
    --primary-hover: var(--lavender-dark);
    --primary-light: var(--lavender-light);

    --accent: var(--gold-main);            /* Detalles, Bordes, Números */
    --accent-light: var(--gold-light);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.2;
}

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

/* ========================================
   Scroll Reveal Animations
======================================== */
.reveal-hidden {
    opacity: 0 !important;
    transform: translateY(30px) !important;
}

.reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* ========================================
   Header
======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #2A2040;
    z-index: 1000;
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(22,15,37,0.3);
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 14px rgba(22,15,37,0.4);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    display: block;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.2s, border-bottom 0.2s;
    position: relative;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

nav a::after {
    display: none;
}

nav a:hover {
    color: #fff;
    border-bottom: 2px solid #C4A265;
}

nav a:hover::after {
    width: 0;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #7B68AE;
    color: #FFFFFF !important;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    transition: background 0.2s, transform 0.2s;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-header:hover {
    background: #6352A0;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s;
}

/* ========================================
   Buttons
======================================== */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-cta-primary {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-cta-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.btn-cta-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   Hero 3: Split Screen
======================================== */
.hero-split {
    display: flex;
    min-height: 100vh;
    background: linear-gradient(135deg, #2A2040 0%, #160F25 100%);
}

.hero-split-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 6rem 4rem 4rem;
}

.hero-split-inner {
    max-width: 560px;
    margin-left: auto;
}

.hero-split h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.08;
}

.hero-split p {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-split-image {
    flex: 1;
    position: relative;
    /* Add padding to container so image "breathes" instead of being full bleed block */
    padding: 2rem 4rem 2rem 0; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-split-image img {
    position: relative; 
    width: 100%;
    height: 100%;
    max-height: 80vh;
    object-fit: cover;
    /* Rounded & Shadowed for "Grace" */
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-split-image:hover img {
    transform: scale(1.02) rotate(1deg);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========================================
   Sections Common
======================================== */
section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.section-eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-header p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========================================
   About 5: Minimal Text (Dark)
======================================== */
.about-text-minimal {
    background: #2A2040;
    color: var(--white);
    padding: 7rem 2rem;
}

.about-minimal-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-minimal h2 {
    color: var(--white);
    font-size: 2.5rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.about-text-minimal p {
    color: var(--gray-400);
    font-size: 1.15rem;
    line-height: 1.85;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent); /* Dorado */
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Misión, Visión y Valores
======================================== */
.mvv {
    background: var(--gray-50);
    padding: 6rem 2rem;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mvv-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px; /* Un poco más grueso */
    background: var(--accent); /* DORADO */
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(123, 104, 174, 0.2); /* Sombra purple */
}

.mvv-card:hover::before {
    transform: scaleX(1);
}

.mvv-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light); /* Lavanda claro de fondo */
    color: var(--primary); /* Icono lavanda oscuro */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.mvv-icon svg {
    width: 26px;
    height: 26px;
    color: currentColor; /* Usa el color del padre (primary) */
}

.mvv-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.mvv-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   Beneficios
======================================== */
.beneficios {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.beneficio-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--black);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.beneficio-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.beneficio-icon {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: 1rem;
}

.beneficio-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.beneficio-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ========================================
   Servicios
======================================== */
.services {
    background: linear-gradient(135deg, #160F25 0%, #2A2040 100%);
    color: var(--white);
}

.services .section-eyebrow {
    color: var(--gray-300);
}

.services .section-header h2 {
    color: var(--white);
}

.services .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
}

.services-detail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.services-detail-col h4 {
    font-size: 0.9rem;
    color: var(--gray-300);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.services-detail-col p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

/* ========================================
   Sectores
======================================== */
.sectores {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.sector-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.sector-row:last-child {
    border-bottom: none;
}

.sector-row:nth-child(even) .sector-content {
    order: 2;
}

.sector-row:nth-child(even) .sector-image {
    order: 1;
}

.sector-number {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 1rem;
}

.sector-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.sector-content p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.sector-image {
    overflow: hidden;
    border-radius: 12px;
}

.sector-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.6s ease;
}

.sector-image:hover img {
    transform: scale(1.04);
}

/* ========================================
   Cifras
======================================== */
.cifras {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.cifras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.cifra-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    border-top: 4px solid var(--accent); /* DORADO */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cifra-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(196, 162, 101, 0.2); /* Sombra gold */
}

.cifra-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent); /* DORADO */
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cifra-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* ========================================
   CTA
======================================== */
.cta {
    background: linear-gradient(135deg, #7B68AE 0%, #5C4D8A 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    top: -200px;
    right: -100px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.cta h2 {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta .cta-actions {
    justify-content: center;
}

/* ========================================
   Contact 4: Grid Cards
======================================== */
.contact {
    padding: 0;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.contact-grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    border: 1px solid var(--gray-200);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    border-color: var(--gray-300);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: background 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: var(--black);
}

.contact-card:hover .contact-card-icon svg {
    color: var(--white);
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gray-700);
    transition: color 0.3s ease;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-500);
}

/* ========================================
   Footer 3: Simple Centered
======================================== */
footer {
    background: linear-gradient(180deg, #2A2040 0%, #160F25 100%);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-centered {
    text-align: center;
}

.footer-logo {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--gray-400);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom-line {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.footer-bottom-line p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-split-content {
        padding: 8rem 2rem 4rem;
    }

    .hero-split-inner {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-split-image {
        position: relative;
        min-height: 400px;
        padding: 0 2rem 4rem; /* Adjust padding for mobile stack */
    }

    .hero-split-image img {
        max-height: 400px;
    }

    .about-minimal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .services-detail {
        grid-template-columns: 1fr;
    }

    .sector-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sector-row:nth-child(even) .sector-content,
    .sector-row:nth-child(even) .sector-image {
        order: unset;
    }

    .cifras-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

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

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        border-top: 1px solid var(--gray-200);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 0.875rem 0;
        border-bottom: 1px solid var(--gray-100);
        color: var(--gray-600);
    }

    nav a:hover {
        color: var(--black);
        border-bottom: 1px solid var(--gray-100);
    }

    nav a::after {
        display: none;
    }

    .btn-header {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .header-container {
        position: relative;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .hero-split h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .about-text-minimal {
        padding: 4rem 1.5rem;
    }

    .about-text-minimal h2 {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .cifras-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
    }

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


/* ========================================
   IMPORTACIONES Y DISTRIBUCIONES A LA MODA
   ALL sections different from Company #01
   Hero: Bottom | About: Centered
   MVV: Horiz Rows | Beneficios: Dark Hover
   Servicios: Alt Rows | Sectores: Icon Grid
   Cifras: Inline | CTA: Bordered
   Contact: Large Links | Footer: Mega Light
======================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* PALETA CONSULK — Professional/Elegant Purple */
    --gold-main:       #C4A265;
    --gold-dark:       #A88A50;
    --gold-light:      #F5EFE0;

    --lavender-main:   #7B68AE;
    --lavender-dark:   #6352A0;
    --lavender-light:  #EDE7F6;

    /* Fondos y textos matte — purple tones */
    --black:           #160F25;   /* Purple very dark */
    --black-soft:      #2A2040;   /* Purple dark for hero */
    --gray-900:        #1E1832;
    --gray-800:        #3A3050;
    --gray-700:        #5A5070;
    --gray-600:        #7A7090;
    --gray-500:        #9A92AA;
    --gray-400:        #BEB8CC;
    --gray-300:        #DDD8E8;
    --gray-200:        #EDE8F4;
    --gray-100:        #F5F2FA;
    --gray-50:         #F5F2FA;   /* Purple tint light */
    --white:           #FFFFFF;

    /* Roles de color */
    --primary:         var(--lavender-main);
    --primary-hover:   var(--lavender-dark);
    --primary-light:   var(--lavender-light);
    --accent:          var(--gold-main);
    --accent-light:    var(--gold-light);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.2;
}

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

/* Reveal */
.reveal-hidden { opacity: 0 !important; transform: translateY(30px) !important; }
.reveal-visible {
    opacity: 1 !important; transform: translateY(0) !important;
    transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1) !important;
}

/* ========================================
   Header (same base as #01)
======================================== */
header {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}
header.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.08); }
.header-container { max-width: 1200px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-text { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); letter-spacing: -0.5px; }
nav { display: flex; gap: 2rem; align-items: center; }
nav a { text-decoration: none; color: var(--gray-600); font-weight: 500; font-size: 0.85rem; transition: color 0.2s; position: relative; }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--black); transition: width 0.3s ease; }
nav a:hover { color: var(--black); }
nav a:hover::after { width: 100%; }
.btn-header { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--primary); color: var(--white) !important; padding: 0.625rem 1.25rem; border-radius: 6px; transition: background 0.2s, transform 0.2s; font-size: 0.85rem; font-weight: 600; }
.btn-header::after { display: none; }
.btn-header:hover { background: var(--primary-hover); transform: translateY(-1px); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--gray-800); }

/* Buttons */
.btn-cta { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2rem; font-weight: 600; font-size: 1rem; border-radius: 8px; text-decoration: none; transition: all 0.3s cubic-bezier(0.22,1,0.36,1); }
.btn-cta-primary { background: var(--white); color: var(--black); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.btn-cta-primary:hover { background: var(--gray-100); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.btn-cta-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-cta-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Sections Common */
section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-eyebrow { display: inline-block; color: var(--accent); font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem; }
.section-header h2 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -1px; line-height: 1.1; }
.section-header p { font-size: 1rem; color: var(--gray-500); line-height: 1.7; }

/* ========================================
   Hero 5: Bottom Aligned
======================================== */
.hero-bottom { position: relative; min-height: 100vh; display: flex; align-items: flex-end; padding: 4rem 2rem 5rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.75) 100%); }
.hero-bottom .hero-container { position: relative; z-index: 1; max-width: 1200px; width: 100%; margin: 0 auto; }
.hero-eyebrow { display: inline-block; color: rgba(255,255,255,0.85); font-size: 0.8rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 1rem; }
.hero-bottom h1 { font-size: 4.5rem; color: var(--white); max-width: 800px; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 2rem; }

/* ========================================
   About 2: Centered + Image
======================================== */
.about-centered { text-align: center; padding: 7rem 2rem 5rem; background: var(--white); border-bottom: 1px solid var(--gray-200); }
.about-text-large { font-size: 1.15rem; color: var(--gray-600); line-height: 1.8; max-width: 700px; margin: 0 auto; }
.about-stats-row { display: flex; justify-content: center; gap: 4rem; padding: 2.5rem 0; margin: 2rem 0 3rem; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2.25rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }
.about-centered-image { width: 100%; height: 450px; object-fit: cover; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

/* ========================================
   MVV: Horizontal Rows
======================================== */
.mvv { background: var(--gray-50); padding: 6rem 2rem; }
.mvv-stack { max-width: 900px; margin: 0 auto; }
.mvv-row { display: flex; align-items: flex-start; gap: 2.5rem; padding: 2.5rem 0; border-bottom: 1px solid var(--gray-200); transition: padding-left 0.4s ease; }
.mvv-row:last-child { border-bottom: none; }
.mvv-row:hover { padding-left: 1rem; }
.mvv-row-number { font-size: 3rem; font-weight: 800; color: var(--gray-200); line-height: 1; min-width: 70px; transition: color 0.3s ease; }
.mvv-row:hover .mvv-row-number { color: var(--black); }
.mvv-row-content h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.mvv-row-content p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; }

/* ========================================
   Beneficios: Dark Hover Cards
   (Company #01 uses border-left cards)
======================================== */
.beneficios-dark { background: var(--gray-100); padding: 6rem 2rem; }
.hover-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.hover-card {
    background: var(--primary); /* Lavanda Principal */
    color: var(--white);
    padding: 3rem 2rem; 
    border-radius: 12px;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
    position: relative; 
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.hover-card::after {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    height: 4px;
    background: var(--accent); /* Dorado */
    transform: scaleX(0); 
    transition: transform 0.4s ease; 
    transform-origin: left;
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(123, 104, 174, 0.3); /* Purple shadow */
}

.hover-card-num { 
    font-size: 3.5rem; 
    font-weight: 800; 
    color: rgba(255,255,255,0.1); /* Número de fondo sutil */
    position: absolute; 
    top: 1rem; 
    right: 1.5rem; 
    line-height: 1; 
}
.hover-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 0.75rem; }
.hover-card p { color: var(--gray-400); line-height: 1.65; font-size: 0.95rem; }

/* ========================================
   Servicios: Alternating Rows
   (Company #01 uses 3-col image cards)
======================================== */
.services-alt { background: var(--white); padding: 6rem 2rem; border-bottom: 1px solid var(--gray-200); }
.services-alt-rows { display: flex; flex-direction: column; gap: 5rem; }
.service-alt-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.service-alt-row:nth-child(even) { direction: rtl; }
.service-alt-row:nth-child(even) > * { direction: ltr; }
.service-alt-content h3 { font-size: 1.75rem; margin-bottom: 1rem; letter-spacing: -0.3px; }
.service-alt-content p { font-size: 1rem; color: var(--gray-600); line-height: 1.75; }
.service-alt-image { overflow: hidden; border-radius: 12px; }
.service-alt-image img {
    width: 100%; height: 400px; object-fit: cover; border-radius: 12px;
    transition: transform 0.6s ease;
}
.service-alt-image:hover img { transform: scale(1.04); }

/* ========================================
   Sectores: Icon Grid 4-col
   (Company #01 uses alternating numbered rows)
======================================== */
.sectores-grid { background: linear-gradient(135deg, #2A2040 0%, #160F25 100%); color: var(--white); padding: 6rem 2rem; }
.sectores-grid .section-eyebrow { color: var(--gray-400); }
.sectores-grid .section-header h2 { color: var(--white); }
.sectores-grid .section-header p { color: var(--gray-400); }
.sectores-icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.sector-icon-card {
    text-align: center; padding: 2.5rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.sector-icon-card:hover { background: rgba(255,255,255,0.05); transform: translateY(-4px); }
.sector-icon-emoji { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; }
.sector-icon-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.5rem; }
.sector-icon-card p { color: var(--gray-400); font-size: 0.9rem; line-height: 1.6; }

/* ========================================
   Cifras: Inline Horizontal
   (Company #01 uses 4-col card grid)
======================================== */
.cifras-inline { background: var(--gray-50); padding: 5rem 2rem; border-bottom: 1px solid var(--gray-200); }
.cifras-inline-content {
    display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: center;
}
.cifras-inline-numbers { display: flex; align-items: center; gap: 0; }
.cifra-inline-item { flex: 1; text-align: center; padding: 1.5rem 1rem; }
.cifra-inline-number { display: block; font-size: 2.75rem; font-weight: 800; color: var(--black); line-height: 1; margin-bottom: 0.35rem; }
.cifra-inline-label { font-size: 0.8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }
.cifra-inline-divider { width: 1px; height: 50px; background: var(--gray-200); flex-shrink: 0; }

/* ========================================
   CTA: Bordered Box
   (Company #01 uses gradient dark fill)
======================================== */
.cta-bordered { background: var(--white); padding: 5rem 2rem; }
.cta-bordered-box {
    max-width: 900px; margin: 0 auto; text-align: center;
    border: 2px solid var(--accent); border-radius: 16px; padding: 4rem 3rem;
    position: relative; overflow: hidden;
}
.cta-bordered-box::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 300px; height: 300px;
    border-radius: 50%; background: var(--gray-50); z-index: 0;
}
.cta-bordered-box > * { position: relative; z-index: 1; }
.cta-bordered-box h2 { font-size: 2.75rem; font-weight: 800; color: var(--black); margin-bottom: 1rem; letter-spacing: -1px; line-height: 1.1; }
.cta-bordered-box p { font-size: 1.05rem; color: var(--gray-600); margin-bottom: 2rem; line-height: 1.7; max-width: 600px; margin-left: auto; margin-right: auto; }
.btn-cta-dark { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2rem; background: var(--primary); color: var(--white); font-weight: 600; font-size: 1rem; border-radius: 8px; text-decoration: none; transition: all 0.3s; }
.btn-cta-dark:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(123,104,174,0.3); }
.btn-cta-dark-outline { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2rem; background: transparent; color: var(--primary); font-weight: 600; font-size: 1rem; border-radius: 8px; border: 2px solid var(--primary); text-decoration: none; transition: all 0.3s; }
.btn-cta-dark-outline:hover { background: var(--primary-light); }

/* ========================================
   Contact: Large Links (Dark)
======================================== */
.contact-large-links { text-align: center; padding: 7rem 2rem; background: linear-gradient(135deg, #2A2040 0%, #160F25 100%); color: var(--white); }
.contact-large-links h2 { color: var(--white); font-size: 3.5rem; margin-bottom: 2rem; letter-spacing: -1px; }
.contact-large-address { font-size: 1.35rem; color: var(--gray-400); line-height: 1.7; font-style: normal; margin-bottom: 1.5rem; }
.contact-large-schedule { margin-top: 1.5rem; }
.contact-large-schedule span { font-size: 1.1rem; color: var(--gray-500); }

/* ========================================
   Footer: Mega Grid (Light)
======================================== */
.footer-light { background: var(--gray-50); color: var(--gray-700); padding: 4rem 2rem 2rem; border-top: 1px solid var(--gray-200); }
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-mega-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--gray-200); }
.footer-col h4 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--black); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.9rem; color: var(--gray-500); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--black); }
.footer-about { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 0.25rem; }
.footer-bottom-bar { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; }
.footer-bottom-bar p { font-size: 0.85rem; color: var(--gray-500); margin: 0; }
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { font-size: 0.85rem; color: var(--gray-500); text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--black); }

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
    .hero-bottom h1 { font-size: 3rem; }
    .about-stats-row { gap: 2rem; }
    .about-centered-image { height: 350px; }
    .hover-cards-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .service-alt-row { grid-template-columns: 1fr; gap: 2rem; }
    .service-alt-row:nth-child(even) { direction: ltr; }
    .service-alt-image img { height: 300px; }
    .sectores-icon-grid { grid-template-columns: repeat(2, 1fr); }
    .cifras-inline-content { grid-template-columns: 1fr; gap: 2rem; }
    .cifras-inline-content .section-header { text-align: center; }
    .cifras-inline-numbers { flex-wrap: wrap; }
    .footer-mega-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .contact-large-links h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1rem; gap: 0; border-top: 1px solid var(--gray-200); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
    nav.active { display: flex; }
    nav a { padding: 0.875rem 0; border-bottom: 1px solid var(--gray-100); }
    nav a::after { display: none; }
    .btn-header { width: 100%; justify-content: center; margin-top: 0.5rem; }
    .header-container { position: relative; }
    section { padding: 4rem 1.5rem; }
    .hero-bottom { min-height: 70vh; padding: 4rem 1.5rem 3rem; }
    .hero-bottom h1 { font-size: 2.25rem; }
    .section-header h2 { font-size: 2.25rem; }
    .about-stats-row { flex-direction: column; gap: 1.5rem; }
    .about-centered-image { height: 250px; }
    .mvv-row { flex-direction: column; gap: 1rem; }
    .sectores-icon-grid { grid-template-columns: 1fr; }
    .cifras-inline-numbers { flex-direction: column; }
    .cifra-inline-divider { width: 60px; height: 1px; margin: 0 auto; }
    .cta-bordered-box { padding: 3rem 1.5rem; }
    .cta-actions { flex-direction: column; }
    .btn-cta, .btn-cta-dark, .btn-cta-dark-outline { width: 100%; }
    .contact-large-links { padding: 4rem 1.5rem; }
    .contact-large-links h2 { font-size: 2rem; }
    .contact-large-address { font-size: 1.1rem; }
    .footer-mega-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom-bar { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-legal-links { justify-content: center; }
}

/* ========================================
   ADDITIONAL VARIANT STYLES
======================================== */

/* Hero Classic */
.hero-classic { position: relative; min-height: 85vh; display: flex; align-items: center; padding: 10rem 2rem 6rem; overflow: hidden; }
.hero-classic .hero-container { position: relative; z-index: 1; max-width: 1200px; width: 100%; margin: 0 auto; }
.hero-classic h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -1px; color: var(--white); max-width: 650px; }
.hero-classic .hero-description { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 2rem; max-width: 520px; }

/* Hero Centered */
.hero-centered { position: relative; min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 6rem 2rem; overflow: hidden; }
.hero-centered .hero-container { max-width: 800px; text-align: center; position: relative; z-index: 1; }
.hero-centered h1 { font-size: 4rem; color: var(--white); margin-bottom: 1.5rem; }
.hero-centered p { font-size: 1.25rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

/* Hero Minimal */
.hero-minimal { min-height: 60vh; display: flex; align-items: center; justify-content: center; background: var(--gray-50); padding: 8rem 2rem; text-align: center; }
.hero-minimal-container { max-width: 900px; }
.hero-minimal h1 { font-size: 4.5rem; color: var(--black); letter-spacing: -2px; line-height: 1; margin-bottom: 2rem; }
.hero-minimal p { font-size: 1.35rem; color: var(--gray-500); max-width: 600px; margin: 0 auto; }

/* Hero Split */
.hero-split { display: flex; min-height: 100vh; background: linear-gradient(135deg, #2A2040 0%, #160F25 100%); }
.hero-split-content { flex: 1; display: flex; align-items: center; padding: 6rem 4rem 4rem; }
.hero-split-inner { max-width: 560px; margin-left: auto; }
.hero-split h1 { font-size: 3.5rem; color: var(--white); margin-bottom: 1.5rem; letter-spacing: -1px; line-height: 1.08; }
.hero-split p { font-size: 1.1rem; color: var(--gray-400); margin-bottom: 2.5rem; line-height: 1.7; }
.hero-split-image { flex: 1; position: relative; overflow: hidden; }
.hero-split-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* About Grid */
.about { background: var(--white); border-bottom: 1px solid var(--gray-200); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image img { width: 100%; height: 400px; object-fit: cover; border-radius: 12px; border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.about-content h2 { font-size: 2rem; margin-bottom: 1.25rem; }
.about-text { font-size: 1rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 2rem; }

/* About Timeline */
.about-timeline { background: var(--white); border-bottom: 1px solid var(--gray-200); }
.about-timeline-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.timeline { border-left: 2px solid var(--gray-200); padding-left: 2rem; }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before { content: ''; position: absolute; left: -2.55rem; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--black); border: 3px solid var(--white); }
.timeline-date { font-weight: 700; font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--gray-900); }
.timeline-item p { color: var(--gray-600); line-height: 1.7; }
.timeline-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 12px; }

/* MVV Dark Blocks */
.mvv-dark { background: linear-gradient(135deg, #2A2040 0%, #160F25 100%); padding: 6rem 2rem; }
.mvv-dark-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mvv-dark-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 2.5rem 2rem; transition: background 0.3s ease, transform 0.3s ease; }
.mvv-dark-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.mvv-dark-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gray-400); display: block; margin-bottom: 1rem; }
.mvv-dark-card p { color: var(--gray-300); font-size: 0.95rem; line-height: 1.7; }

/* MVV Cards (icon version from #01) */
.mvv-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mvv-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 2.5rem 2rem; text-align: center; position: relative; overflow: hidden; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s; }
.mvv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent); transform: scaleX(0); transition: transform 0.4s ease; }
.mvv-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(123,104,174,0.15); }
.mvv-card:hover::before { transform: scaleX(1); }
.mvv-icon { width: 60px; height: 60px; background: var(--primary-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.mvv-icon svg { width: 26px; height: 26px; color: currentColor; }
.mvv-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.mvv-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

/* Beneficios Icon Grid */
.beneficios-icons { background: var(--white); padding: 6rem 2rem; border-bottom: 1px solid var(--gray-200); }
.features-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.feature-box { padding: 2rem; border: 1px solid var(--gray-200); border-radius: 12px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.feature-box:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.feature-box-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-box h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature-box p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

/* Beneficios List */
.beneficios-list { background: var(--white); padding: 6rem 2rem; border-bottom: 1px solid var(--gray-200); }
.features-list { max-width: 900px; margin: 0 auto; }
.feature-list-item { display: flex; justify-content: space-between; align-items: center; padding: 2rem 0; border-bottom: 1px solid var(--gray-200); transition: padding 0.3s; }
.feature-list-item:hover { padding-left: 1rem; padding-right: 1rem; background: var(--gray-50); }
.feature-list-title { font-size: 1.75rem; font-weight: 700; color: var(--gray-900); }
.feature-list-desc { color: var(--gray-500); max-width: 400px; text-align: right; font-size: 0.95rem; line-height: 1.5; }

/* Services Dark Hover */
.services-dark { background: linear-gradient(135deg, #160F25 0%, #2A2040 100%); padding: 6rem 2rem; }
.features-cards-hover { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.features-cards-hover .hover-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.features-cards-hover .hover-card:hover { background: rgba(255,255,255,0.08); }

/* Sectores Minimal List */
.sectores-minimal { background: var(--white); padding: 6rem 2rem; border-bottom: 1px solid var(--gray-200); }
.sectores-min-list { max-width: 800px; margin: 0 auto; }
.sector-min-item { display: flex; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--gray-100); align-items: flex-start; transition: padding-left 0.3s ease; }
.sector-min-item:hover { padding-left: 0.5rem; }
.sector-min-item:last-child { border-bottom: none; }
.sector-min-num { font-size: 2.5rem; font-weight: 800; color: var(--gray-200); line-height: 1; min-width: 50px; transition: color 0.3s; }
.sector-min-item:hover .sector-min-num { color: var(--black); }
.sector-min-item h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.sector-min-item p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; }

/* Cifras Dark Big */
.cifras-dark { background: linear-gradient(135deg, #2A2040 0%, #160F25 100%); padding: 5rem 2rem; }
.cifras-dark-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; text-align: center; }
.cifra-dark-item { padding: 2rem; }
.cifra-dark-number { display: block; font-size: 4rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 0.5rem; }
.cifra-dark-label { font-size: 0.8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }

/* CTA Minimal */
.cta-minimal { background: var(--gray-50); padding: 6rem 2rem; text-align: center; border-bottom: 1px solid var(--gray-200); }
.cta-minimal h2 { font-size: 2.5rem; margin-bottom: 1.5rem; letter-spacing: -0.5px; }
.cta-min-link { font-size: 1.25rem; font-weight: 600; color: var(--black); text-decoration: none; border-bottom: 2px solid var(--black); padding-bottom: 4px; transition: border-color 0.3s; }
.cta-min-link:hover { border-color: var(--gray-400); }

/* Contact Large Phone */
.contact-large-phone { display: block; font-size: 2.5rem; color: var(--gray-300); text-decoration: none; margin: 1rem 0; transition: color 0.3s; }
.contact-large-phone:hover { color: var(--white); }

/* Contact Info + Items (used in contact section) */
.contact-info { max-width: 560px; }
.contact-eyebrow { display: inline-block; color: var(--gray-500); font-size: 0.75rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 0.75rem; }
.contact-info h2 { font-size: 2.75rem; font-weight: 800; letter-spacing: -1px; line-height: 1.1; margin-bottom: 0.75rem; }
.contact-intro { font-size: 1rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon { 
    width: 44px; 
    height: 44px; 
    min-width: 44px; 
    background: var(--primary-light); /* Fondo Lavanda Suave */
    color: var(--primary);
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.contact-item-icon svg { 
    width: 20px; 
    height: 20px; 
    color: currentColor; 
}
.contact-item-content { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-item-content .contact-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-500); }
.contact-item-content a,
.contact-item-content p,
.contact-item-content address { font-size: 0.95rem; color: var(--gray-800); text-decoration: none; font-style: normal; line-height: 1.5; }
.contact-item-content a:hover { color: var(--black); text-decoration: underline; }

/* Footer Centered Style */
.footer-centered-style { text-align: center; }
.footer-logo { display: block; font-size: 1.35rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.footer-desc { color: var(--gray-400); max-width: 500px; margin: 0 auto 2rem; line-height: 1.6; font-size: 0.95rem; }
.footer-links { display: flex; gap: 2rem; justify-content: center; margin-bottom: 2rem; }
.footer-links a { color: var(--gray-400); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom-line { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; }
.footer-bottom-line p { font-size: 0.85rem; color: var(--gray-500); margin: 0; }

/* Footer CTA style */
.footer-cta-style { background: var(--black); color: var(--white); padding: 5rem 2rem 2rem; }

/* ========================================
   RESPONSIVE FOR EXTRA VARIANTS
======================================== */
@media (max-width: 1024px) {
    .hero-classic { min-height: 70vh; padding: 9rem 1.5rem 5rem; }
    .hero-classic h1 { font-size: 3rem; }
    .hero-split { flex-direction: column; }
    .hero-split-content { padding: 8rem 2rem 4rem; }
    .hero-split-inner { margin-left: 0; max-width: 100%; }
    .hero-split-image { position: relative; min-height: 400px; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { order: -1; }
    .about-timeline-grid { grid-template-columns: 1fr; }
    .mvv-cards-grid, .mvv-dark-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .features-4col { grid-template-columns: repeat(2, 1fr); }
    .features-cards-hover { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .cifras-dark-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-centered h1, .hero-minimal h1 { font-size: 3rem; }
    .hero-bottom h1 { font-size: 2.25rem; }
    .hero-split h1 { font-size: 2.5rem; }
    .hero-minimal h1 { font-size: 3rem; }
    .about-stats { grid-template-columns: 1fr; gap: 1rem; }
    .about-stats-row { flex-direction: column; gap: 1.5rem; }
    .features-4col { grid-template-columns: 1fr; }
    .feature-list-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .feature-list-desc { text-align: left; }
    .cifras-dark-grid { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; gap: 1rem; }
    .contact-large-phone { font-size: 1.5rem; }
}
