/* =========================================================================
   MARIOTECH LANDING — SISTEMA DE DISEÑO VISUAL OFICIAL (SORA + INTER)
   ========================================================================= */

:root {
    /* Paleta Principal & Acentos */
    --color-bg-base: #ffffff;
    --color-bg-body: #ffffff;
    --color-bg-surface: #ffffff;
    --color-bg-subtle: #f8fafc;
    --color-bg-card: #ffffff;
    
    /* Colores de Marca & Acentos Tecnológicos */
    --color-primary: #7c3aed;
    --color-primary-dark: #6d28d9;
    --color-violet: #7c3aed;
    --color-violet-light: #a855f7;
    --color-violet-subtle: rgba(124, 58, 237, 0.08);
    --color-coral: #f43f5e;
    --color-blue: #2563eb;
    
    /* WhatsApp */
    --color-wa: #10b981;
    --color-wa-hover: #059669;
    --color-wa-glow: rgba(16, 185, 129, 0.35);

    /* Textos & Contraste */
    --color-text-title: #0a0f1d;
    --color-text-body: #334155;
    --color-text-muted: #64748b;
    --color-text-light: #94a3b8;
    --color-text-white: #ffffff;

    /* Bordes & Sombras */
    --border-color: rgba(226, 232, 240, 0.8);
    --border-card: #e2e8f0;
    --border-focus: rgba(124, 58, 237, 0.5);

    --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.06);
    --shadow-glow-violet: 0 12px 32px rgba(124, 58, 237, 0.18);
    --shadow-glow-wa: 0 8px 20px rgba(16, 185, 129, 0.25);

    /* Tipografía */
    --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

    /* Radios */
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --radius-pill: 9999px;

    /* Layout Expansivo */
    --container-max: 1480px;
}

/* Reset Global */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

section {
    scroll-margin-top: 88px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-body);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 78px; /* Espacio para barra fija móvil */
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

button, input, select, textarea {
    font-family: inherit;
}

/* Contenedor Expansivo */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

@media (max-width: 640px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 1024px) {
    .section-padding {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/* =========================================================================
   HEADER / NAVBAR (DISEÑO OFICIAL FIEL A LA REFERENCIA)
   ========================================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    border-bottom-color: rgba(226, 232, 240, 0.95);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    gap: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-symbol {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(124, 58, 237, 0.22);
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--color-text-title);
    line-height: 1.1;
}

.brand-subtitle {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.1px;
    margin-top: 2px;
}

.nav-links {
    display: none;
    list-style: none;
    align-items: center;
    gap: 40px;
}

@media (min-width: 900px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    letter-spacing: -0.1px;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
}

.nav-link:hover, .nav-link.active {
    color: #0a0f1d;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: #7c3aed;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }
}

.btn-nav-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 20px;
    background: #10b981;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    white-space: nowrap;
    border: none;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.24);
    transition: all 0.2s ease;
}

.btn-nav-whatsapp:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-nav-whatsapp:hover .svg-icon-wa {
    transform: scale(1.08);
}

.svg-icon-wa {
    flex-shrink: 0;
    transition: transform 0.22s ease;
}

/* =========================================================================
   HERO SECTION — PROPORCIÓN Y ESCALA OFICIAL (40% / 60%)
   ========================================================================= */
.hero-section {
    position: relative;
    padding-top: 48px;
    padding-bottom: 64px;
    background: #ffffff;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero-section {
        padding-top: 56px;
        padding-bottom: 74px;
        min-height: 600px;
        display: flex;
        align-items: center;
    }
}

/* Curva violeta de fondo en el Hero de la referencia */
.hero-curve-backdrop {
    position: absolute;
    top: 2%;
    right: -2%;
    width: 65%;
    height: 94%;
    background: radial-gradient(ellipse at 75% 50%, rgba(243, 232, 255, 0.65) 0%, rgba(248, 250, 252, 0.35) 60%, transparent 80%);
    border-radius: 50% 0 0 50% / 60% 0 0 60%;
    border-left: 2px solid rgba(192, 132, 252, 0.3);
    pointer-events: none;
    z-index: 0;
}

.hero-glow-ambient {
    position: absolute;
    top: -10%;
    right: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 40% 60%;
        gap: 20px;
    }
}

/* Lado Izquierdo: Textos */
.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    z-index: 2;
}

.hero-sparkle {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -1.6px;
    color: #0a0f1d;
    margin-bottom: 22px;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-headline {
        font-size: 60px;
        letter-spacing: -2.2px;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: clamp(68px, 5.3vw, 84px);
        letter-spacing: -2.8px;
    }
}

.headline-gradient {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subheadline {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 450;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 36px;
    max-width: 500px;
    width: 100%;
}

.subheadline-break {
    display: block;
}

@media (min-width: 768px) {
    .hero-subheadline {
        font-size: 21px;
    }
}

/* Grupo de Botones Hero Grandes */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-bottom: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.2s ease,
                border-color 0.2s ease;
    position: relative;
    text-decoration: none;
    user-select: none;
}

.btn:active {
    transform: scale(0.98) !important;
}

.btn-hero-whatsapp {
    height: 60px;
    padding: 0 32px;
    background: #10b981;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 16.5px;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.28);
    border: none;
}

.btn-hero-whatsapp:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.btn-hero-whatsapp:hover .btn-svg-wa {
    transform: scale(1.08);
}

.btn-svg-wa {
    flex-shrink: 0;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-location {
    height: 60px;
    padding: 0 28px;
    background: #ffffff;
    color: #0a0f1d;
    font-family: var(--font-body);
    font-size: 16.5px;
    font-weight: 700;
    border-radius: 12px;
    border: 1px solid #e3e6ed;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.btn-hero-location:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.btn-hero-location:hover .btn-svg-loc {
    transform: translateY(-2px);
}

.btn-svg-loc {
    flex-shrink: 0;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Teléfono Secundario */
.hero-phone-secondary {
    margin-top: 2px;
}

.hero-secondary-call-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
}

.hero-secondary-call-link strong {
    color: #0a0f1d;
    font-weight: 700;
    transition: color 0.2s ease;
}

.hero-secondary-call-link:hover {
    color: #7c3aed;
    transform: translateX(2px);
}

.hero-secondary-call-link:hover strong {
    color: #7c3aed;
}

.hero-phone-svg {
    transition: transform 0.22s ease;
}

.hero-secondary-call-link:hover .hero-phone-svg {
    transform: scale(1.1);
}

/* Lado Derecho: Imagen Hero Dominante */
.hero-visual-stage {
    position: relative;
    width: 100%;
}

.hero-photo-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-showcase-img {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
    object-position: right center;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.07));
}

/* =========================================================================
   HERO ENTRANCE & AMBIENT ANIMATIONS
   ========================================================================= */
@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(22px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroVisualEntrance {
    0% {
        opacity: 0;
        transform: translateX(24px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

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

@keyframes ambientGlowFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.12;
    }
    50% {
        transform: translate(-8px, 8px) scale(1.06);
        opacity: 0.18;
    }
}

@keyframes waHeroPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 18px rgba(16, 185, 129, 0.28);
    }
    50% {
        transform: scale(1.025);
        box-shadow: 0 8px 22px rgba(16, 185, 129, 0.38);
    }
}

.hero-anim-sparkle {
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.hero-anim-headline {
    animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.hero-anim-sub {
    animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.hero-anim-cta {
    animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}

.hero-anim-phone {
    animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.42s both;
}

.hero-anim-visual {
    animation: heroVisualEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-glow-ambient {
    animation: ambientGlowFloat 8s ease-in-out infinite;
}

#hero-cta-whatsapp {
    animation: waHeroPulse 1.35s ease-in-out 3 1.2s forwards;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.2s ease;
}

#hero-cta-whatsapp:hover {
    background: #059669;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 26px rgba(16, 185, 129, 0.45);
}

#hero-cta-whatsapp:active {
    transform: scale(0.98) !important;
}

@media (min-width: 1024px) {
    .hero-photo-container {
        animation: heroFloat 7s ease-in-out infinite 1.2s;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 64px;
    }
    .brand-title {
        font-size: 16.5px;
    }
    .brand-subtitle {
        font-size: 10px;
    }
    .hero-curve-backdrop {
        border-left: none;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        background: radial-gradient(circle at 90% 10%, rgba(243, 232, 255, 0.5) 0%, transparent 60%);
    }
    .hero-section {
        padding-top: 36px;
        padding-bottom: 44px;
    }
    .hero-headline {
        font-size: 46px;
        letter-spacing: -1.5px;
        line-height: 0.98;
        margin-bottom: 16px;
    }
    .hero-subheadline {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 26px;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 18px;
    }
    .btn-hero-whatsapp, .btn-hero-location {
        width: 100%;
        min-width: 100%;
        height: 58px;
        font-size: 16px;
    }
    .hero-phone-secondary {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .hero-secondary-call-link {
        font-size: 13.5px;
    }
    .hero-showcase-img {
        max-height: 280px;
        object-fit: cover;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .container.header-container {
        padding-left: 14px;
        padding-right: 14px;
    }
    .brand-logo {
        gap: 8px;
    }
    .logo-symbol {
        width: 36px;
        height: 36px;
        font-size: 15px;
        border-radius: 8px;
    }
    .brand-title {
        font-size: 16px;
    }
    .brand-subtitle {
        font-size: 10px;
    }
}

/* =========================================================================
   SECCIÓN SERVICIOS INMEDIATAMENTE DEBAJO (DISEÑO EDITORIAL DE REFERENCIA)
   ========================================================================= */
.services-preview-section {
    padding: 40px 0 70px 0;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.services-section-header {
    margin-bottom: 28px;
}

.services-eyebrow {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #7c3aed;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.services-headline {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    color: #0a0f1d;
    letter-spacing: -1px;
}

@media (min-width: 768px) {
    .services-headline {
        font-size: 40px;
        letter-spacing: -1.2px;
    }
}

.services-cards-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .services-cards-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.service-ref-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 22px 0 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease;
    min-height: 146px;
}

.service-ref-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.28);
}

.ref-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-right: 12px;
}

.ref-icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(124, 58, 237, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid rgba(124, 58, 237, 0.14);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.service-ref-card:hover .ref-icon-badge {
    transform: scale(1.08) translateY(-2px);
    background-color: #ede9fe;
}

.ref-card-title {
    font-family: var(--font-heading);
    font-size: 18.5px;
    font-weight: 800;
    color: #0a0f1d;
    margin-bottom: 2px;
    line-height: 1.2;
}

.ref-card-brands {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 600;
    color: #7c3aed;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.1px;
}

.ref-card-desc {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.4;
    max-width: 175px;
}

.ref-card-thumb {
    width: 130px;
    height: 120px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 14px 0 0 14px;
    background: #f8fafc;
    margin-right: -2px;
}

.thumb-crop-img {
    position: absolute;
    width: 340%;
    height: auto;
    display: block;
    max-width: none;
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-ref-card:hover .thumb-crop-img {
    transform: scale(1.04);
}

.crop-console {
    top: -12%;
    right: -135%;
}

.crop-phone {
    top: -55%;
    right: -12%;
}

.crop-laptop {
    top: -45%;
    left: -15%;
}

/* =========================================================================
   SECCIÓN SERVICIOS — DETALLES EDITORIALES (DISEÑO UNIFICADO)
   ========================================================================= */
.services-detail-section {
    background-color: #f8fafc;
    border-top: 1px solid #edf2f7;
    padding: 80px 0;
}

.services-experiences-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-experience-block {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .service-experience-block {
        padding: 44px;
    }
}

.service-experience-block:hover {
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
    border-color: #cbd5e1;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 960px) {
    .experience-grid {
        grid-template-columns: 1.05fr 1fr;
        gap: 48px;
    }
    .reverse-layout .experience-grid {
        grid-template-columns: 1fr 1.05fr;
    }
    .reverse-layout .experience-media-col {
        order: 2;
    }
    .reverse-layout .experience-info-col {
        order: 1;
    }
}

/* Media Col */
.experience-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.experience-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.experience-image-card:hover .experience-img {
    transform: scale(1.025);
}

.experience-badge-float {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 15, 29, 0.88);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-image-card:hover .experience-badge-float {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
}

/* Info Col */
.experience-badge-category {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #7c3aed;
    margin-bottom: 6px;
    display: block;
}

.experience-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: #0a0f1d;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .experience-title {
        font-size: 32px;
    }
}

.experience-brands-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin-bottom: 14px;
}

.brand-tag {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    background-color: #f1f5f9;
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.brand-tag:hover {
    background-color: #e2e8f0;
    border-color: #cbd5e1;
}

.experience-summary {
    font-family: var(--font-body);
    font-size: 15px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.experience-specs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 26px;
}

.experience-specs-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.spec-svg-bullet {
    flex-shrink: 0;
    margin-top: 3px;
}

.experience-specs-list li strong {
    color: #0a0f1d;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.experience-cta-wrap {
    display: flex;
    align-items: center;
}

.experience-cta-wrap .btn-hero-whatsapp {
    height: 52px;
    padding: 0 28px;
    font-size: 15.5px;
}

@media (max-width: 768px) {
    .experience-cta-wrap .btn-hero-whatsapp {
        width: 100%;
        min-width: 100%;
    }
}

/* =========================================================================
   PROTOCOLO DE SERVICIO (LÍNEA CONTINUA DE CONFIANZA)
   ========================================================================= */
.process-section {
    background-color: #ffffff;
    border-top: 1px solid #edf2f7;
    padding: 80px 0;
}

.section-heading-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px auto;
}

.section-main-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-top: 8px;
}

.process-timeline-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .process-timeline-track {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-timeline-track {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step-node {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 28px 22px;
    position: relative;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.02);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.28s ease;
}

.process-step-node:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(124, 58, 237, 0.09);
    border-color: rgba(124, 58, 237, 0.28);
}

.step-badge-num {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.08);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.step-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-node:hover .step-icon-wrap {
    transform: scale(1.08) translateY(-2px);
}

.step-card-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #0a0f1d;
    margin-bottom: 8px;
}

.step-card-content p {
    font-family: var(--font-body);
    font-size: 14px;
    color: #64748b;
    line-height: 1.55;
}

/* =========================================================================
   COTIZADOR RÁPIDO INTERACTIVO (DISEÑO UNIFICADO SORA + INTER)
   ========================================================================= */
.estimator-section {
    background-color: #f8fafc;
    border-top: 1px solid #edf2f7;
    padding: 80px 0;
}

.estimator-glass-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 24px;
    padding: 32px 20px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
    max-width: 820px;
    margin: 0 auto;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

@media (min-width: 640px) {
    .estimator-glass-card {
        padding: 48px;
    }
}

.estimator-header {
    text-align: center;
    margin-bottom: 28px;
}

.estimator-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #0a0f1d;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .estimator-title {
        font-size: 32px;
    }
}

.estimator-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: #64748b;
}

.estimator-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.estimator-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 10px;
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.2s ease,
                background-color 0.2s ease,
                box-shadow 0.2s ease,
                color 0.2s ease;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: #475569;
}

.estimator-svg-icon {
    stroke: #64748b;
    transition: stroke 0.2s ease, transform 0.22s ease;
}

.estimator-type-btn:hover:not(.active) {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: #0a0f1d;
    transform: translateY(-2px);
}

.estimator-type-btn.active {
    background-color: #f5f3ff;
    border-color: #7c3aed;
    color: #7c3aed;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.14);
    transform: scale(1.02);
}

.estimator-type-btn.active .estimator-svg-icon {
    stroke: #7c3aed;
    transform: scale(1.08);
}

.estimator-inputs-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 26px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: #0a0f1d;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: #0a0f1d;
    outline: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.2s ease;
}

.form-input:focus {
    border-color: #7c3aed;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.estimator-submit-wrap {
    display: flex;
    justify-content: center;
}

.estimator-submit-wrap .btn-hero-whatsapp {
    height: 56px;
    padding: 0 32px;
    font-size: 16px;
    width: auto;
}

@media (max-width: 768px) {
    .estimator-submit-wrap .btn-hero-whatsapp {
        width: 100%;
        min-width: 100%;
    }
}

/* =========================================================================
   UBICACIÓN FÍSICA PROTAGONISTA (SANTA TECLA)
   ========================================================================= */
.location-section {
    background-color: #ffffff;
    border-top: 1px solid #edf2f7;
    padding: 80px 0;
}

.location-unified-card {
    display: grid;
    grid-template-columns: 1fr;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

@media (min-width: 960px) {
    .location-unified-card {
        grid-template-columns: 1fr 1fr;
    }
}

.location-data-col {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .location-data-col {
        padding: 44px 36px;
    }
}

.location-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    transition: transform 0.22s ease;
}

.location-info-item:hover {
    transform: translateX(3px);
}

.info-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.22s ease, background-color 0.22s ease;
}

.location-info-item:hover .info-icon-badge {
    transform: scale(1.06);
    background-color: #ede9fe;
}

.info-label-title {
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7c3aed;
    margin-bottom: 4px;
    display: block;
}

.info-main-text {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #0a0f1d;
    line-height: 1.4;
    margin-bottom: 4px;
}

.info-sub-text {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #64748b;
}

.schedule-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    width: 100%;
    max-width: 320px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 13.5px;
    padding: 4px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.schedule-day {
    font-weight: 600;
    color: #0a0f1d;
}

.schedule-hours {
    font-family: var(--font-body);
    font-weight: 600;
    color: #475569;
}

.text-muted {
    color: #94a3b8;
}

.location-cta-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.btn-loc-maps, .btn-loc-waze {
    height: 48px;
    padding: 0 20px;
    background: #ffffff;
    color: #0a0f1d;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-loc-maps:hover, .btn-loc-waze:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.btn-loc-maps svg, .btn-loc-waze svg {
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-loc-maps:hover svg, .btn-loc-waze:hover svg {
    transform: translateY(-2px);
}

.location-cta-stack .btn-hero-whatsapp {
    height: 48px;
    padding: 0 24px;
    font-size: 14.5px;
}

@media (max-width: 768px) {
    .btn-loc-maps, .btn-loc-waze, .location-cta-stack .btn-hero-whatsapp {
        width: 100%;
        min-width: 100%;
        justify-content: center;
    }
}

/* Columna Mapa */
.location-map-col {
    position: relative;
    min-height: 400px;
    background: #e2e8f0;
    border-left: 1px solid #edf2f7;
}

.map-frame-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-iframe-element {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
    background-color: #0a0f1d;
    color: #94a3b8;
    padding-top: 70px;
    padding-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .footer-top-grid {
        grid-template-columns: 1.4fr 1fr 1.2fr;
        gap: 48px;
    }
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.footer-menu, .footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
}

.footer-menu a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
}

.footer-contact-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-contact-list a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-svg-icon {
    flex-shrink: 0;
}

.footer-bottom-bar {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    color: #64748b;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-bar {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-warranty-note {
    color: #94a3b8;
}

/* =========================================================================
   BARRA MÓVIL FIJA (STICKY BOTTOM BAR) — SMARTPHONES
   ========================================================================= */
.sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.1fr;
    gap: 8px;
    padding: 10px 14px 12px 14px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .sticky-mobile-bar {
        display: none;
    }
}

.mobile-action-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.mobile-action-pill:active {
    transform: scale(0.96);
}

.mobile-pill-wa {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.mobile-pill-call {
    background-color: #f8fafc;
    color: #0a0f1d;
    border: 1px solid #e2e8f0;
}

.mobile-pill-map {
    background-color: #f8fafc;
    color: #0a0f1d;
    border: 1px solid #e2e8f0;
}

/* =========================================================================
   SCROLL REVEAL SYSTEM (PROGRESSIVE ENHANCEMENT VIA INTERSECTION OBSERVER)
   ========================================================================= */
html.js-ready .reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

html.js-ready .reveal-on-scroll.reveal-from-left {
    transform: translateX(-24px);
}

html.js-ready .reveal-on-scroll.reveal-from-right {
    transform: translateX(24px);
}

html.js-ready .reveal-on-scroll.reveal-scale {
    transform: scale(0.97) translateY(18px);
}

html.js-ready .reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Stagger Delays */
html.js-ready .stagger-1 { transition-delay: 0.08s; }
html.js-ready .stagger-2 { transition-delay: 0.16s; }
html.js-ready .stagger-3 { transition-delay: 0.24s; }
html.js-ready .stagger-4 { transition-delay: 0.32s; }

/* =========================================================================
   ACCESIBILIDAD & REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    html.js-ready .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hero-photo-container,
    .hero-glow-ambient,
    #hero-cta-whatsapp,
    .hero-anim-sparkle,
    .hero-anim-headline,
    .hero-anim-sub,
    .hero-anim-cta,
    .hero-anim-phone,
    .hero-anim-visual {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
