
    /* ── Fuente de marca: Midnight Signature ── */
    @font-face {
      font-family: 'Midnight Signature';
      src: url('fonts/Midnight Signature.otf') format('opentype');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }

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

    :root {
      --ivory: #FFFFFF;
      --cream: #F2F2F2;
      --sand: #DEDEDE;
      --stone: #888888;
      --charcoal: #1C1C1C;
      --dark: #0F0F0F;
      --gold: #C9A84C;
      --gold-light: #D9BC74;
      --gold-pale: #EDD898;
      --teal: #1C1C1C;
      --teal-light: #2A2A2A;
      --white: #FFFFFF;
      --font-serif: 'Playfair Display', 'Book Antiqua', Palatino, serif;
      --font-sans: 'Jost', 'Gill Sans', 'Trebuchet MS', sans-serif;
      --font-brand: 'Midnight Signature', cursive;
      --nav-h: 80px;
      --section-pad: clamp(60px, 8vw, 120px);
      --container: 1280px;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font-sans); background: var(--dark); color: var(--white); line-height: 1.6; overflow-x: hidden; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    .container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,5vw,60px); }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: #1A1A1A; }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* ── NAV ── */
    .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); display: flex; align-items: center; transition: background .4s, box-shadow .4s; }
    .nav.scrolled { background: rgba(15,15,15,.97); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(0,0,0,.08); }
    .nav__inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,5vw,60px); width: 100%; display: flex; align-items: center; justify-content: space-between; }

    .nav__logo { display: flex; align-items: center; gap: 12px; }
    .nav__logo-img { width: 56px; height: 56px; object-fit: contain; filter: invert(1) sepia(1) saturate(0.3) brightness(0.4); }
    .nav__logo-text { display: flex; flex-direction: column; gap: 1px; }
    .nav__logo-name { font-family: var(--font-brand); font-size: clamp(20px,2.2vw,26px); font-weight: 400; letter-spacing: .02em; color: var(--white); line-height: 1.1; }
    .nav__logo-sub { font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-family: 'Cormorant Garamond', serif; font-weight: 300; }

    .nav__links { display: flex; align-items: center; gap: clamp(20px,3vw,44px); }
    .nav__links a { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,0.8); position: relative; padding-bottom: 2px; transition: color .3s; }
    .nav__links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
    .nav__links a:hover { color: var(--gold); }
    .nav__links a:hover::after { width: 100%; }
    .nav__cta { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; padding: 10px 22px; border: 1px solid var(--gold); color: var(--gold); background: transparent; transition: all .3s; }
    .nav__cta:hover { background: var(--gold); color: var(--white); }

    .nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 200; }
    .nav__burger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all .3s; }
    .nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav__burger.open span:nth-child(2) { opacity: 0; }
    .nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .nav__mobile { display: none; position: fixed; inset: 0; background: #0F0F0F; z-index: 100; flex-direction: column; align-items: center; justify-content: center; gap: 36px; opacity: 0; pointer-events: none; transition: opacity .3s; }
    .nav__mobile.open { opacity: 1; pointer-events: all; }
    .nav__mobile a { font-family: var(--font-serif); font-size: clamp(26px,5vw,40px); font-weight: 300; color: var(--white); transition: color .3s; }
    .nav__mobile a:hover { color: var(--gold); }

    /* ── HERO ── */
    .hero { min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
    .hero__left { display: flex; flex-direction: column; justify-content: flex-end; padding: calc(var(--nav-h) + 56px) clamp(20px,5vw,80px) 72px; background: var(--dark); }
    .hero__eyebrow { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
    .hero__eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
    .hero__title { font-family: var(--font-serif); font-size: clamp(40px,5.2vw,78px); font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 12px; letter-spacing: -.01em; }
    .hero__title em { font-style: italic; color:#5C5C54; }
    .hero__subtitle { font-family: var(--font-serif); font-size: clamp(16px,2vw,22px); font-weight: 300; color: var(--gold-light); letter-spacing: .04em; margin-bottom: 24px; font-style: italic; }
    .hero__desc { font-size: clamp(14px,1.4vw,16px); color: rgba(255,255,255,0.55); max-width: 400px; line-height: 1.75; margin-bottom: 44px; font-weight: 300; }
    .hero__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
    .btn-primary { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; padding: 15px 34px; background: var(--gold); color: var(--dark); position: relative; overflow: hidden; transition: all .35s; }
    .btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--white); transform: translateX(-100%); transition: transform .4s; }
    .btn-primary:hover::before { transform: translateX(0); }
    .btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
    .btn-outline { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #0F0F0F; display: flex; align-items: center; gap: 8px; transition: color .3s, gap .3s; }
    .btn-outline:hover { color: var(--gold); gap: 13px; }
    .services .btn-outline,
    .testimonials .btn-outline,
    .contact .btn-outline { color: #1C1C1C; }
    .services .btn-outline:hover,
    .testimonials .btn-outline:hover,
    .contact .btn-outline:hover { color: var(--gold); }
    .hero__stats { margin-top: 52px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; gap: 36px; flex-wrap: wrap; }
    .hero__stat-num { font-family: var(--font-serif); font-size: clamp(26px,3vw,38px); font-weight: 300; color: var(--gold); line-height: 1; }
    .hero__stat-label { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 5px; }

    .hero__right { position: relative; overflow: hidden; }
    .hero__photo-wrap { position: absolute; inset: 0; }
    .hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
    .hero__photo-fallback { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: none; }
    .hero__photo-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.5) 0%, transparent 30%), linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%); }
    .hero__info-card { position: absolute; bottom: 44px; left: 44px; right: 44px; background: rgba(255,255,255,0.07); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.15); padding: 28px 32px; display: flex; align-items: center; gap: 20px; }
    .hero__info-logo { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
    .hero__info-title { font-family: var(--font-serif); font-size: clamp(16px,1.8vw,20px); font-weight: 400; color: var(--white); line-height: 1.2; }
    .hero__info-sub { font-size: 11px; color: rgba(255,255,255,.65); letter-spacing: .06em; margin-top: 4px; font-style: italic; }
    .hero__scroll { position: absolute; bottom: 36px; right: 24px; display: flex; flex-direction: column; align-items: center; gap: 7px; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); animation: scrollPulse 2.5s ease-in-out infinite; }
    .hero__scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom,rgba(255,255,255,.5),transparent); }
    @keyframes scrollPulse { 0%,100%{opacity:.5;transform:translateY(0)} 50%{opacity:.25;transform:translateY(7px)} }

    /* ── MARQUEE ── */
    .intro-bar { background: #0F0F0F; padding: 20px 0; overflow: hidden; }
    .intro-bar__track { display: flex; gap: 56px; animation: marquee 28s linear infinite; white-space: nowrap; }
    .intro-bar__item { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6); flex-shrink: 0; display: flex; align-items: center; gap: 18px; }
    .intro-bar__item::after { content: '·'; color: var(--gold); }
    @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

    /* ── SECTION COMMON ── */
    .section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; margin-bottom: clamp(44px,6vw,76px); flex-wrap: wrap; }
    .section-eyebrow { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
    .section-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); }
    .section-title { font-family: var(--font-serif); font-size: clamp(30px,4vw,52px); font-weight: 300; color: #0F0F0F; line-height: 1.1; letter-spacing: -.01em; }
    .section-title em { font-style: italic; color: var(--teal); }

    /* ── SERVICES ── */
    .services { padding: var(--section-pad) 0; background: #FFFFFF; }
    /* Servicios carrusel */
    .services__carousel-wrap { position: relative; }

    /* Botones flotantes laterales */
    .services__btn-left,
    .services__btn-right {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: none;
      background: var(--white);
      color: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 24px rgba(0,0,0,0.18);
      transition: all .3s ease;
    }
    .services__btn-left { left: -26px; }
    .services__btn-right { right: -26px; }
    .services__btn-left:hover,
    .services__btn-right:hover { background: var(--gold); color: var(--dark); box-shadow: 0 6px 30px rgba(201,168,76,0.4); transform: translateY(-50%) scale(1.08); }
    .services__btn-left svg,
    .services__btn-right svg { width: 20px; height: 20px; }
    .services__btn-left:active,
    .services__btn-right:active { transform: translateY(-50%) scale(0.96); }

    /* Dots indicadores */
    .services__dots { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }
    .services__dot { width: 6px; height: 6px; border-radius: 50%; background: #CCCCCC; border: none; cursor: pointer; padding: 0; transition: all .3s; }
    .services__dot.active { background: var(--gold); width: 22px; border-radius: 3px; }

    .services__track-outer { overflow: hidden; border-radius: 0; }
    .services__grid { display: flex; gap: 20px; transition: transform 0.55s cubic-bezier(.4,0,.2,1); will-change: transform; align-items: stretch; }

    /* Card: misma altura total via grid interno */
    .services__grid .service-card {
      flex: 0 0 calc(33.333% - 14px);
      min-width: 260px;
      display: grid;
      grid-template-rows: 240px auto 1fr;
    }

    .service-card { background: #F2F2F2; overflow: hidden; position: relative; transition: background .4s, box-shadow .4s; }
    .service-card:hover { background: #FFFFFF; box-shadow: 0 12px 48px rgba(0,0,0,0.1); }
    .service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
    .service-card:hover::after { transform: scaleX(1); }

    /* Imagen: altura FIJA igual en todas las cards */
    .service-card__img {
      width: 100%;
      height: 240px;
      overflow: hidden;
      background: #1C1C1C;
      position: relative;
      flex-shrink: 0;
    }
    .service-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .6s; display: block; }
    .service-card__img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #141414, #252525); }
    .service-card:hover .service-card__img img { transform: scale(1.06); }

    /* Body: título siempre a la misma altura */
    .service-card__body { padding: 28px 28px 32px; display: flex; flex-direction: column; }
    .service-card__num { font-family: var(--font-sans); font-size: 10px; letter-spacing: .2em; color: var(--gold); font-weight: 500; margin-bottom: 12px; text-transform: uppercase; }
    .service-card__title { font-family: var(--font-serif); font-size: clamp(18px,1.8vw,22px); font-weight: 500; color: #0F0F0F; margin-bottom: 12px; line-height: 1.25; min-height: 2.6em; display: flex; align-items: flex-start; }
    .service-card__text { font-size: 13.5px; color: #666666; line-height: 1.7; flex: 1; }
    .service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
    .service-card:hover { background: #FFFFFF; box-shadow: 0 12px 48px rgba(0,0,0,0.1); }
    .service-card:hover::after { transform: scaleX(1); }
    .service-card__num { font-family: var(--font-serif); font-size: 11px; letter-spacing: .15em; color: var(--gold); font-weight:500; margin-bottom: 20px; }
    .service-card__icon { width: 40px; height: 40px; margin-bottom: 18px; color: var(--gold); }
    .service-card__title { font-family: var(--font-serif); font-size: clamp(19px,1.9vw,24px); font-weight: 400; color: #0F0F0F; margin-bottom: 12px; line-height: 1.2; }
    .service-card__text { font-size: 13.5px; color: #555555; line-height: 1.7; }

    /* ── TEAM ── */
    .team { padding: var(--section-pad) 0; background: #0A0A0A; position: relative; overflow: hidden; }
    .team .section-title { color: var(--white); }
    .team .section-eyebrow { color: var(--gold); }
    .team::before { content: ''; position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%); pointer-events: none; }
    .team__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,90px); align-items: center; }
    .team__carousel { position: relative; overflow: hidden; border-radius: 0; aspect-ratio: 3/4; min-height: 560px; }
    .team__carousel-track { display: flex; height: 100%; transition: transform 0.8s cubic-bezier(.4,0,.2,1); }
    .team__carousel-slide { flex: 0 0 100%; height: 100%; position: relative; overflow: hidden; }
    .team__carousel-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
    .team__carousel-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%); }
    .team__carousel-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
    .team__carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.35); border: none; cursor: pointer; transition: all .3s; padding: 0; }
    .team__carousel-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }
    .team__frame-accent { position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px; border: 1px solid rgba(201,168,76,0.2); pointer-events: none; z-index: -1; }
    .team__right { padding: 12px 0; }
    .team__eyebrow { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
    .team__eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); }
    .team__title { font-family: var(--font-brand); font-size: clamp(36px,4.5vw,60px); font-weight: 400; color: var(--white); line-height: 1.1; margin-bottom: 12px; }
    .team__subtitle { font-family: var(--font-sans); font-size: clamp(11px,1.2vw,13px); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; font-weight: 300; }
    .team__text { font-size: 14.5px; color: rgba(255,255,255,.48); line-height: 1.85; margin-bottom: 18px; font-weight: 300; }
    .team__credentials { margin-top: 36px; }
    .team__cred-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
    .team__cred-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
    .team__cred-text { font-size: 13.5px; color: rgba(255,255,255,.42); line-height: 1.5; }
    .team__cred-text strong { display: block; color: rgba(255,255,255,.82); font-weight: 400; margin-bottom: 1px; }
    .team__social { margin-top: 32px; display: flex; align-items: center; gap: 16px; }
    .team__social-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); }
    .team__social-link { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); padding: 8px 16px; border: 1px solid rgba(255,255,255,.12); transition: all .3s; }
    .team__social-link:hover { border-color: var(--gold); color: var(--gold); }
    .team__social-link svg { width: 15px; height: 15px; }

        /* ── PROCESS ── */
    .process { padding: var(--section-pad) 0; background: #161616; }
    .process .section-title { color: var(--white); }
    .process .section-title em { color: #5C5C54; }
    .process .section-eyebrow { color: var(--gold); }
    .process__steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: clamp(44px,6vw,76px); }
    .process__step { background: #1E1E1E; padding: clamp(28px,4vw,44px) clamp(20px,3vw,32px); position: relative; transition: background .3s; }
    .process__step:hover { background: #252525; }
    .process__step-num { font-family: var(--font-serif); font-size: clamp(44px,5vw,68px); font-weight: 300; color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 18px; transition: color .3s; }
    .process__step:hover .process__step-num { color: rgba(201,168,76,0.5); }
    .process__step-title { font-family: var(--font-serif); font-size: clamp(17px,1.7vw,21px); font-weight: 400; color: var(--white); margin-bottom: 10px; }
    .process__step-text { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.7; }

    /* ── TESTIMONIALS ── */
    .testimonials { padding: var(--section-pad) 0; background: #FFFFFF; }
    .testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: clamp(44px,6vw,76px); }
    .testimonial-card { background: #F7F7F7; padding: clamp(28px,4vw,44px); border: 1px solid #E0E0E0; position: relative; transition: transform .3s, box-shadow .3s; }
    .testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.06); }
    .testimonial-card__quote { font-family: var(--font-serif); font-size: 44px; color: var(--gold-pale); line-height: .5; margin-bottom: 18px; }
    .testimonial-card__text { font-size: 14.5px; color: #666666; line-height: 1.8; font-style: italic; margin-bottom: 24px; font-family: var(--font-serif); font-weight: 300; }
    .testimonial-card__author { display: flex; align-items: center; gap: 12px; }
    .testimonial-card__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--charcoal); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 17px; color: var(--white); flex-shrink: 0; }
    .testimonial-card__name { font-size: 13.5px; font-weight: 500; color: #0F0F0F; }
    .testimonial-card__role { font-size: 11.5px; color: var(--stone); }
    .testimonial-card__stars { position: absolute; top: 28px; right: 28px; display: flex; gap: 2px; }
    .star { width: 11px; height: 11px; color: var(--gold); }

    /* ── CTA ── */
    .cta-banner { padding: clamp(56px,8vw,96px) 0; background: var(--gold); position: relative; overflow: hidden; }
    .cta-banner::before { content: ''; position: absolute; top:-60%; right:-10%; width:700px; height:700px; border-radius:50%; background: radial-gradient(circle, rgba(0,0,0,0.15) 0%, transparent 70%); }
    .cta-banner__inner { text-align: center; position: relative; z-index: 1; }
    .cta-banner__eyebrow { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(15,15,15,0.6); margin-bottom: 18px; display: flex; align-items: center; justify-content: center; gap: 12px; }
    .cta-banner__eyebrow::before,.cta-banner__eyebrow::after { content:''; width:18px; height:1px; background:rgba(15,15,15,0.4); }
    .cta-banner__title { font-family: var(--font-serif); font-size: clamp(32px,5vw,60px); font-weight: 300; color: var(--dark); line-height: 1.1; margin-bottom: 18px; }
    .cta-banner__title em { font-style: italic; color: var(--dark); }
    .cta-banner__text { font-size: 15px; color: rgba(15,15,15,0.65); max-width: 500px; margin: 0 auto 44px; line-height: 1.7; font-weight: 300; }
    .cta-banner__actions { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; }
    .btn-light { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; padding: 15px 38px; background: var(--dark); color: var(--white); transition: all .35s; }
    .btn-light:hover { background: #0F0F0F; color: var(--gold); }
    .btn-ghost { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; padding: 15px 38px; border: 1px solid rgba(15,15,15,0.35); color: var(--dark); transition: all .35s; }
    .btn-ghost:hover { border-color: var(--dark); background: rgba(15,15,15,0.1); }

    /* ── CONTACT ── */
    .contact { padding: var(--section-pad) 0; background: #FFFFFF; }
    .contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,7vw,96px); align-items: start; }
    .contact__info-item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid #E0E0E0; align-items: flex-start; }
    .contact__info-icon { width: 42px; height: 42px; background: #F0F0F0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
    .contact__info-label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: #888888; margin-bottom: 3px; }
    .contact__info-value { font-size: 14.5px; color: #0F0F0F; }
    .contact__map { margin-top: 24px; overflow: hidden; border: 1px solid #E0E0E0; }
    .contact__map-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 6px; font-size: 12px; letter-spacing: .06em; color: var(--gold); text-decoration: none; transition: color .3s; font-weight: 500; }
    .contact__map-link:hover { color: #0F0F0F; }
    .contact__map-link svg { transition: transform .3s; }
    .contact__map-link:hover svg { transform: translate(2px,-2px); }
    .contact__form { background: #F7F7F7; padding: clamp(28px,5vw,52px); border: 1px solid #E0E0E0; }
    .form-title { font-family: var(--font-serif); font-size: clamp(20px,2.5vw,28px); font-weight: 400; color: #0F0F0F; margin-bottom: 28px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { margin-bottom: 18px; }
    .form-label { display: block; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #777777; margin-bottom: 7px; }
    .form-input,.form-select,.form-textarea { width: 100%; padding: 13px 15px; border: 1px solid #DDDDDD; background: var(--white); font-family: var(--font-sans); font-size: 13.5px; color: #0F0F0F; outline: none; transition: border-color .3s; }
    .form-input:focus,.form-select:focus,.form-textarea:focus { border-color: var(--gold); background: var(--white); }
    .form-textarea { resize: vertical; min-height: 96px; }
    .form-submit { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; padding: 15px 38px; background: var(--charcoal); color: var(--white); width: 100%; justify-content: center; transition: background .3s; cursor: pointer; border: none; font-family: var(--font-sans); margin-top: 6px; }
    .form-submit:hover { background: var(--gold); color: var(--dark); }

    /* ── FOOTER ── */
    footer { background: var(--dark); padding: 60px 0 28px; }
    .footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 28px; }
    .footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .footer__brand-img { width: 40px; height: 40px; object-fit: contain; }
    .footer__brand-name { font-family: var(--font-brand); font-size: 26px; font-weight: 400; color: var(--white); }
    .footer__brand-sub { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); margin-bottom: 16px; margin-left: 46px; }
    .footer__desc { font-size: 12.5px; color: rgba(255,255,255,.3); line-height: 1.8; max-width: 270px; }
    .footer__col-title { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
    .footer__col-links { display: flex; flex-direction: column; gap: 9px; }
    .footer__col-links a { font-size: 12.5px; color: rgba(255,255,255,.35); transition: color .3s; }
    .footer__col-links a:hover { color: var(--white); }
    .footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
    .footer__copy { font-size: 11px; color: rgba(255,255,255,.2); }
    .footer__sadara { font-size: 11px; color: rgba(255,255,255,.25); letter-spacing: .04em; }
    .footer__sadara a { color: var(--gold); text-decoration: none; transition: color .3s; font-weight: 500; }
    .footer__sadara a:hover { color: var(--gold-light); }

    /* ── WHATSAPP ── */
    .wa-float { position: fixed; bottom: 30px; right: 30px; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .3s, box-shadow .3s; }
    .wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
    .wa-float svg { width: 27px; height: 27px; color: var(--white); }

    /* ── FADE ANIMATION ── */
    .fade-up { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up:nth-child(2){transition-delay:.1s}
    .fade-up:nth-child(3){transition-delay:.2s}
    .fade-up:nth-child(4){transition-delay:.3s}
    .fade-up:nth-child(5){transition-delay:.4s}
    .fade-up:nth-child(6){transition-delay:.5s}

    /* ── RESPONSIVE ── */
    /* ══════════════════════════════
       RESPONSIVE — 100% ADAPTABLE
    ══════════════════════════════ */

    /* ── Tablet grande (≤1200px) ── */
    @media(max-width:1200px){
      .services__grid .service-card { flex: 0 0 calc(50% - 10px); }
    }

    /* ── Tablet (≤1024px) ── */
    @media(max-width:1024px){
      .process__steps { grid-template-columns: repeat(2,1fr); }
      .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
      .team__carousel { aspect-ratio: 4/3; min-height: 380px; }
    }

    /* ── Tablet pequeña / móvil grande (≤900px) ── */
    @media(max-width:900px){
      /* Hero */
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero__left { padding: calc(var(--nav-h) + 36px) clamp(20px,5vw,60px) 56px; min-height: 88svh; }
      .hero__right { min-height: 50svh; }
      .hero__video { display: none !important; }
      .hero__photo-fallback { display: block !important; }
      .hero__info-card { left: 20px; right: 20px; bottom: 20px; padding: 20px 22px; }

      /* Nav */
      .nav__links { display: none; }
      .nav__cta { display: none; }
      .nav__burger { display: flex; }
      .nav__mobile { display: flex; }

      /* Servicios — 1 card visible en tablet pequeña */
      .services__grid .service-card { flex: 0 0 calc(100% - 0px); }
      .services__btn-left { left: -18px; width: 44px; height: 44px; }
      .services__btn-right { right: -18px; width: 44px; height: 44px; }

      /* Equipo */
      .team__inner { grid-template-columns: 1fr; }
      .team__carousel { aspect-ratio: 16/9; min-height: 300px; }

      /* Proceso */
      .process__steps { grid-template-columns: repeat(2,1fr); }

      /* Testimonios */
      .testimonials__grid { grid-template-columns: 1fr; }

      /* Contacto */
      .contact__grid { grid-template-columns: 1fr; }
    }

    /* ── Móvil (≤640px) ── */
    @media(max-width:640px){
      :root { --nav-h: 64px; }

      /* Hero */
      .hero__title { font-size: clamp(36px,10vw,52px); }
      .hero__actions { flex-direction: column; align-items: flex-start; }
      .hero__stats { gap: 20px; }
      .hero__stat-num { font-size: 26px; }

      /* Servicios */
      .services__grid .service-card { flex: 0 0 calc(100% - 0px); min-width: unset; }
      .services__carousel-wrap { padding: 0 20px; }
      .services__btn-left { left: -10px; width: 36px; height: 36px; }
      .services__btn-right { right: -10px; width: 36px; height: 36px; }
      .services__btn-left svg, .services__btn-right svg { width: 16px; height: 16px; }
      .service-card__img { height: 200px; }
      .services__grid .service-card { grid-template-rows: 200px auto 1fr; }

      /* Equipo */
      .team__carousel { aspect-ratio: 4/3; min-height: 260px; }
      .team__title { font-size: 38px; }

      /* Proceso */
      .process__steps { grid-template-columns: 1fr; }

      /* Footer */
      .footer__top { grid-template-columns: 1fr; gap: 28px; }
      .footer__bottom { flex-direction: column; text-align: center; gap: 10px; }
      .footer__brand-sub { margin-left: 0; margin-top: 4px; }

      /* Formulario */
      .form-row { grid-template-columns: 1fr; }

      /* CTA */
      .cta-banner__actions { flex-direction: column; align-items: center; }
      .btn-light, .btn-ghost { width: 100%; justify-content: center; text-align: center; }

      /* WhatsApp float */
      .wa-float { bottom: 18px; right: 16px; width: 50px; height: 50px; }
    }

    /* ── Móvil muy pequeño (≤380px) ── */
    @media(max-width:380px){
      .hero__eyebrow { font-size: 9px; }
      .nav__logo-name { font-size: 16px; }
      .nav__logo-sub { display: none; }
      .hero__badge, .hero__info-card { padding: 16px 18px; }
      .service-card__img { height: 170px; }
      .services__grid .service-card { grid-template-rows: 170px auto 1fr; }
    }

  