﻿	/* ==========================================================================
   VARIABLES
   ========================================================================== */
   :root {
    /* Brand Colors */
    --color-white: #fefefe;
    --color-black: #0d0d0d;
    --color-blue: #2a6496;
    --color-gray-100: #b4b4b4;
    --color-gray-200: #a6a6a6;
    --color-gray-300: #737373;
    --color-gray-400: #4a4a4a;
    --color-yellow: #ffd21f;
    --color-navy: #0d2b3e;
    
    /* Backgrounds */
    --bg-main: #f8f9fb;
    --bg-light: #f0f2f5;
    --bg-dark: var(--color-navy);
 
    /* Typography */
    /* Descomentar Montserrat en index.html y cambiar aquí si se desea */
    --font-family-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    
    /* Spacing Scale (px to rem based on 16px base) */
    --space-0: 0;
    --space-4: 0.25rem;
    --space-8: 0.5rem;
    --space-10: 0.625rem;
    --space-12: 0.75rem;
    --space-16: 1rem;
    --space-20: 1.25rem;
    --space-24: 1.5rem;
    --space-32: 2rem;
    --space-48: 3rem;
    --space-64: 4rem;
    --space-96: 6rem;
 
    /* Border Radius */
    --br-12: 12px;
    --br-16: 16px;
    --br-full: 999px;
 
    /* Shadows (Soft) */
    --shadow-sm: 0 2px 8px rgba(4, 3, 3, 0.04);
    --shadow-md: 0 8px 24px rgba(4, 3, 3, 0.08);
    --shadow-lg: 0 16px 48px rgba(4, 3, 3, 0.12);
 
    /* Header Height for scroll padding */
    --header-height: 80px;
    --transition-speed: 0.3s;
}
 
/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
 
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    overflow-x: hidden;
    background-color: var(--color-black);
}
 
body {
    font-family: var(--font-family-base);
    color: var(--color-gray-400);
    background-color: var(--bg-main);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}
 
a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}
 
ul, ol {
    list-style: none;
}
 
img {
    max-width: 100%;
    height: auto;
    display: block;
}
 
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}
 
/* ==========================================================================
   ACCESSIBILITY & A11Y
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
 
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-yellow);
    color: var(--color-navy);
    padding: var(--space-12) var(--space-24);
    font-weight: bold;
    z-index: 10000;
    transition: top 0.2s ease;
}
 
.skip-link:focus {
    top: 0;
}
 
*:focus-visible {
    outline: 3px solid var(--color-blue);
    outline-offset: 3px;
}
 
/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-navy);
    line-height: 1.2;
    font-weight: 700;
}
 
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.text-navy { color: var(--color-navy); }
 
/* ==========================================================================
   UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-24);
}
 
.container-sm {
    max-width: 800px;
}
 
.section {
    padding: var(--space-64) 0;
}
 
.section-light {
    background-color: var(--bg-light);
}
 
/* Spacing Classes */
.mt-16 { margin-top: var(--space-16); }
.mt-24 { margin-top: var(--space-24); }
.mt-32 { margin-top: var(--space-32); }
.mt-48 { margin-top: var(--space-48); }
.mb-16 { margin-bottom: var(--space-16); }
.mb-24 { margin-bottom: var(--space-24); }
.mb-32 { margin-bottom: var(--space-32); }
.mb-48 { margin-bottom: var(--space-48); }
 
/* ==========================================================================
   COMPONENTS
   ========================================================================== */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-12) var(--space-24);
    border-radius: var(--br-full);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-speed) ease;
    text-align: center;
    gap: var(--space-8);
}
 
.btn-primary {
    background-color: var(--color-navy);
    color: var(--color-white);
}
 
.btn-primary:hover {
    background-color: #163f5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
 
.btn-secondary {
    background-color: var(--color-yellow);
    color: var(--color-navy);
}
 
.btn-secondary:hover {
    background-color: #e5bd1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
 
.btn-block {
    width: 100%;
}
 
/* Cards */
.card {
    background-color: var(--color-white);
    border-radius: var(--br-16);
    padding: var(--space-32);
    box-shadow: 0 12px 32px rgba(11, 45, 72, 0.08);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
 
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
 
.card-accent {
    border-left: 4px solid var(--color-blue);
}
 
/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(11, 45, 72, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
 
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
 
.logo {
    height: 40px;
    width: auto;
}
 
.logo-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
 
.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-32);
}
 
.nav-list {
    display: flex;
    gap: var(--space-24);
}
 
.nav-link {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
}
 
.nav-link:hover, 
.nav-link:focus {
    color: var(--color-blue);
}
 
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-8);
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}
 
.hamburger, 
.hamburger::before, 
.hamburger::after {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--color-yellow);
    position: absolute;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
 
.hamburger { top: 50%; left: 10px; transform: translateY(-50%); }
.hamburger::before { content: ''; top: -8px; left: 0; }
.hamburger::after { content: ''; top: 8px; left: 0; }
 
.mobile-menu-btn[aria-expanded="true"] .hamburger { background-color: transparent; }
.mobile-menu-btn[aria-expanded="true"] .hamburger::before { transform: translateY(8px) rotate(45deg); }
.mobile-menu-btn[aria-expanded="true"] .hamburger::after { transform: translateY(-8px) rotate(-45deg); }
 
@media (max-width: 767px) {
    .logo-text {
        display: none;
    }
}
/* HERO base */
.hero-slider-shell {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a2233;
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 24px;
}
 
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
 
.hero-slider-track {
    display: flex;
    height: 100%;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    touch-action: pan-y;
}
 
.hero-slider-slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    overflow: hidden;
}
 
.hero-slide-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0 80px 110px;
}
 
.hero-slide-title {
    margin: 0 0 18px;
    color: var(--color-white);
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    max-width: 720px;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}
 
.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--color-navy);
    color: var(--color-white);
    font-weight: 700;
    text-decoration: none;
    pointer-events: auto;
    position: relative;
    z-index: 3;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease, background var(--transition-speed) ease;
}
 
.hero-slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: #163f5a;
}
 
.hero-slider-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    opacity: 0.55;
    z-index: 0;
}
 
/* overlay elegante */
.hero-slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            rgba(4, 3, 3, 0.30) 0%,
            rgba(11, 45, 72, 0.10) 18%,
            rgba(11, 45, 72, 0.08) 52%,
            rgba(4, 3, 3, 0.42) 100%
        );
}
 
/* contenido */
.hero-slider-content-wrap {
    position: relative;
    z-index: 2;
}
 
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: auto;
}
 
.hero-content {
    max-width: 860px;
}
 
.hero-title {
    color: var(--color-white);
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
 
.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.75;
    max-width: 760px;
    margin-bottom: 32px;
}
 
.hero-bullets {
    margin-bottom: 32px;
    padding-left: 0;
    max-width: 760px;
}
 
.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    justify-content: flex-start;
    text-align: left;
    list-style: none;
}
 
.hero-bullet-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 5px;
}
 
.hero-bullets li span {
    display: block;
    color: rgba(255, 255, 255, 0.96);
}
 
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
 
/* puntos opcionales laterales */
.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
 
.hero-slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    background: transparent;
    opacity: 1;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}
 
.hero-slider-dot.is-active {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(255, 255, 255, 0.98);
    transform: scale(1.08);
}   
 
/* estados de drag */
.hero-slider.is-dragging {
    cursor: grabbing;
}
 
.hero-slider-track.is-animated {
    transition: transform 0.65s ease;
}
 
/* móvil */
@media (max-width: 767px) {
    .hero-slider-shell {
        min-height: 92vh;
        padding-top: calc(var(--header-height) + 18px);
        padding-bottom: 18px;
    }
 
    .hero-container {
        padding-left: 24px;
        padding-right: 24px;
    }
 
    .hero-content {
        max-width: 100%;
    }
 
    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3.5rem);
        line-height: 1.02;
    }
 
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 24px;
    }
 
    .hero-bullets {
        margin-bottom: 24px;
    }
 
    .hero-bullets li {
        margin-bottom: 12px;
    }
 
    .hero-actions {
        flex-direction: column;
    }
 
    .hero-actions .btn {
        width: 100%;
    }
 
    .hero-slide-content {
        padding: 0 24px 40px;
    }
 
    .hero-slide-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        margin-bottom: 14px;
        max-width: 100%;
    }
 
    .hero-slide-btn {
        width: auto;
        min-width: 140px;
        padding: 12px 22px;
    }
 
    .hero-slider-dot {
        width: 12px;
        height: 12px;
    }
 
}
 
/* ==========================================================================
   SECTIONS & GRIDS
   ========================================================================== */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-16);
}
 
.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-300);
}
 
/* Sobre Nosotros */
.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--space-32);
}
 
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-16);
}
 
.value-item {
    background-color: var(--color-white);
    padding: var(--space-24) var(--space-16);
    border-radius: var(--br-12);
    text-align: center;
    font-weight: 600;
    color: var(--color-navy);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-12);
}
 
.value-item i {
    font-size: 1.5rem;
    color: var(--color-blue);
}
 
/* Servicios */
.service-card {
    border-top: 4px solid var(--color-navy);
}
 
/* ==========================================================
   SERVICIOS - CARDS CON IMAGEN DE FONDO
   ========================================================== */
 
.service-card--image {
    position: relative;
    overflow: hidden;
    border-top: none;
    background-image: var(--service-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    min-height: 560px;
    padding: 0;
}
 
.service-card--image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(4, 3, 3, 0.82) 0%,
            rgba(4, 3, 3, 0.55) 35%,
            rgba(4, 3, 3, 0.20) 100%
        );
    z-index: 1;
}
 
.service-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 28px 24px;
}
 
.service-card--image .service-title,
.service-card--image .service-desc,
.service-card--image .service-subheading,
.service-card--image .service-list li {
    color: var(--color-white);
}
 
.service-card--image .service-title {
    margin: 0 0 18px;
    font-size: 1.45rem;
    line-height: 1.2;
    text-align: center;
}
 
.service-card--image .service-icon {
    width: 82px;
    height: 82px;
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
}
 
.service-card--image .service-icon-img {
    width: 54px;
    height: 54px;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
 
.service-card--image .service-desc,
.service-card--image .service-list,
.service-card--image .service-subheading {
    display: none;
}
 
.service-actions {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 0;
}
 
.service-more-btn,
.service-wa-btn {
    width: 100%;
}
 
.service-card--image .btn-secondary {
    background-color: var(--color-yellow);
    color: var(--color-navy);
}
 
.service-card--image .btn-secondary:hover {
    background-color: #e5bd1c;
}
 
@media (max-width: 768px) {
    .service-card--image,
    .service-card-content {
        min-height: 500px;
    }
 
    .service-card-content {
        padding: 22px 18px;
    }
 
    .service-card--image .service-title {
        font-size: 1.25rem;
    }
 
    .service-card--image .service-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 18px;
    }
 
    .service-card--image .service-icon-img {
        width: 46px;
        height: 46px;
    }
}
 
/* Proceso */
.process-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-32);
    text-align: center;
}
 
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
 
.step-number {
    width: 64px;
    height: 64px;
    background-color: var(--color-navy);
    color: var(--color-white);
    border-radius: var(--br-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-16);
    box-shadow: var(--shadow-md);
    z-index: 2;
}
 
/* ==========================================================
   TESTIMONIOS - SLIDER MANUAL
   ========================================================== */
 
#testimonios .testimonials-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}
 
#testimonios .testimonials-viewport {
    width: 100%;
    overflow: hidden;
}
 
#testimonios .testimonials-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}
 
#testimonios .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    padding: var(--space-32);
    border-radius: 24px;
    box-sizing: border-box;
}
 
#testimonios .testimonial-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
 
#testimonios .testimonial-person {
    display: flex;
    align-items: center;
    gap: 16px;
}
 
#testimonios .testimonial-photo-wrap {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #e9eef2;
	
	box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    border: 2px solid rgba(255,255,255,0.6);
}
 
#testimonios .testimonial-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
 
#testimonios .testimonial-person-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
 
#testimonios .testimonial-name {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.2;
}
 
#testimonios .testimonial-role {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-gray-400);
}
 
#testimonios .testimonial-company-logo-wrap {
    width: 110px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
 
#testimonios .testimonial-company-logo {
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
    display: block;
}
 
#testimonios .stars {
    color: var(--color-yellow);
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: var(--space-16);
}
 
#testimonios .testimonial-text {
    margin: 0;
    font-style: italic;
    line-height: 1.7;
}
 
#testimonios .testimonial-author {
    margin-bottom: 0;
}
 
#testimonios .testimonial-nav {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 1.35rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
}
 
#testimonios .testimonial-nav:hover {
    transform: scale(1.05);
    opacity: 0.95;
}
 
#testimonios .testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}
 
#testimonios .testimonial-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(11, 45, 72, 0.22);
    cursor: pointer;
    transition: transform var(--transition-speed) ease, background var(--transition-speed) ease;
}
 
#testimonios .testimonial-dot.is-active {
    background: var(--color-navy);
    transform: scale(1.1);
}
 
@media (max-width: 767px) {
    #testimonios .container {
        overflow: hidden;
    }
 
    #testimonios .testimonials-slider {
        display: block;
        position: relative;
    }
 
    #testimonios .testimonials-viewport {
        width: 100%;
        overflow: hidden;
    }
 
    #testimonios .testimonials-track {
        display: flex;
    }
 
    #testimonios .testimonial-card {
        flex: 0 0 100%;
        width: 100%;
        padding: 20px 16px;
        border-radius: 18px;
    }
 
    #testimonios .testimonial-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 14px;
    }
 
    #testimonios .testimonial-person {
        width: 100%;
        align-items: center;
        gap: 12px;
    }
 
    #testimonios .testimonial-photo-wrap {
        width: 56px;
        height: 56px;
        min-width: 56px;
        min-height: 56px;
    }
 
    #testimonios .testimonial-name {
        font-size: 0.95rem;
        line-height: 1.2;
    }
 
    #testimonios .testimonial-role {
        font-size: 0.84rem;
        line-height: 1.3;
    }
 
    #testimonios .testimonial-company-logo-wrap {
        width: 100%;
        min-height: 34px;
        justify-content: flex-start;
    }
 
    #testimonios .testimonial-company-logo {
        max-width: 110px;
        max-height: 28px;
    }
 
    #testimonios .stars {
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
 
    #testimonios .testimonial-text {
        font-size: 0.94rem;
        line-height: 1.6;
    }
 
    #testimonios .testimonial-author {
        margin-top: 12px;
        font-size: 0.9rem;
    }
 
    #testimonios .testimonial-nav {
        position: absolute;
        top: 42%;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
        z-index: 4;
    }
 
    #testimonios .testimonial-prev {
        left: 6px;
    }
 
    #testimonios .testimonial-next {
        right: 6px;
    }
 
    #testimonios .testimonial-dots {
        margin-top: 16px;
        gap: 8px;
    }
 
    #testimonios .testimonial-dot {
        width: 10px;
        height: 10px;
    }
}
 
@media (max-width: 479px) {
    #testimonios .testimonial-card {
        padding: 18px 14px;
    }
 
    #testimonios .testimonial-photo-wrap {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
    }
 
    #testimonios .testimonial-company-logo {
        max-width: 100px;
        max-height: 24px;
    }
 
    #testimonios .testimonial-nav {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
 
    #testimonios .testimonial-prev {
        left: 4px;
    }
 
    #testimonios .testimonial-next {
        right: 4px;
    }
}
/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}
 
.faq-item {
    background-color: var(--color-white);
    border-radius: var(--br-12);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
 
.faq-item h3 {
    margin: 0;
}
 
.faq-button {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: var(--space-16) var(--space-24);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-navy);
}
 
.faq-button:hover, .faq-button:focus-visible {
    background-color: var(--bg-light);
}
 
.faq-icon {
    transition: transform var(--transition-speed) ease;
    color: var(--color-blue);
}
 
.faq-button[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}
 
.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease;
    visibility: hidden;
}
 
.faq-panel:not([hidden]) {
    visibility: visible;
}
 
.faq-content {
    padding: 0 var(--space-24) var(--space-24);
    color: var(--color-gray-400);
}
 
/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-64);
}
 
.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-20);
}
 
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-16);
    font-weight: 500;
}
 
.contact-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}
 
.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.5;
}
 
.contact-text span {
    display: block;
}
 
/* Mapa */
.contact-map-wrap {
    margin-top: var(--space-32);
}
 
.contact-map-title {
    margin-bottom: var(--space-16);
    font-size: 1.125rem;
    color: var(--color-navy);
}
 
.contact-map-embed {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    background-color: var(--color-white);
}
 
.contact-map-embed iframe {
    display: block;
    width: 100%;
    border: 0;
}
 
.form-group {
    margin-bottom: var(--space-16);
}
 
.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: var(--space-8);
}
 
.required {
    color: #e53e3e;
}
 
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-12) var(--space-16);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--br-12);
    background-color: var(--color-white);
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
 
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(42, 100, 150, 0.18);
}
 
.error-message {
    display: block;
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: var(--space-4);
    height: 20px;
}
 
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #e53e3e;
}
 
.form-status {
    text-align: center;
    font-weight: 600;
}
.status-success { color: #38a169; }
.status-error { color: #e53e3e; }
 
/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--color-navy);
    color: var(--color-gray-100);
    padding: var(--space-64) 0 var(--space-24);
}
 
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-48);
    margin-bottom: var(--space-48);
}
 
.footer-logo {
    height: 120px;
    width: auto;
    display: block;
    filter: none;
}
 
.footer-title {
    color: var(--color-white);
    margin-bottom: var(--space-16);
    font-size: 1.125rem;
}
 
.footer-links li {
    margin-bottom: var(--space-8);
}
 
.footer-links a:hover {
    color: var(--color-blue);
}
 
.social-icons {
    display: flex;
    gap: var(--space-16);
}
 
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--br-full);
    background-color: var(--color-gray-400);
    color: var(--color-white);
}
 
.social-icons a:hover {
    background-color: var(--color-blue);
    transform: translateY(-2px);
}
 
.social-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}
 
.footer-bottom {
    text-align: center;
    padding-top: var(--space-24);
    border-top: 1px solid var(--color-gray-400);
    font-size: 0.875rem;
}
 
/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
 
/* <= 479px (Smartphones Small) */
@media (max-width: 479px) {
    .social-icons {
        justify-content: center;
    }
    .footer-logo {
        margin: 0 auto var(--space-16);
    }
}
 
/* 480px - 767px (Smartphones Large / Tablets Portrait) */
@media (max-width: 767px) {
    .header-container {
        position: relative;
    }
    
    .mobile-menu-btn {
        display: block;
    }
 
    .main-nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: #0d2b3e;
        flex-direction: column;
        padding: var(--space-24);
        box-shadow: var(--shadow-md);
        gap: var(--space-24);
        
        /* Mobile Menu Animation */
        transform: translateY(-150%);
        opacity: 0;
        transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
        visibility: hidden;
    }
 
    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
 
    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: var(--space-16);
    }
 
    .nav-cta {
        width: 100%;
    }
 
    .hero-container {
    max-width: 100%;
    min-height: auto;
    padding-left: 24px;
    padding-right: 24px;
    text-align: left;
    }
 
    .hero-content {
        max-width: 100%;
    }
 
    .hero-title {
        font-size: clamp(2.1rem, 9vw, 3.4rem);
        line-height: 1.02;
    }
 
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.65;
    }
 
    .hero-bullets li {
        justify-content: flex-start;
        text-align: left;
    }
 
    .about-grid {
        grid-template-columns: 1fr;
    }
 
    .contact-grid {
        grid-template-columns: 1fr;
    }
 
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
}
 
/* 768px - 1023px (Tablets Landscape / Small Laptops) */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-list {
        gap: var(--space-12);
    }
    .main-nav {
        gap: var(--space-16);
    }
    .nav-link {
        font-size: 0.875rem;
    }
    .nav-cta {
        padding: var(--space-8) var(--space-16);
        font-size: 0.875rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
}
 
/* >= 1280px (Large Desktops) */
@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }
}
/* ==========================================================
   SERVICIOS - SLIDER FULL WIDTH
   ========================================================== */
 
.services-section {
    position: relative;
}
 
/* Si antes services-grid era grid, anulamos eso para esta seccion */
.services-grid {
    display: block;
}
 
/* Contenedor full width fuera del limite visual del .container */
.services-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
    padding: 10px 0;
}
 
.services-slider.is-dragging {
    cursor: grabbing;
}
 
/* Fila horizontal que se mueve */
.services-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: max-content;
    will-change: transform;
    padding: 8px 24px;
}
 
/* Degradado elegante en bordes */
.services-slider::before,
.services-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}
 
.services-slider::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fb 0%, rgba(248, 249, 251, 0) 100%);
}
 
.services-slider::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fb 0%, rgba(248, 249, 251, 0) 100%);
}

.services-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 999px;
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 48px;
    text-align: center;
    opacity: 0.85;
    transition: opacity 0.2s, background 0.2s;
}

.services-arrow:hover {
    background: var(--color-blue);
    opacity: 1;
}

.services-arrow--left {
    left: 18px;
}

.services-arrow--right {
    right: 18px;
}

@media (max-width: 768px) {
    .services-arrow {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .services-arrow--left {
        left: 8px;
    }

    .services-arrow--right {
        right: 8px;
    }
}
 
/* Cards con ancho fijo para que no se deformen */
.services-track .service-card {
    flex: 0 0 370px;
    width: 370px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px 24px;
    border-radius: 22px;
    box-sizing: border-box;
}
 
/* Icono del servicio */
.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(13, 43, 62, 0.08);
    flex-shrink: 0;
}
 
.service-icon-img {
    width: 38px;
    height: 38px;
    display: block;
    object-fit: contain;
}
 
/* Espaciado interno de contenido */
.service-title {
    margin: 0 0 14px;
}
 
.service-desc {
    margin: 0 0 16px;
}
 
.service-list {
    margin: 0 0 18px;
    padding-left: 18px;
}
 
.service-list li + li {
    margin-top: 8px;
}
 
.service-subheading {
    margin-bottom: 10px;
}
 
/* Boton reutilizando tus clases existentes */
.service-wa-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}
 
/* Evita seleccionar texto al arrastrar el carrusel */
.services-slider *,
.services-slider *::before,
.services-slider *::after {
    user-select: none;
    -webkit-user-select: none;
}
 
/* Permitir interaccion normal en botones y links */
.services-slider a,
.services-slider button {
    pointer-events: auto;
}
 
/* Responsive */
@media (max-width: 1024px) {
    .services-track .service-card {
        flex: 0 0 340px;
        width: 340px;
    }
}
 
@media (max-width: 768px) {
    .services-slider::before,
    .services-slider::after {
        width: 42px;
    }
 
    .services-track {
        gap: 18px;
        padding: 8px 16px;
    }
 
    .services-track .service-card {
        flex: 0 0 300px;
        width: 300px;
        padding: 22px 18px;
        border-radius: 18px;
    }
 
    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
 
    .service-icon-img {
        width: 32px;
        height: 32px;
    }
}
 
@media (max-width: 480px) {
    .services-track .service-card {
        flex: 0 0 85vw;
        width: 85vw;
    }
}
 
/* ==========================================================
   POR QU� ELEGIRNOS - SLIDER INFINITO
   ========================================================== */
 
#por-que-elegir {
    position: relative;
    overflow: hidden;
}
 
/* El titulo sigue dentro del container, pero el slider recorre toda la pantalla */
#por-que-elegir .reasons-slider {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 8px 0;
}
 
/* Anula el grid viejo solo para esta nueva estructura */
#por-que-elegir .reasons-track {
    display: flex;
    align-items: stretch;
    gap: var(--space-24);
    width: max-content;
    padding: 8px 24px;
    animation: reasonsScroll 50s linear infinite;
}
 
/* Card con proporcion mas cercana a tu diseno original */
#por-que-elegir .reason-card {
    flex: 0 0 170px;
    width: 170px;
    min-height: 0;
    padding: var(--space-24) var(--space-16);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
 
/* Corrige el tamano real del SVG */
#por-que-elegir .reason-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-16);
    object-fit: contain;
    flex-shrink: 0;
}
 
/* Mantiene el texto compacto y centrado */
#por-que-elegir .reason-card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.2;
}
 
/* Animacion continua */
@keyframes reasonsScroll {
    from {
        transform: translateX(calc(-50% - 12px));
    }
    to {
        transform: translateX(0);
    }
}
 
/* Responsive */
@media (max-width: 767px) {
    #por-que-elegir .reasons-track {
        gap: 18px;
        padding: 8px 16px;
        animation-duration: 34s;
    }
 
    #por-que-elegir .reason-card {
        flex: 0 0 150px;
        width: 150px;
        padding: 20px 14px;
    }
 
    #por-que-elegir .reason-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }
 
    #por-que-elegir .reason-card h3 {
        font-size: 0.95rem;
    }
}
 
@media (max-width: 479px) {
    #por-que-elegir .reasons-track {
        gap: 14px;
        animation-duration: 28s;
    }
 
    #por-que-elegir .reason-card {
        flex: 0 0 138px;
        width: 138px;
        padding: 18px 12px;
    }
 
    #por-que-elegir .reason-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 12px;
    }
 
    #por-que-elegir .reason-card h3 {
        font-size: 0.9rem;
    }
}
 
/* ==========================================================
   PROCESO DE TRABAJO - ANIMACI�N ELEGANTE
   ========================================================== */
 
#proceso .process-list {
    position: relative;
}
 
#proceso .process-step {
    position: relative;
}
 
/* Circulo */
#proceso .process-step .step-number {
    position: relative;
    z-index: 3;
    overflow: visible;
    animation: processNodeGlow 10s infinite ease-in-out;
    animation-play-state: paused;
    will-change: transform, box-shadow, filter;
}
 
/* Halo exterior */
#proceso .process-step .step-number::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 999px;
    background: radial-gradient(
        circle,
        rgba(42, 100, 150, 0.25) 0%,
        rgba(42, 100, 150, 0.10) 45%,
        rgba(42, 100, 150, 0.00) 75%
    );
    opacity: 0;
    transform: scale(0.82);
    animation: processNodeHalo 10s infinite ease-in-out;
    animation-play-state: paused;
    pointer-events: none;
    z-index: -1;
}
 
/* Linea base entre pasos */
#proceso .process-step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 31px;
    left: calc(50% + 34px);
    width: calc(100% - 68px);
    border-top: 3px dashed rgba(42, 100, 150, 0.22);
    z-index: 1;
}
 
/* Linea animada elegante */
#proceso .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 31px;
    left: calc(50% + 34px);
    width: calc(100% - 68px);
    border-top: 3px dashed rgba(42, 100, 150, 0.90);
    transform: scaleX(0);
    transform-origin: left center;
    opacity: 0;
    filter: drop-shadow(0 0 6px rgba(42, 100, 150, 0.25));
    animation: processPathDraw 10s infinite ease-in-out;
    animation-play-state: paused;
    z-index: 2;
}
 
/* Activar cuando entra en pantalla */
#proceso.is-in-view .process-step .step-number,
#proceso.is-in-view .process-step .step-number::before,
#proceso.is-in-view .process-step:not(:last-child)::after {
    animation-play-state: running;
}
 
/* Delays de los circulos */
#proceso .process-step:nth-child(1) .step-number,
#proceso .process-step:nth-child(1) .step-number::before {
    animation-delay: 0s;
}
 
#proceso .process-step:nth-child(2) .step-number,
#proceso .process-step:nth-child(2) .step-number::before {
    animation-delay: 2s;
}
 
#proceso .process-step:nth-child(3) .step-number,
#proceso .process-step:nth-child(3) .step-number::before {
    animation-delay: 4s;
}
 
#proceso .process-step:nth-child(4) .step-number,
#proceso .process-step:nth-child(4) .step-number::before {
    animation-delay: 6s;
}
 
#proceso .process-step:nth-child(5) .step-number,
#proceso .process-step:nth-child(5) .step-number::before {
    animation-delay: 8s;
}
 
/* Delays de las lineas */
#proceso .process-step:nth-child(1)::after {
    animation-delay: 1s;
}
 
#proceso .process-step:nth-child(2)::after {
    animation-delay: 3s;
}
 
#proceso .process-step:nth-child(3)::after {
    animation-delay: 5s;
}
 
#proceso .process-step:nth-child(4)::after {
    animation-delay: 7s;
}
 
/* Encendido elegante del nodo */
@keyframes processNodeGlow {
    0%, 14%, 100% {
        transform: scale(1);
        filter: brightness(1);
        box-shadow:
            0 0 0 rgba(42, 100, 150, 0),
            0 0 0 rgba(42, 100, 150, 0);
    }
 
    5%, 10% {
        transform: scale(1.12);
        filter: brightness(1.08);
        box-shadow:
            0 0 0 8px rgba(42, 100, 150, 0.10),
            0 0 22px rgba(42, 100, 150, 0.28);
    }
}
 
/* Halo del nodo */
@keyframes processNodeHalo {
    0%, 14%, 100% {
        opacity: 0;
        transform: scale(0.82);
    }
 
    5%, 10% {
        opacity: 1;
        transform: scale(1.18);
    }
}
 
/* Dibujo suave de la linea */
@keyframes processPathDraw {
    0%, 8%, 100% {
        opacity: 0;
        transform: scaleX(0);
    }
 
    12%, 18% {
        opacity: 1;
        transform: scaleX(1);
    }
 
    22%, 100% {
        opacity: 0.55;
        transform: scaleX(1);
    }
}
 
/* Un poco de presencia al titulo activo */
#proceso .process-step h3 {
    transition: color 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}
 
#proceso.is-in-view .process-step:nth-child(1) h3 {
    animation: processTitleGlow 10s infinite ease-in-out;
    animation-delay: 0s;
}
#proceso.is-in-view .process-step:nth-child(2) h3 {
    animation: processTitleGlow 10s infinite ease-in-out;
    animation-delay: 2s;
}
#proceso.is-in-view .process-step:nth-child(3) h3 {
    animation: processTitleGlow 10s infinite ease-in-out;
    animation-delay: 4s;
}
#proceso.is-in-view .process-step:nth-child(4) h3 {
    animation: processTitleGlow 10s infinite ease-in-out;
    animation-delay: 6s;
}
#proceso.is-in-view .process-step:nth-child(5) h3 {
    animation: processTitleGlow 10s infinite ease-in-out;
    animation-delay: 8s;
}
 
@keyframes processTitleGlow {
    0%, 14%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
 
    5%, 10% {
        transform: translateY(-2px);
        opacity: 1;
    }
}
 
/* Movil: quitamos lineas si se desordenan */
@media (max-width: 767px) {
    #proceso .process-step:not(:last-child)::before,
    #proceso .process-step:not(:last-child)::after {
        display: none;
    }
}
 
/* ==========================================================
   CONTACTO + FOOTER - AJUSTE M�VIL
   ========================================================== */
 
@media (max-width: 767px) {
    #contacto .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
 
    #contacto .contact-info,
    #contacto .contact-form-container {
        width: 100%;
        min-width: 0;
    }
 
    #contacto .section-title {
        margin-bottom: 12px;
    }
 
    #contacto .contact-details {
        gap: 16px;
    }
 
    #contacto .contact-item {
        display: grid;
        grid-template-columns: 20px 1fr;
        align-items: start;
        gap: 12px;
    }
 
    #contacto .contact-icon {
        width: 20px;
        height: 20px;
        margin-top: 2px;
    }
 
    #contacto .contact-text {
        gap: 2px;
        min-width: 0;
    }
 
    #contacto .contact-text span {
        font-size: 0.95rem;
        line-height: 1.45;
        word-break: break-word;
        overflow-wrap: anywhere;
    }
 
    #contacto .contact-map-wrap {
        margin-top: 24px;
    }
 
    #contacto .contact-map-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
 
    #contacto .contact-map-embed {
        border-radius: 16px;
    }
 
    #contacto .contact-map-embed iframe {
        height: 240px;
    }
 
    #contacto .contact-form-container {
        padding: 20px 16px;
        border-radius: 18px;
    }
 
    #contacto .form-group label {
        font-size: 0.92rem;
    }
 
    #contacto input,
    #contacto select,
    #contacto textarea {
        font-size: 16px;
    }
 
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
 
    .footer-brand,
    .footer-links,
    .footer-social {
        width: 100%;
        min-width: 0;
    }
 
    .social-icons {
        flex-wrap: wrap;
        gap: 10px;
    }
 
    .social-icons a {
        width: 40px;
        height: 40px;
    }
 
    .social-icon-img {
        width: 18px;
        height: 18px;
    }
}
 
@media (max-width: 479px) {
    #contacto .contact-item {
        grid-template-columns: 18px 1fr;
        gap: 10px;
    }
 
    #contacto .contact-icon {
        width: 18px;
        height: 18px;
    }
 
    #contacto .contact-text span {
        font-size: 0.9rem;
    }
 
    #contacto .contact-map-embed iframe {
        height: 210px;
    }
 
    #contacto .contact-form-container {
        padding: 18px 14px;
    }
}
 
/* ==========================================================
   CIFRAS / CONTADORES
   ========================================================== */
 
#cifras .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-24);
}
 
#cifras .stat-card {
    padding: 32px 24px;
    border-radius: 22px;
}
 
#cifras .stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 12px;
    color: var(--color-navy);
    font-weight: 800;
    line-height: 1;
}
 
#cifras .counter {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}
 
#cifras .stat-plus {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--color-yellow);
    font-weight: 800;
}
 
#cifras .stat-label {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--color-gray-400);
    font-weight: 600;
}
 
@media (max-width: 767px) {
    #cifras .stats-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
 
    #cifras .stat-card {
        padding: 24px 18px;
        border-radius: 18px;
    }
 
    #cifras .stat-label {
        font-size: 0.95rem;
    }
}
 
/* ==========================================================
   CERTIFICACIONES Y RESPALDOS - SLIDER INFINITO
   ========================================================== */
 
#certificaciones .certifications-slider {
    width: 100%;
    overflow: hidden;
    padding: 6px 0;
}
 
#certificaciones .certifications-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    will-change: transform;
}
 
#certificaciones .certification-logo-item {
    flex: 0 0 220px;
    width: 220px;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 18px;
    background: transparent;
}
 
#certificaciones .certification-logo-img {
    width: 100%;
    max-width: 170px;
    max-height: 58px;
    object-fit: contain;
    display: block;
}
 
#certificaciones .certifications-actions {
    display: flex;
    justify-content: center;
}
 
 
/* Responsive */
@media (max-width: 767px) {
    #certificaciones .certifications-track {
    gap: 18px;
}
 
    #certificaciones .certification-logo-item {
        flex: 0 0 170px;
        width: 170px;
        min-height: 74px;
        padding: 10px 14px;
    }
 
    #certificaciones .certification-logo-img {
        max-width: 125px;
        max-height: 42px;
    }
 
    #certificaciones .certifications-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
 
@media (max-width: 479px) {
    #certificaciones .certification-logo-item {
        flex: 0 0 150px;
        width: 150px;
        min-height: 68px;
    }
 
    #certificaciones .certification-logo-img {
        max-width: 110px;
        max-height: 38px;
    }
}
 
/* ==========================================================
   WHATSAPP FLOAT
   ========================================================== */
 
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
 
    width: 60px;
    height: 60px;
 
    border-radius: 50%;
    background: #25D366;
 
    display: flex;
    align-items: center;
    justify-content: center;
 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
 
    z-index: 9999;
    border: none;
    padding: 0;
 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: whatsappPulse 2.2s ease-in-out infinite;
}
 
.whatsapp-float img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}
 
.whatsapp-float:hover {
    animation: none;
    transform: scale(1.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}
 
.whatsapp-float:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.35);
    outline-offset: 4px;
}
 
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
}
 
/* Movil */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 78px;
        right: 16px;
    }
 
    .whatsapp-float img {
        width: 72%;
        height: 72%;
    }
}
 
/* ==========================================================
   RECAPTCHA
   ========================================================== */
 
.g-recaptcha {
    margin-top: 8px;
}
 
@media (max-width: 479px) {
    .g-recaptcha {
        transform: scale(0.92);
        transform-origin: left top;
    }
}
 
/* ==========================================================
   COOKIE FLOAT CARD
   ========================================================== */
 
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
 
    width: 100%;
    max-width: 640px;
 
    background: #0b2d48;
    color: #fff;
 
    border-radius: 16px;
    padding: 18px 20px;
 
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
 
    z-index: 9998;
 
    display: none;
    animation: cookieSlideUp 0.4s ease;
}
 
.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
 
.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}
 
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
 
/* Animación */
@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
 
/* 📱 MÓVIL */
@media (max-width: 767px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        transform: none;
        max-width: none;
        bottom: 20px;
    }
 
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
 
    .cookie-actions {
        width: 100%;
    }
 
    .cookie-actions button {
        flex: 1;
    }
}
 
/* ==========================
   DROPDOWN SERVICIOS
========================== */
 
.nav-item-dropdown {
    position: relative;
}
 
/* menú oculto */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
 
    background: white;
    min-width: 260px;
 
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
 
    padding: 12px 0;
 
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
 
    transition: all 0.25s ease;
    z-index: 999;
    
    max-height: 420px;
    overflow-y: auto;
}
 
/* links */
.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 0.95rem;
    color: var(--color-gray-400);
    transition: background 0.2s ease, color 0.2s ease;
}
 
/* hover item */
.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--color-navy);
}
 
/* activar dropdown */
.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
@media (max-width: 767px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
        margin-top: 10px;
    }
 
    .dropdown-menu li a {
        padding: 10px 0;
    }
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
 
    width: 0%;
    height: 2px;
 
    background-color: var(--color-blue);
 
    transform: translateX(-50%);
    transition: width 0.3s ease;
}
 
.nav-link:hover::after,
.nav-item-dropdown:hover > .nav-link::after {
    width: 100%;
}
 
/* ==========================
           ESTILOS SOLO PARA ESTA PÁGINAS DE SERVICIOS
        ========================== */
 
        .service-page-hero {
            padding-top: calc(var(--header-height) + var(--space-48));
            padding-bottom: var(--space-64);
            background: linear-gradient(180deg, #0d2b3e 0%, #163f5a 100%);
            color: var(--color-white);
        }
 
        .service-page-hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: var(--space-48);
            align-items: center;
        }
 
        .service-page-kicker {
            color: rgba(255,255,255,0.78);
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: var(--space-16);
            font-size: 0.85rem;
        }
 
        .service-page-title {
            color: var(--color-white);
            font-size: clamp(2rem, 4vw, 3.4rem);
            line-height: 1.1;
            margin-bottom: var(--space-24);
        }
 
        .service-page-subtitle {
            color: rgba(255,255,255,0.88);
            font-size: 1.08rem;
            line-height: 1.7;
            margin-bottom: var(--space-32);
        }
 
        .service-page-image-box {
            position: relative;
            min-height: 520px;
            border-radius: 26px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: #1a3a52;
        }
 
        .service-page-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
 
        .service-page-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(4,3,3,0.55) 0%, rgba(4,3,3,0.08) 55%, rgba(4,3,3,0.02) 100%);
        }
 
        .service-page-badge {
            position: absolute;
            left: 20px;
            bottom: 20px;
            z-index: 2;
            background: rgba(255,255,255,0.92);
            color: var(--color-navy);
            padding: 12px 16px;
            border-radius: 14px;
            font-weight: 700;
            box-shadow: var(--shadow-md);
        }
 
        .service-page-section-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-32);
            align-items: stretch;
        }
 
        .service-page-visual {
            display: flex;
            align-items: center;      /* 👈 centra vertical respecto a la card */
            justify-content: center;  /* opcional: centra horizontal */
        }

        .service-page-visual iframe {
            display: block;
            margin: 0 auto;
            width: 100%;
            max-width: 560px;
            aspect-ratio: 16 / 9;
            height: auto;
        }
 
        .service-page-statband {
            background: var(--color-navy);
            color: var(--color-white);
            padding: var(--space-48) 0;
        }
 
        .service-page-statgrid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: var(--space-24);
        }
 
        .service-page-stat {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 18px;
            padding: 28px 22px;
            text-align: center;
        }
 
        .service-page-stat strong {
            display: block;
            font-size: 1.9rem;
            line-height: 1;
            color: var(--color-yellow);
            margin-bottom: 10px;
        }
 
        .service-page-docs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-32);
        }
 
        .service-page-doc-card {
            min-height: 100%;
        }
 
        .service-page-cta {
            background: linear-gradient(180deg, #f7f9fa 0%, #eef4f7 100%);
        }
 
        .service-page-cta-box {
            max-width: 860px;
            margin: 0 auto;
        }
 
        .service-page-inline-note {
            display: inline-block;
            background: rgba(42,100,150,0.12);
            color: var(--color-navy);
            padding: 10px 14px;
            border-radius: 999px;
            font-weight: 700;
            margin-bottom: var(--space-16);
        }
 
        @media (max-width: 991px) {
            .service-page-hero-grid,
            .service-page-section-grid,
            .service-page-docs {
                grid-template-columns: 1fr;
            }
 
            .service-page-statgrid {
                grid-template-columns: 1fr;
            }
 
            .service-page-image-box {
                min-height: 380px;
            }
 
            .service-page-visual {
                min-height: 320px;
            }
        }
 
        @media (max-width: 767px) {
            .service-page-hero {
                padding-top: calc(var(--header-height) + var(--space-32));
            }
 
            .service-page-image-box {
                min-height: 300px;
            }
 
            .service-page-visual {
                min-height: 260px;
            }
        }
        
.process-step .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.process-step .step-number img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}
 
/* ==========================================================
   SLIDER MANUAL — Infraestructura reutilizable
   ========================================================== */

.manual-slice {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    gap: 16px;
}

.manual-slice-viewport {
    overflow: hidden;
    width: 100%;
}

.manual-slice-track {
    display: flex;
    gap: 24px;
    align-items: stretch;
    transition: transform 0.35s ease;
    will-change: transform;
}

.manual-slice-arrow {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 999px;
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 48px;
    text-align: center;
}

.manual-slice-arrow:hover {
    background: var(--color-blue);
}

/* ----------------------------------------------------------
   Variante clásica (logo + card debajo)
   ---------------------------------------------------------- */

.manual-slice-item {
    flex: 0 0 260px;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}

.manual-slice-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

.manual-slice-card {
    width: 100%;
    min-height: 180px;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.manual-slice-card .service-title {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manual-slice-card .service-desc {
    margin-bottom: 0;
}

/* ----------------------------------------------------------
   Variante card con imagen de fondo (reutilizable)
   Uso: <article class="manual-slice-item manual-slice-item--card"
                  style="--slice-bg: url('...')">
   ---------------------------------------------------------- */

.manual-slice-item--card {
    flex: 0 0 320px;
    width: 320px;
    position: relative;
    overflow: hidden;
    border-radius: var(--br-16);
    min-height: 420px;
    background-image: var(--slice-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    gap: 0;
    box-shadow: var(--shadow-md);
}

.manual-slice-item--card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(4, 3, 3, 0.85) 0%,
        rgba(4, 3, 3, 0.50) 45%,
        rgba(4, 3, 3, 0.15) 100%
    );
    z-index: 1;
}

.manual-slice-item--card .slice-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 22px;
    color: var(--color-white);
    text-align: center;
}

.manual-slice-item--card .slice-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
    color: var(--color-white);
}

.manual-slice-item--card .slice-card-desc {
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 18px;
}

.manual-slice-item--card .slice-card-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: var(--br-full);
    background: var(--color-yellow);
    color: var(--color-navy);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.manual-slice-item--card .slice-card-wa:hover {
    background: #1e4f78;
    transform: translateY(-2px);
}

.manual-slice-item--card .slice-card-wa img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(55%) sepia(75%) saturate(500%) hue-rotate(100deg) brightness(104%);
}

/* ----------------------------------------------------------
   Responsive — Slider manual
   ---------------------------------------------------------- */

@media (max-width: 767px) {
    .manual-slice {
        grid-template-columns: 40px 1fr 40px;
        gap: 10px;
    }

    .manual-slice-item {
        flex: 0 0 220px;
        width: 220px;
    }

    .manual-slice-logo {
        width: 110px;
        height: 110px;
    }

    .manual-slice-card {
        min-height: 190px;
    }

    .manual-slice-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
        line-height: 40px;
    }

    .manual-slice-item--card {
        flex: 0 0 270px;
        width: 270px;
        min-height: 370px;
    }

    .manual-slice-item--card .slice-card-content {
        min-height: 370px;
        padding: 22px 16px;
    }

    .manual-slice-item--card .slice-card-title {
        font-size: 1.15rem;
    }

    .manual-slice-item--card .slice-card-desc {
        font-size: 0.87rem;
    }

    .manual-slice-item--card .slice-card-wa {
        font-size: 0.88rem;
        padding: 10px 16px;
    }
}
 
 
/* ==========================================================
   CALCULADORA
   ========================================================== */
        .calc-box {
            background: var(--color-navy);
            border-radius: var(--br-16);
            padding: var(--space-48) var(--space-32);
            color: var(--color-white);
            box-shadow: var(--shadow-lg);
        }
        .calc-title {
            color: var(--color-white);
            font-size: clamp(1.4rem, 3vw, 2rem);
            margin-bottom: var(--space-8);
        }
        .calc-subtitle {
            color: rgba(255,255,255,0.75);
            font-size: 0.95rem;
            margin-bottom: var(--space-32);
        }
        .calc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-24);
        }
        .calc-field label {
            display: block;
            font-weight: 600;
            font-size: 0.88rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: var(--space-8);
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .calc-field select,
        .calc-field input[type="number"] {
            width: 100%;
            padding: var(--space-12) var(--space-16);
            border-radius: var(--br-12);
            border: 2px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.08);
            color: var(--color-white);
            font-size: 1rem;
            outline: none;
            transition: border-color var(--transition-speed) ease, background var(--transition-speed) ease;
            /* Mantener spinners visibles para escritura con teclado */
            -webkit-appearance: textfield;
            -moz-appearance: textfield;
            appearance: textfield;
        }
        /* Spinner de número visible y cómodo para desktop */
        .calc-field input[type="number"]::-webkit-inner-spin-button,
        .calc-field input[type="number"]::-webkit-outer-spin-button {
            opacity: 1;
            height: 2.2em;
            cursor: pointer;
        }
        .calc-field select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232a6496' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 36px;
        }
        .calc-field select option { background: var(--color-navy); color: var(--color-white); }
        .calc-field select:focus,
        .calc-field input[type="number"]:focus {
            border-color: var(--color-blue);
            background: rgba(42,100,150,0.12);
        }
        .calc-field input[type="number"]::placeholder { color: rgba(255,255,255,0.35); }
 
        /* Fila de libras: slider encima, input grande abajo */
        .lb-range-wrap { position: relative; display: flex; flex-direction: column; gap: var(--space-12); }
        .lb-range-wrap input[type="range"] {
            width: 100%;
            height: 8px;
            border-radius: 999px;
            background: rgba(255,255,255,0.18);
            outline: none;
            border: none;
            padding: 0;
            cursor: pointer;
            accent-color: var(--color-yellow);
            touch-action: none; /* mejor arrastre táctil */
        }
        .lb-range-wrap input[type="range"]::-webkit-slider-thumb {
            width: 26px;
            height: 26px;
        }
        .lb-range-wrap input[type="range"]::-moz-range-thumb {
            width: 26px;
            height: 26px;
            border: none;
            background: var(--color-yellow);
            border-radius: 50%;
            cursor: pointer;
        }
        .lb-display {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.5);
        }
        .lb-display strong {
            font-size: 1.4rem;
            color: var(--color-yellow);
            font-weight: 800;
        }
        /* Input numérico grande y cómodo — principal para teclado */
        .lb-number-input {
            width: 100%;
            padding: var(--space-12) var(--space-16);
            border-radius: var(--br-12);
            border: 2px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.08);
            color: var(--color-white);
            font-size: 1.25rem;
            font-weight: 700;
            outline: none;
            text-align: center;
            transition: border-color var(--transition-speed) ease, background var(--transition-speed) ease;
            -webkit-appearance: textfield;
            -moz-appearance: textfield;
            appearance: textfield;
        }
        .lb-number-input::-webkit-inner-spin-button,
        .lb-number-input::-webkit-outer-spin-button {
            opacity: 1;
            height: 2.2em;
        }
        .lb-number-input:focus {
            border-color: var(--color-blue);
            background: rgba(42,100,150,0.12);
        }
        .lb-number-input.input-error {
            border-color: #ff6b6b;
            background: rgba(255,107,107,0.1);
        }
        .lb-hint {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.45);
            text-align: center;
            margin-top: 4px;
        }
 
        /* alerta máximo libras */
        .lb-alert {
            display: none;
            font-size: 0.82rem;
            color: var(--color-yellow);
            font-weight: 600;
            text-align: center;
            padding: var(--space-8) var(--space-12);
            background: rgba(255,210,31,0.1);
            border-radius: var(--br-12);
            border: 1px solid rgba(255,210,31,0.25);
        }
        .lb-alert.visible { display: block; }
 
        /* ── Convertidor kg ↔ lb ─────────────────────────────────── */
        .converter-wrap {
            margin-top: var(--space-24);
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--br-12);
            padding: var(--space-16);
        }
        .converter-title {
            font-size: 0.78rem;
            font-weight: 700;
            color: rgba(255,255,255,0.55);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: var(--space-12);
        }
        .converter-rows {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-12);
        }
        .converter-item {
            display: flex;
            flex-direction: column;
            gap: var(--space-8);
        }
        .converter-item label {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
            font-weight: 600;
        }
        .converter-item input[type="number"] {
            width: 100%;
            padding: var(--space-10) var(--space-12);
            border-radius: var(--br-12);
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.08);
            color: var(--color-white);
            font-size: 1rem;
            outline: none;
            -webkit-appearance: textfield;
            -moz-appearance: textfield;
            appearance: textfield;
            transition: border-color var(--transition-speed) ease;
        }
        .converter-item input[type="number"]::-webkit-inner-spin-button,
        .converter-item input[type="number"]::-webkit-outer-spin-button { opacity: 1; height: 1.8em; }
        .converter-item input[type="number"]:focus { border-color: var(--color-blue); }
        .converter-result {
            font-weight: 700;
            color: var(--color-yellow);
            font-size: 1rem;
            padding: var(--space-8) 0;
            min-height: 2rem;
        }
 
        /* resultado */
        .calc-result {
            margin-top: var(--space-32);
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--br-16);
            padding: var(--space-32);
            display: none;
        }
        .calc-result.visible { display: block; }
        .calc-result-header {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.55);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: var(--space-16);
        }
        .calc-result-rows { display: flex; flex-direction: column; gap: var(--space-12); }
        .calc-result-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.8);
            padding-bottom: var(--space-12);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            gap: var(--space-16);
        }
        .calc-result-row:last-child { border-bottom: none; padding-bottom: 0; }
        .calc-result-row.total {
            font-weight: 800;
            font-size: 1.15rem;
            color: var(--color-white);
            margin-top: var(--space-8);
            padding-top: var(--space-12);
            border-top: 2px solid rgba(255,255,255,0.2);
        }
        .calc-result-row .val { color: var(--color-yellow); font-weight: 700; text-align: right; }
        .calc-result-row.total .val { font-size: 1.5rem; }
 
        .calc-notice {
            margin-top: var(--space-16);
            font-size: 0.8rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.5;
        }
        .calc-notice strong { color: rgba(255,255,255,0.7); }
 
        .calc-actions {
            margin-top: var(--space-24);
            display: flex;
            gap: var(--space-16);
            flex-wrap: wrap;
        }
 
        /* ── Responsive móvil ────────────────────────────────────── */
        @media (max-width: 767px) {
            .calc-box { padding: var(--space-24) var(--space-16); }
            .calc-grid { grid-template-columns: 1fr; }
            .converter-rows { grid-template-columns: 1fr 1fr; }
            .calc-actions { flex-direction: column; }
            .calc-actions .btn { width: 100%; justify-content: center; }
            .calc-result-row { font-size: 0.88rem; }
            .calc-result-row.total .val { font-size: 1.25rem; }
            .calc-result { padding: var(--space-24) var(--space-16); }
        }
        @media (max-width: 479px) {
            .converter-rows { grid-template-columns: 1fr; }
        }
 
 
/* ==========================================================
   PARALLAX SEPARATORS
   Uso en HTML: <div class="parallax-section parallax-1"></div>
   Reemplaza la URL de background-image con tu imagen real.
   ========================================================== */
 
.parallax-section {
    position: relative;
    height: 320px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
 
/* Overlay oscuro corporativo sobre cada imagen */
.parallax-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 43, 62, 0.55) 0%,
        rgba(13, 43, 62, 0.40) 50%,
        rgba(13, 43, 62, 0.60) 100%
    );
    z-index: 1;
}
 
/* Texto/etiqueta opcional dentro del separador */
.parallax-section .parallax-label {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    text-align: center;
    padding: 0 2rem;
}
 
.parallax-section .parallax-label h3 {
    color: var(--color-white);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
 
.parallax-section .parallax-label p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}
 
/* Línea decorativa debajo del título */
.parallax-section .parallax-label h3::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    background: var(--color-yellow);
    margin: 12px auto 0;
}
 
/* ── Imágenes por separador ──────────────────────────────── */
/* Reemplaza cada URL con la imagen que quieras usar        */
 
.parallax-1 {
    background-image: url('IMAGEN_1.jpg');
}
 
.parallax-2 {
    background-image: url('IMAGEN_2.jpg');
}
 
.parallax-3 {
    background-image: url('IMAGEN_3.jpg');
}
 
.parallax-4 {
    background-image: url('IMAGEN_4.jpg');
}
 
/* Variante de altura: más alto o más bajo */
.parallax-section.parallax-sm { height: 200px; }
.parallax-section.parallax-lg { height: 440px; }
 
/* ── Móvil: desactivar fixed (iOS no lo soporta) ─────────── */
@media (max-width: 767px) {
    .parallax-section {
        background-attachment: scroll;
        background-position: center center;
        height: 220px;
    }
    .parallax-section.parallax-lg { height: 300px; }
}

/* ── Related ─────────────────────────────────────────────── */
        .related-services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: var(--space-24);
        }
        .related-card {
            border-top: 4px solid var(--color-blue);
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: var(--space-12);
        }
        .related-card .related-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
        .related-card h3 { font-size: 1rem; }
        .related-card p { font-size: 0.88rem; flex: 1; }