/* ===========================================================
   TARIMAS GARO - styles.css (produccion)
   Sistema de diseno: Flujo Logistico (Propuesta 3 aprobada).
   Space Grotesk + Inter. Cache-buster en HTML: ?v=YYYYMMDDx
   =========================================================== */

/* ===========================================================
           FLUJO LOGÍSTICO — Propuesta 3 · Tarimas Garo
           B2B minimalista, corporativo, tech-logístico, mucho aire.
           "Soluciones, no tarimas." manda como H1.
           =========================================================== */

        :root {
            --niebla-blanca: #FBFBF9;   /* base */
            --azul-profundo: #15324B;   /* primario / texto fuerte / headers */
            --azul-deep-2:   #0E2436;   /* sombra del primario */
            --verde-avance:  #1E9E6E;   /* acento / CTAs */
            --verde-hover:   #18855C;
            --verde-soft:    #E4F3EC;
            --grafito:       #2C333A;   /* texto */
            --niebla:        #E4E9EE;   /* líneas / superficies */
            --niebla-2:      #F2F5F7;   /* superficie alterna */
            --muted:         #5E6A73;   /* texto secundario */
            --white:         #ffffff;

            --font-display: 'Space Grotesk', system-ui, sans-serif;
            --font-body:    'Inter', system-ui, sans-serif;

            --radius:    14px;
            --radius-lg: 22px;
            --shadow-sm: 0 4px 18px rgba(21, 50, 75, 0.05);
            --shadow-md: 0 16px 44px rgba(21, 50, 75, 0.09);
            --shadow-lg: 0 28px 70px rgba(21, 50, 75, 0.14);
            --transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        }

        *, *::before, *::after { box-sizing: border-box; }

        html { scroll-behavior: smooth; overflow-x: hidden; }

        body {
            margin: 0;
            font-family: var(--font-body);
            font-weight: 400;
            color: var(--grafito);
            background: var(--niebla-blanca);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img, svg, video, iframe { max-width: 100%; display: block; }
        a { color: inherit; text-decoration: none; }

        h1, h2, h3, h4 {
            font-family: var(--font-display);
            font-weight: 600;
            letter-spacing: -0.02em;
            margin: 0 0 0.6em;
            line-height: 1.08;
            color: var(--azul-profundo);
        }

        h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
        h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); }

        p { margin: 0 0 1em; }

        .container {
            width: 100%;
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 1.6rem;
        }

        section { padding: 6rem 0; position: relative; }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            font-family: var(--font-display);
            font-weight: 500;
            font-size: 0.78rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--verde-avance);
            margin-bottom: 1rem;
        }
        .eyebrow::before {
            content: '';
            width: 22px; height: 2px;
            background: var(--verde-avance);
        }

        .section-title {
            max-width: 720px;
            margin: 0 0 3rem;
        }
        .section-title.center { margin-left: auto; margin-right: auto; text-align: center; }
        .section-title.center .eyebrow::before { display: none; }
        .section-title.center .eyebrow { letter-spacing: 0.26em; }
        .section-title p {
            font-size: 1.06rem;
            color: var(--muted);
            line-height: 1.75;
            margin: 0;
        }
        .section-title h2 span { color: var(--verde-avance); }

        /* =========================== HEADER =========================== */
        .site-header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 1.2rem 0;
            background: rgba(251, 251, 249, 0);
            transition: background var(--transition), box-shadow var(--transition), padding var(--transition), border-color var(--transition);
            border-bottom: 1px solid transparent;
        }
        .site-header.scrolled {
            background: rgba(251, 251, 249, 0.92);
            box-shadow: 0 6px 30px rgba(21, 50, 75, 0.07);
            border-bottom: 1px solid var(--niebla);
            padding: 0.75rem 0;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .site-header nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }

        /* Logo tipográfico */
        .logo {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            color: var(--azul-profundo);
        }
        .logo-mark {
            width: 42px; height: 42px;
            border-radius: 10px;
            background: var(--azul-profundo);
            display: grid;
            place-items: center;
            position: relative;
            flex-shrink: 0;
            overflow: hidden;
        }
        /* mini "flujo" de tablones dentro del mark */
        .logo-mark span {
            display: block;
            width: 18px; height: 2.5px;
            background: var(--verde-avance);
            border-radius: 2px;
            position: relative;
        }
        .logo-mark span::before,
        .logo-mark span::after {
            content: '';
            position: absolute;
            left: 0;
            width: 18px; height: 2.5px;
            background: rgba(255,255,255,0.55);
            border-radius: 2px;
        }
        .logo-mark span::before { top: -6px; }
        .logo-mark span::after  { top: 6px; }
        .logo-text {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.18rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--azul-profundo);
            line-height: 1;
        }
        .logo-text small {
            display: block;
            font-family: var(--font-body);
            font-size: 0.62rem;
            letter-spacing: 0.32em;
            font-weight: 500;
            color: var(--verde-avance);
            margin-top: 5px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            list-style: none;
            margin: 0; padding: 0;
            gap: 2.1rem;
            align-items: center;
        }
        .nav-links a {
            font-family: var(--font-body);
            font-weight: 500;
            font-size: 0.92rem;
            color: var(--grafito);
            position: relative;
            padding: 4px 0;
            transition: color 0.25s ease;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px; left: 0;
            width: 0; height: 2px;
            background: var(--verde-avance);
            transition: width 0.3s ease;
        }
        .nav-links a:hover { color: var(--azul-profundo); }
        .nav-links a:hover::after { width: 100%; }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.62rem 1.2rem;
            background: var(--verde-avance);
            color: var(--white) !important;
            border-radius: 8px;
            font-family: var(--font-display);
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.01em;
            box-shadow: 0 8px 20px rgba(30, 158, 110, 0.28);
            transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        }
        .nav-cta:hover {
            background: var(--verde-hover);
            transform: translateY(-1px);
            box-shadow: 0 12px 26px rgba(30, 158, 110, 0.36);
        }
        .nav-cta::after { display: none; }
        .nav-cta svg { width: 15px; height: 15px; }

        .menu-toggle {
            display: none;
            font-size: 1.6rem;
            color: var(--azul-profundo);
            cursor: pointer;
            background: none;
            border: 0;
            line-height: 1;
        }

        /* =========================== HERO =========================== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--niebla-blanca);
            padding: 9rem 0 5rem;
            isolation: isolate;
        }
        /* líneas de "flujo" sutiles de fondo */
        .hero-grid-bg {
            position: absolute; inset: 0;
            z-index: -2;
            background-image:
                linear-gradient(to right, rgba(21,50,75,0.045) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(21,50,75,0.045) 1px, transparent 1px);
            background-size: 64px 64px;
            mask-image: radial-gradient(ellipse at 70% 30%, #000 0%, transparent 72%);
            -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 0%, transparent 72%);
        }
        .hero-flow {
            position: absolute;
            top: 0; right: -10%;
            width: 60%; height: 100%;
            z-index: -1;
            opacity: 0.5;
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 860px;
        }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.42rem 0.95rem;
            border: 1px solid var(--niebla);
            background: var(--white);
            border-radius: 999px;
            font-family: var(--font-display);
            font-size: 0.76rem;
            font-weight: 500;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--azul-profundo);
            margin-bottom: 1.8rem;
            box-shadow: var(--shadow-sm);
        }
        .hero-eyebrow .dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: var(--verde-avance);
            box-shadow: 0 0 0 4px rgba(30,158,110,0.18);
        }
        .hero h1 {
            font-size: clamp(2.6rem, 7vw, 5rem);
            color: var(--azul-profundo);
            line-height: 0.98;
            margin-bottom: 1.5rem;
            letter-spacing: -0.035em;
        }
        .hero h1 .accent { color: var(--verde-avance); }
        .hero-desc {
            font-size: clamp(1.05rem, 1.6vw, 1.25rem);
            font-weight: 400;
            line-height: 1.65;
            color: var(--muted);
            max-width: 640px;
            margin: 0 0 2.4rem;
        }
        .hero-desc strong { color: var(--grafito); font-weight: 600; }
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            padding: 1rem 1.9rem;
            font-family: var(--font-display);
            font-weight: 500;
            font-size: 0.98rem;
            letter-spacing: 0.005em;
            border-radius: 9px;
            border: 0;
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
            background: var(--verde-avance);
            color: var(--white);
            box-shadow: 0 14px 30px rgba(30, 158, 110, 0.28);
        }
        .btn:hover {
            background: var(--verde-hover);
            transform: translateY(-2px);
            box-shadow: 0 18px 40px rgba(30, 158, 110, 0.38);
        }
        .btn svg { width: 16px; height: 16px; }
        .btn-outline {
            background: var(--white);
            color: var(--azul-profundo);
            border: 1.5px solid var(--niebla);
            box-shadow: var(--shadow-sm);
        }
        .btn-outline:hover {
            background: var(--azul-profundo);
            color: var(--white);
            border-color: var(--azul-profundo);
            box-shadow: var(--shadow-md);
        }

        /* Hero metrics row */
        .hero-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: 2.4rem 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--niebla);
            max-width: 760px;
        }
        .hero-metric strong {
            display: block;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.7rem;
            color: var(--azul-profundo);
            line-height: 1;
            margin-bottom: 0.35rem;
        }
        .hero-metric span {
            font-size: 0.86rem;
            color: var(--muted);
            line-height: 1.35;
            display: block;
        }
        .hero-metric strong .em { color: var(--verde-avance); }

        /* =========================== SECCIÓN FIRMA =========================== */
        .signature {
            background: var(--azul-profundo);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        .signature::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px);
            background-size: 64px 100%;
            pointer-events: none;
        }
        .signature-grid {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 3.5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .signature .eyebrow { color: #5FD3A6; }
        .signature .eyebrow::before { background: #5FD3A6; }
        .signature h2 { color: var(--white); }
        .signature h2 span { color: #5FD3A6; }
        .signature p {
            color: rgba(255,255,255,0.82);
            font-size: 1.06rem;
            line-height: 1.75;
        }
        .signature-points {
            list-style: none;
            margin: 1.8rem 0 0;
            padding: 0;
            display: grid;
            gap: 0.9rem;
        }
        .signature-points li {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            font-size: 0.98rem;
            color: rgba(255,255,255,0.9);
        }
        .signature-points svg {
            width: 20px; height: 20px;
            stroke: #5FD3A6;
            flex-shrink: 0;
            margin-top: 3px;
        }
        /* placeholder visual de la firma (tarima reciclada héroe) */
        .signature-visual {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            min-height: 360px;
            background:
                radial-gradient(ellipse at 30% 20%, rgba(95, 211, 166, 0.22) 0%, transparent 60%),
                linear-gradient(150deg, #1C415F 0%, #0E2436 100%);
            border: 1px solid rgba(255,255,255,0.12);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.6rem;
        }
        .ph-pattern {
            position: absolute; inset: 0;
            background-image:
                repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 2px, transparent 2px 26px);
            opacity: 0.6;
            mask-image: linear-gradient(transparent, #000 40%);
            -webkit-mask-image: linear-gradient(transparent, #000 40%);
        }
        .ph-tag {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            align-self: flex-start;
            padding: 0.5rem 0.9rem;
            background: rgba(14, 36, 54, 0.7);
            border: 1px solid rgba(255,255,255,0.16);
            border-radius: 8px;
            font-family: var(--font-display);
            font-size: 0.74rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.92);
            backdrop-filter: blur(4px);
        }
        .ph-tag svg { width: 14px; height: 14px; stroke: #5FD3A6; }
        .signature-badge {
            position: absolute;
            top: 1.4rem; right: 1.4rem;
            background: var(--verde-avance);
            color: var(--white);
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 0.72rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.45rem 0.85rem;
            border-radius: 999px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        }

        /* =========================== PRODUCTOS =========================== */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.6rem;
            margin-top: 2.6rem;
        }
        .product-card {
            background: var(--white);
            border: 1px solid var(--niebla);
            border-radius: var(--radius-lg);
            padding: 0;
            overflow: hidden;
            position: relative;
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
            display: flex;
            flex-direction: column;
        }
        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: var(--verde-avance);
        }
        .product-card.featured {
            border-color: var(--verde-avance);
            box-shadow: var(--shadow-sm);
        }
        /* placeholder de imagen */
        .product-media {
            position: relative;
            min-height: 180px;
            display: flex;
            align-items: flex-end;
            padding: 1.1rem;
            overflow: hidden;
        }
        .product-media .ph-label {
            position: relative;
            z-index: 2;
            font-family: var(--font-body);
            font-size: 0.72rem;
            letter-spacing: 0.02em;
            color: rgba(255,255,255,0.92);
            background: rgba(14,36,54,0.55);
            border: 1px solid rgba(255,255,255,0.18);
            padding: 0.35rem 0.7rem;
            border-radius: 7px;
            backdrop-filter: blur(4px);
        }
        .product-media::after {
            content: '';
            position: absolute; inset: 0;
            background-image:
                repeating-linear-gradient(0deg, rgba(255,255,255,0.10) 0 2px, transparent 2px 22px);
            opacity: 0.55;
        }
        .pm-nuevas    { background: linear-gradient(150deg, #1C415F 0%, #15324B 100%); }
        .pm-recicladas{ background: linear-gradient(150deg, #1E9E6E 0%, #15324B 100%); }
        .pm-medida    { background: linear-gradient(150deg, #2A5C7E 0%, #15324B 100%); }
        .pm-export    { background: linear-gradient(150deg, #15324B 0%, #0E2436 100%); }

        .product-body {
            padding: 1.7rem 1.6rem 1.8rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .product-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            align-self: flex-start;
            font-family: var(--font-display);
            font-weight: 500;
            font-size: 0.68rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--verde-avance);
            background: var(--verde-soft);
            padding: 0.3rem 0.65rem;
            border-radius: 999px;
            margin-bottom: 0.9rem;
        }
        .product-tag.star { color: var(--white); background: var(--verde-avance); }
        .product-card h3 {
            font-size: 1.22rem;
            margin-bottom: 0.5rem;
        }
        .product-card p {
            font-size: 0.95rem;
            color: var(--muted);
            margin: 0 0 1.2rem;
            line-height: 1.6;
            flex: 1;
        }
        .product-link {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-family: var(--font-display);
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--azul-profundo);
            transition: gap 0.25s ease, color 0.25s ease;
        }
        .product-link svg { width: 15px; height: 15px; transition: transform 0.25s ease; }
        .product-link:hover { color: var(--verde-avance); }
        .product-link:hover svg { transform: translateX(4px); }

        /* =========================== ESPECIFICACIONES =========================== */
        .specs-section { background: var(--niebla-2); }
        .specs-note {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.82rem;
            color: var(--muted);
            background: var(--white);
            border: 1px solid var(--niebla);
            border-radius: 8px;
            padding: 0.55rem 0.9rem;
            margin-bottom: 1.6rem;
        }
        .specs-note svg { width: 16px; height: 16px; stroke: var(--verde-avance); flex-shrink: 0; }
        .specs-table-wrap {
            background: var(--white);
            border: 1px solid var(--niebla);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.96rem;
        }
        .specs-table th,
        .specs-table td {
            text-align: left;
            padding: 1.1rem 1.5rem;
            border-bottom: 1px solid var(--niebla);
            vertical-align: top;
        }
        .specs-table thead th {
            background: var(--azul-profundo);
            color: var(--white);
            font-family: var(--font-display);
            font-weight: 500;
            font-size: 0.82rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .specs-table tbody tr:last-child td { border-bottom: 0; }
        .specs-table tbody tr:nth-child(even) { background: var(--niebla-2); }
        .specs-table td:first-child {
            font-family: var(--font-display);
            font-weight: 500;
            color: var(--azul-profundo);
            white-space: nowrap;
        }
        .specs-table td:first-child svg {
            width: 16px; height: 16px;
            stroke: var(--verde-avance);
            display: inline-block;
            vertical-align: -3px;
            margin-right: 0.5rem;
        }
        .ref-pill {
            display: inline-block;
            font-family: var(--font-display);
            font-size: 0.64rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--muted);
            background: var(--niebla);
            border-radius: 999px;
            padding: 0.12rem 0.55rem;
            margin-left: 0.4rem;
            vertical-align: 1px;
        }

        /* =========================== EXPORTACIÓN =========================== */
        .export-section { background: var(--niebla-blanca); }
        .export-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .export-steps {
            display: grid;
            gap: 1.1rem;
            margin-top: 1.8rem;
        }
        .export-step {
            display: flex;
            gap: 1.1rem;
            align-items: flex-start;
            background: var(--white);
            border: 1px solid var(--niebla);
            border-radius: var(--radius);
            padding: 1.2rem 1.3rem;
            transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
        }
        .export-step:hover {
            border-color: var(--verde-avance);
            box-shadow: var(--shadow-sm);
            transform: translateX(4px);
        }
        .export-step-num {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--verde-avance);
            background: var(--verde-soft);
            width: 40px; height: 40px;
            border-radius: 10px;
            display: grid;
            place-items: center;
            flex-shrink: 0;
        }
        .export-step strong {
            display: block;
            font-family: var(--font-display);
            font-weight: 600;
            color: var(--azul-profundo);
            margin-bottom: 0.2rem;
            font-size: 1rem;
        }
        .export-step p {
            margin: 0;
            font-size: 0.92rem;
            color: var(--muted);
            line-height: 1.55;
        }
        /* tarjeta sello NIMF-15 */
        .export-seal {
            position: relative;
            background: linear-gradient(160deg, var(--azul-profundo) 0%, var(--azul-deep-2) 100%);
            color: var(--white);
            border-radius: var(--radius-lg);
            padding: 2.6rem;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
        }
        .export-seal::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px);
            background-size: 44px 100%;
        }
        .export-seal-mark {
            position: relative;
            width: 110px; height: 110px;
            border: 2px solid #5FD3A6;
            border-radius: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.2rem;
            margin-bottom: 1.6rem;
        }
        .export-seal-mark .wheat {
            width: 30px; height: 30px;
            stroke: #5FD3A6;
        }
        .export-seal-mark .code {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.92rem;
            letter-spacing: 0.06em;
            color: var(--white);
        }
        .export-seal-mark .sub {
            font-size: 0.6rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.7);
        }
        .export-seal h3 { color: var(--white); font-size: 1.35rem; position: relative; }
        .export-seal p { color: rgba(255,255,255,0.82); margin: 0 0 0.6rem; position: relative; font-size: 0.96rem; }
        .export-seal .chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1.2rem;
            position: relative;
        }
        .export-chip {
            font-family: var(--font-display);
            font-size: 0.72rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.92);
            border: 1px solid rgba(255,255,255,0.22);
            border-radius: 999px;
            padding: 0.35rem 0.8rem;
        }

        /* =========================== POR QUÉ =========================== */
        .why-section { background: var(--niebla-2); }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2.6rem;
        }
        .why-card {
            background: var(--white);
            border: 1px solid var(--niebla);
            border-radius: var(--radius-lg);
            padding: 2rem 1.8rem;
            position: relative;
            transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
        }
        .why-card:hover {
            transform: translateY(-6px);
            border-color: var(--verde-avance);
            box-shadow: var(--shadow-md);
        }
        .why-icon {
            width: 50px; height: 50px;
            background: var(--verde-soft);
            color: var(--verde-avance);
            stroke: currentColor;
            border-radius: 13px;
            padding: 12px;
            margin-bottom: 1.1rem;
        }
        .why-card h3 { font-size: 1.12rem; margin-bottom: 0.45rem; }
        .why-card p {
            font-size: 0.94rem;
            color: var(--muted);
            margin: 0;
            line-height: 1.6;
        }

        /* =========================== SECTORES =========================== */
        .sectors-section {
            background: var(--azul-profundo);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        .sectors-section::before {
            content: '';
            position: absolute; inset: 0;
            background-image:
                linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
            background-size: 64px 64px;
            pointer-events: none;
        }
        .sectors-section .section-title { position: relative; z-index: 1; }
        .sectors-section h2 { color: var(--white); }
        .sectors-section h2 span { color: #5FD3A6; }
        .sectors-section .eyebrow { color: #5FD3A6; }
        .sectors-section .eyebrow::before { background: #5FD3A6; }
        .sectors-section .section-title p { color: rgba(255,255,255,0.78); }
        .sectors-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-top: 2.4rem;
            position: relative;
            z-index: 1;
        }
        .sector-chip {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius);
            padding: 1.5rem 1.3rem;
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
            transition: transform var(--transition), background 0.3s ease, border-color 0.3s ease;
        }
        .sector-chip:hover {
            transform: translateY(-4px);
            background: rgba(30,158,110,0.10);
            border-color: #5FD3A6;
        }
        .sector-chip svg {
            width: 28px; height: 28px;
            stroke: #5FD3A6;
            flex-shrink: 0;
        }
        .sector-chip strong {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1rem;
            color: var(--white);
            line-height: 1.2;
        }
        .sector-chip span {
            font-size: 0.84rem;
            color: rgba(255,255,255,0.66);
            line-height: 1.45;
        }
        .ideal-client {
            position: relative;
            z-index: 1;
            margin-top: 2.4rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.12);
            border-left: 3px solid #5FD3A6;
            border-radius: var(--radius);
            padding: 1.3rem 1.6rem;
        }
        .ideal-client svg { width: 26px; height: 26px; stroke: #5FD3A6; flex-shrink: 0; }
        .ideal-client p { margin: 0; color: rgba(255,255,255,0.86); font-size: 0.98rem; }
        .ideal-client strong { color: var(--white); }

        /* =========================== UBICACIÓN =========================== */
        .local-grid {
            display: grid;
            grid-template-columns: 1.25fr 1fr;
            gap: 2.4rem;
            margin-top: 2rem;
            align-items: stretch;
        }
        .local-map {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--niebla);
        }
        .local-map iframe {
            display: block;
            width: 100%;
            height: 450px;
            border: 0;
        }
        .nap-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2.4rem 2.1rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--niebla);
            border-top: 4px solid var(--verde-avance);
            display: flex;
            flex-direction: column;
            gap: 1.4rem;
        }
        .nap-card h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
        .nap-item {
            display: flex;
            align-items: flex-start;
            gap: 0.9rem;
        }
        .nap-item svg {
            width: 22px; height: 22px;
            flex-shrink: 0;
            stroke: var(--verde-avance);
            margin-top: 2px;
        }
        .nap-item-label {
            display: block;
            font-family: var(--font-display);
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-size: 0.74rem;
            color: var(--muted);
            margin-bottom: 0.18rem;
        }
        .nap-item-value {
            color: var(--grafito);
            font-weight: 400;
            font-size: 1rem;
            line-height: 1.45;
            margin: 0;
        }
        .nap-item-value a { color: var(--azul-profundo); font-weight: 600; }
        .nap-item-value a:hover { color: var(--verde-avance); }
        .nap-cta {
            margin-top: 0.4rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 0.95rem 1.4rem;
            background: var(--verde-avance);
            color: var(--white);
            border-radius: 9px;
            font-family: var(--font-display);
            font-weight: 500;
            box-shadow: 0 12px 26px rgba(30,158,110,0.28);
            transition: background 0.25s ease, transform 0.25s ease;
        }
        .nap-cta:hover { background: var(--verde-hover); transform: translateY(-2px); }
        .nap-cta svg { width: 17px; height: 17px; }

        /* =========================== FAQ =========================== */
        .faq-section { background: var(--niebla-2); }
        .faq-list {
            max-width: 820px;
            margin: 2.4rem auto 0;
            display: grid;
            gap: 1rem;
        }
        .faq-item {
            background: var(--white);
            border: 1px solid var(--niebla);
            border-radius: var(--radius);
            overflow: hidden;
            transition: border-color var(--transition), box-shadow var(--transition);
        }
        .faq-item[open] {
            border-color: var(--verde-avance);
            box-shadow: var(--shadow-sm);
        }
        .faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 1.35rem 1.6rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1.04rem;
            color: var(--azul-profundo);
        }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary .icon {
            width: 26px; height: 26px;
            flex-shrink: 0;
            border-radius: 7px;
            background: var(--verde-soft);
            color: var(--verde-avance);
            display: grid;
            place-items: center;
            transition: transform var(--transition), background 0.25s ease, color 0.25s ease;
            font-size: 1.2rem;
            line-height: 1;
        }
        .faq-item[open] summary .icon {
            transform: rotate(45deg);
            background: var(--verde-avance);
            color: var(--white);
        }
        .faq-answer {
            padding: 0 1.6rem 1.5rem;
            color: var(--muted);
            font-size: 0.97rem;
            line-height: 1.7;
        }
        .faq-answer p { margin: 0; }

        /* =========================== IDENTITY SHOWCASE =========================== */
        .identity-section { background: var(--niebla-blanca); border-top: 1px solid var(--niebla); }
        .identity-section .section-title h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
        .identity-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.2rem;
            margin-top: 2rem;
        }
        .identity-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2.1rem;
            border: 1px solid var(--niebla);
            box-shadow: var(--shadow-sm);
        }
        .identity-card h3 {
            font-size: 1.05rem;
            margin-bottom: 1.4rem;
            display: inline-block;
            padding-bottom: 0.3rem;
            border-bottom: 2px solid var(--verde-avance);
        }
        .palette-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.8rem;
        }
        .swatch {
            border-radius: 11px;
            padding: 1.2rem 0.9rem;
            color: var(--white);
            font-family: var(--font-display);
            min-height: 116px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            box-shadow: 0 4px 12px rgba(21,50,75,0.08);
            border: 1px solid transparent;
        }
        .swatch strong {
            font-size: 0.86rem;
            letter-spacing: 0.01em;
            display: block;
            margin-bottom: 0.2rem;
            font-weight: 600;
        }
        .swatch span {
            font-family: 'Inter', monospace;
            font-size: 0.72rem;
            opacity: 0.88;
            letter-spacing: 0.04em;
        }
        .sw1 { background: var(--azul-profundo); }
        .sw2 { background: var(--verde-avance); }
        .sw3 { background: var(--grafito); }
        .sw4 { background: var(--niebla-blanca); color: var(--azul-profundo); border-color: var(--niebla); }
        .sw5 { background: var(--niebla); color: var(--azul-profundo); }
        .sw6 { background: var(--verde-soft); color: var(--verde-hover); }

        .type-specimen { margin-top: 0.4rem; }
        .type-row { padding: 1rem 0; border-bottom: 1px solid var(--niebla); }
        .type-row:last-child { border-bottom: 0; }
        .type-label {
            font-family: var(--font-body);
            font-size: 0.7rem;
            color: var(--muted);
            letter-spacing: 0.18em;
            text-transform: uppercase;
            margin-bottom: 0.45rem;
        }
        .type-display-h1 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 2.3rem;
            letter-spacing: -0.03em;
            color: var(--azul-profundo);
            line-height: 1;
        }
        .type-display-h2 {
            font-family: var(--font-display);
            font-weight: 500;
            font-size: 1.5rem;
            color: var(--verde-avance);
            line-height: 1.1;
            letter-spacing: -0.01em;
        }
        .type-display-body {
            font-family: var(--font-body);
            font-weight: 400;
            font-size: 1rem;
            color: var(--grafito);
            line-height: 1.7;
        }
        .type-display-body strong { font-weight: 600; color: var(--azul-profundo); }

        /* =========================== FOOTER =========================== */
        footer {
            background: var(--azul-deep-2);
            color: rgba(255,255,255,0.74);
            padding: 4.5rem 0 1.8rem;
            font-size: 0.94rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2.8rem;
        }
        .footer-brand .logo { margin-bottom: 1.2rem; }
        .footer-brand .logo-text { color: var(--white); }
        .footer-brand .logo-mark { background: rgba(255,255,255,0.08); }
        .footer-tagline {
            font-family: var(--font-display);
            font-weight: 500;
            font-size: 1.05rem;
            color: var(--white);
            margin-bottom: 1.3rem;
            line-height: 1.4;
        }
        .footer-tagline span { color: #5FD3A6; }
        .footer-col h3 {
            color: var(--white);
            font-size: 1rem;
            margin-bottom: 1.1rem;
            position: relative;
            padding-bottom: 0.6rem;
        }
        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0; bottom: 0;
            width: 34px; height: 2px;
            background: var(--verde-avance);
        }
        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            margin-bottom: 0.85rem;
        }
        .footer-icon {
            width: 18px; height: 18px;
            stroke: #5FD3A6;
            flex-shrink: 0;
            margin-top: 4px;
        }
        .footer-contact-item a, .footer-contact-item p {
            color: rgba(255,255,255,0.74);
            margin: 0;
            transition: color 0.25s ease;
            line-height: 1.5;
        }
        .footer-contact-item a:hover { color: #5FD3A6; }
        .footer-col ul { list-style: none; padding: 0; margin: 0; }
        .footer-col ul li { margin-bottom: 0.55rem; }
        .footer-col ul a {
            color: rgba(255,255,255,0.74);
            transition: color 0.25s ease, padding-left 0.25s ease;
            display: inline-block;
        }
        .footer-col ul a:hover { color: #5FD3A6; padding-left: 4px; }
        .footer-bottom {
            padding-top: 1.8rem;
            border-top: 1px solid rgba(255,255,255,0.10);
            text-align: center;
            font-size: 0.84rem;
            color: rgba(255,255,255,0.5);
        }
        .footer-bottom p { margin: 0.25rem 0; }

        /* =========================== PROPOSAL BADGE =========================== */
        .proposal-badge {
            position: fixed;
            bottom: 1.4rem; right: 1.4rem;
            z-index: 200;
            background: var(--azul-profundo);
            color: var(--white);
            padding: 0.72rem 1.1rem;
            border-radius: 999px;
            font-family: var(--font-display);
            font-weight: 500;
            font-size: 0.82rem;
            letter-spacing: 0.06em;
            box-shadow: 0 14px 40px rgba(21,50,75,0.32);
            border: 1.5px solid var(--verde-avance);
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .proposal-badge::before {
            content: '';
            width: 10px; height: 10px;
            border-radius: 50%;
            background: var(--verde-avance);
            box-shadow: 0 0 12px var(--verde-avance);
        }

        /* =========================== RESPONSIVE =========================== */
        @media (max-width: 1024px) {
            .nav-links { gap: 1.4rem; }
            .nav-links a { font-size: 0.88rem; }
            .signature-grid { gap: 2.4rem; }
            .sectors-grid { grid-template-columns: repeat(2, 1fr); }
            .why-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
        }
        @media (max-width: 900px) {
            .menu-toggle { display: block; }
            .nav-links {
                position: fixed;
                top: 0; right: -100%;
                width: 82%; max-width: 330px;
                height: 100vh;
                background: var(--azul-profundo);
                flex-direction: column;
                align-items: flex-start;
                padding: 6rem 2rem 2rem;
                gap: 1.5rem;
                transition: right 0.4s ease;
                box-shadow: -10px 0 40px rgba(0,0,0,0.3);
                overflow-y: auto;
            }
            .nav-links.active { right: 0; }
            .nav-links a { color: var(--white); font-size: 1.05rem; }
            .nav-links a:hover { color: #5FD3A6; }
            .site-header.scrolled { padding: 0.75rem 0; }

            /* grids 2+ col colapsan a 1 col */
            .signature-grid { grid-template-columns: 1fr; }
            .signature-visual { min-height: 260px; order: -1; }
            .products-grid { grid-template-columns: 1fr 1fr; }
            .export-grid { grid-template-columns: 1fr; gap: 2.4rem; }
            .why-grid { grid-template-columns: 1fr 1fr; }
            .local-grid { grid-template-columns: 1fr; }
            .identity-block { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            section { padding: 4rem 0; }
            .hero { padding: 7rem 0 3.5rem; min-height: auto; }
            .hero-content { max-width: 100%; }
            .hero-flow { display: none; }
            .hero-metrics { gap: 1.6rem 2.2rem; }
            .hero-metric strong { font-size: 1.5rem; }
            .specs-table th, .specs-table td { padding: 0.9rem 1rem; font-size: 0.9rem; }
            .specs-table td:first-child { white-space: normal; }
            .local-map iframe { height: 380px; }
            .section-title { margin-bottom: 2.2rem; }
            .why-icon { width: 46px; height: 46px; }
            .export-seal { padding: 2rem; }
            .logo-text small { display: none; }
            .logo-text { font-size: 1.05rem; }
        }
        @media (max-width: 640px) {
            section { padding: 3.4rem 0; }
            .container { padding: 0 1.25rem; }

            .hero h1 { font-size: clamp(2.4rem, 11vw, 3.2rem); }
            .hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.1em; padding: 0.38rem 0.8rem; }
            .hero-desc { font-size: 1rem; }

            /* botones hero full width */
            .hero-buttons { flex-direction: column; gap: 0.7rem; width: 100%; }
            .hero-buttons .btn { width: 100%; padding: 0.95rem 1.2rem; }
            .hero-metrics { gap: 1.3rem 2rem; padding-top: 1.6rem; }

            /* productos 1 col */
            .products-grid { grid-template-columns: 1fr; gap: 1.3rem; }
            .product-media { min-height: 150px; }

            /* sectores y why 1 col */
            .sectors-grid { grid-template-columns: 1fr; gap: 0.8rem; }
            .why-grid { grid-template-columns: 1fr; gap: 1rem; }

            /* specs: scroll horizontal contenido + más compacto */
            .specs-table-wrap { border-radius: var(--radius); }
            .specs-table th, .specs-table td { padding: 0.85rem 0.9rem; font-size: 0.86rem; }
            .ref-pill { display: inline-block; margin-left: 0; margin-top: 0.3rem; }

            .export-seal-mark { width: 92px; height: 92px; }
            .ideal-client { flex-direction: column; align-items: flex-start; gap: 0.6rem; }

            .local-map iframe { height: 320px; }
            .nap-card { padding: 1.8rem 1.5rem; gap: 1.2rem; }

            .faq-item summary { padding: 1.15rem 1.2rem; font-size: 0.98rem; }
            .faq-answer { padding: 0 1.2rem 1.3rem; }

            /* identity */
            .identity-card { padding: 1.6rem 1.4rem; }
            .palette-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
            .swatch { min-height: 98px; padding: 1rem 0.8rem; }
            .type-display-h1 { font-size: 1.9rem; }
            .type-display-h2 { font-size: 1.3rem; }

            /* footer 1 col */
            .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
            footer { padding: 3.2rem 0 1.5rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 1.1rem; }
            section { padding: 2.9rem 0; }

            .hero { padding: 6.5rem 0 3rem; }
            .hero h1 { font-size: 3.2rem; line-height: 0.98; margin-bottom: 1.2rem; }
            .hero-eyebrow { font-size: 0.62rem; margin-bottom: 1.4rem; }
            .hero-desc { font-size: 0.95rem; margin-bottom: 1.8rem; }
            .hero-buttons .btn { padding: 0.9rem 1rem; font-size: 0.92rem; }
            .hero-metric strong { font-size: 1.35rem; }
            .hero-metric span { font-size: 0.8rem; }

            h2 { font-size: clamp(1.55rem, 8vw, 1.9rem); }
            h3 { font-size: clamp(1.12rem, 6vw, 1.32rem); }

            .eyebrow { font-size: 0.72rem; letter-spacing: 0.16em; }

            /* header compacto */
            .site-header { padding: 0.9rem 0; }
            .site-header nav { gap: 0.8rem; }
            .logo-mark { width: 38px; height: 38px; }
            .logo-text { font-size: 0.98rem; }
            .nav-cta { padding: 0.55rem 0.9rem; font-size: 0.78rem; gap: 0.35rem; }
            .nav-cta svg { width: 13px; height: 13px; }
            .menu-toggle { font-size: 1.45rem; }

            /* proposal badge más chico */
            .proposal-badge { font-size: 0.64rem; padding: 0.5rem 0.8rem; bottom: 0.8rem; right: 0.8rem; letter-spacing: 0.04em; }

            .product-body { padding: 1.5rem 1.3rem 1.6rem; }
            .export-seal { padding: 1.7rem; }
            .export-step { padding: 1rem 1.1rem; gap: 0.9rem; }
            .export-step-num { width: 36px; height: 36px; font-size: 1rem; }

            .specs-table th, .specs-table td { padding: 0.75rem 0.7rem; font-size: 0.8rem; }
            .specs-table td:first-child svg { display: none; }

            .local-map iframe { height: 280px; }
            .nap-card { padding: 1.6rem 1.3rem; }

            .sector-chip { padding: 1.3rem 1.1rem; }
            .why-card { padding: 1.6rem 1.4rem; }

            .palette-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
            .swatch { min-height: 88px; padding: 0.9rem 0.7rem; }
            .swatch strong { font-size: 0.8rem; }
            .swatch span { font-size: 0.66rem; }
            .type-display-h1 { font-size: 1.65rem; }
            .type-display-h2 { font-size: 1.18rem; }
            .type-display-body { font-size: 0.93rem; }

            .footer-tagline { font-size: 0.98rem; }
        }
/* ===========================================================
   PRODUCCIÓN — adiciones Raptor (multipágina + Craft + conversión)
   =========================================================== */

/* ======= RAPTOR LIB 00 — A11Y MOTION BASE ======= */
:root{ --ease-out-expo: cubic-bezier(.22,1,.36,1); }
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration:.01ms !important; animation-iteration-count:1 !important;
    transition-duration:.01ms !important; scroll-behavior:auto !important;
  }
}

/* ======= RAPTOR LIB 07 — VIEW TRANSITIONS (MPA) ======= */
@view-transition{ navigation: auto; }
::view-transition-old(root),::view-transition-new(root){ animation-duration:320ms; animation-timing-function: cubic-bezier(.25,1,.5,1); }

/* ======= RAPTOR LIB 01 — REVEAL ON SCROLL ======= */
[data-reveal]{ opacity:0; transform: translateY(28px); transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo); transition-delay: calc(var(--reveal-delay,0) * 1ms); will-change: opacity, transform; }
[data-reveal].is-in{ opacity:1; transform:none; }

/* ======= SKIP LINK (a11y) ======= */
.skip-link{ position:absolute; left:-9999px; top:0; background:var(--azul-profundo); color:#fff; padding:.7rem 1.1rem; border-radius:0 0 8px 0; z-index:500; }
.skip-link:focus{ left:0; }

/* ======= BREADCRUMBS ======= */
.breadcrumb{ font-size:.82rem; color:var(--muted); margin-bottom:1.1rem; display:flex; flex-wrap:wrap; gap:.45rem; align-items:center; }
.breadcrumb a{ color:var(--muted); transition:color .25s; }
.breadcrumb a:hover{ color:var(--verde-avance); }
.breadcrumb [aria-current]{ color:var(--azul-profundo); font-weight:500; }
.breadcrumb .sep{ color:var(--niebla); }

/* ======= PAGE HERO (páginas internas) ======= */
.page-hero{ position:relative; padding:9rem 0 3.4rem; background:var(--niebla-blanca); overflow:hidden; isolation:isolate; border-bottom:1px solid var(--niebla); }
.page-hero h1{ font-size:clamp(2.1rem,5vw,3.4rem); max-width:900px; }
.page-hero h1 .accent{ color:var(--verde-avance); }
.page-hero .lead{ font-size:clamp(1.02rem,1.5vw,1.18rem); color:var(--muted); max-width:700px; margin:.4rem 0 0; }
@media(max-width:768px){ .page-hero{ padding:7rem 0 2.8rem; } }

/* ======= PROSE (texto de páginas de producto/servicio) ======= */
.prose .direct-answer{ background:var(--verde-soft); border-left:3px solid var(--verde-avance); border-radius:0 var(--radius) var(--radius) 0; padding:1.2rem 1.4rem; margin:0 0 1.6rem; color:var(--grafito); }
.prose .direct-answer strong{ color:var(--azul-profundo); }
.prose .check-list{ list-style:none; padding:0; margin:0 0 1.4rem; display:grid; gap:.7rem; }
.prose .check-list li{ position:relative; padding-left:1.7rem; color:var(--grafito); }
.prose .check-list li::before{ content:''; position:absolute; left:0; top:.6em; width:8px; height:8px; border-radius:2px; background:var(--verde-avance); }

/* ======= FORMULARIO CONTACTO ======= */
.form-card{ background:var(--white); border:1px solid var(--niebla); border-top:4px solid var(--verde-avance); border-radius:var(--radius-lg); padding:2.2rem; box-shadow:var(--shadow-sm); }
.form-row{ display:grid; gap:1.1rem; margin-bottom:1.1rem; }
@media(min-width:620px){ .form-row.two{ grid-template-columns:1fr 1fr; } }
.field label{ display:block; font-family:var(--font-display); font-weight:500; font-size:.82rem; color:var(--azul-profundo); margin-bottom:.4rem; }
.field input, .field select, .field textarea{ width:100%; font-family:var(--font-body); font-size:.96rem; color:var(--grafito); background:var(--niebla-2); border:1px solid var(--niebla); border-radius:9px; padding:.8rem 1rem; transition:border-color .25s, box-shadow .25s; }
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--verde-avance); box-shadow:0 0 0 3px rgba(30,158,110,.15); background:var(--white); }
.field textarea{ min-height:120px; resize:vertical; }

/* ======= BOTONES FLOTANTES (conversión) ======= */
.float-actions{ position:fixed; right:1.1rem; bottom:1.1rem; z-index:300; display:flex; flex-direction:column; gap:.7rem; }
.float-btn{ width:56px; height:56px; border-radius:50%; display:grid; place-items:center; box-shadow:0 10px 28px rgba(21,50,75,.28); color:var(--white); transition:transform .25s var(--ease-out-expo); }
.float-btn:hover{ transform:translateY(-3px) scale(1.04); }
.float-btn svg{ width:26px; height:26px; stroke:#fff; }
.float-wa{ background:#25D366; }
.float-call{ background:var(--azul-profundo); }
@media(min-width:900px){ .float-call{ display:none; } }

/* ======= LEGAL / PROSE LARGA ======= */
.legal-prose{ max-width:820px; margin:0 auto; }
.legal-prose h2{ font-size:clamp(1.4rem,2.6vw,1.8rem); margin-top:2.2rem; }
.legal-prose h3{ font-size:1.15rem; margin-top:1.6rem; }
.legal-prose p, .legal-prose li{ color:var(--grafito); font-size:1rem; line-height:1.75; }
.legal-prose ul{ padding-left:1.2rem; margin:0 0 1.2rem; }
.legal-prose ul li{ margin-bottom:.4rem; }
.legal-prose a{ color:var(--verde-avance); text-decoration:underline; }