:root {
    --black: #1a1714;
    --warm-white: #f5f0e8;
    --sand: #c9a87a;
    --earth: #8c5e2a;
    --dark-earth: #5a3a18;
    --sage: #6b7c5e;
    --muted: #7a6a5a;
    --accent: #c9622a;
    --bg-secondary: #e8dfd0;
    --bg-mid: #d4c4a8;
    --cta: #c9622a;
    --cta-hover: #a84e20;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--warm-white);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  a, a:hover, a:focus {
    text-decoration: none;
    outline: none;
  }

  a:focus {
    color: currentColor!important;
  }

  /* ── NAV ── */
  nav {
    /*position: fixed;*/
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 56px;
    mix-blend-mode: normal;
    background: rgba(58,44,30,0.96);
    transition: background 0.4s, padding 0.4s;
  }

  
  nav.scrolled {
    position: fixed;
    background: rgba(58,44,30,0.96);
    backdrop-filter: blur(8px);
    padding: 18px 56px;
  }
  nav.scrolled .nav-logo {
    display: none;
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--warm-white);
    text-decoration: none;
  }
  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin-bottom: 0;
    width: 60%;
    justify-content: flex-end;
  }
  .nav-links a {
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--warm-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  .nav-links a:hover { opacity: 1; }
  .nav-cta {
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-white);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 10px 22px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .nav-cta:hover {
    border-color: var(--warm-white);
    color: var(--warm-white);
    background: rgba(255,255,255,0.08);
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(26,23,20,0.22) 0%, rgba(26,23,20,0.76) 100%),
      url('../images/bg-hero.png') center/cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 14s ease-out forwards;
  }
  @keyframes heroZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.00); }
  }

  .hero-content {
    position: relative;
    padding: 0 56px 80px;
    max-width: 820px;
    animation: fadeUp 1.2s 0.3s both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 0px;
    display: block;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 8vw, 80px);
    font-weight: 300;
    line-height: 0.9;
    margin-top: 10px;
    color: var(--warm-white);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--sand);
  }
  .hero-sub {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(245,242,236,0.88);
    width: 640px;
    max-width: 100%;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
  }
  .btn-primary {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--warm-white);
    border: 1px solid rgba(245,240,232,0.6);
    padding: 16px 38px;
    text-decoration: none;
    background-color: transparent;
    transition: background 0.25s, border-color 0.25s;
  }
  .btn-primary:hover {
    background: var(--cta);
    border-color: var(--cta);
    color: var(--warm-white);
  }
  .btn-light {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--warm-white);
    border: 1px solid rgba(245,240,232,0.6);
    padding: 16px 38px;
    text-decoration: none;
    background-color: transparent;
    transition: background 0.25s, border-color 0.25s;
  }
  .btn-light:hover {
    background: var(--cta);
    border-color: var(--cta);
    color: var(--warm-white);
  }
  .hero-note {
    display: block;
    margin-top: 18px;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: rgba(245,242,236,0.55);
    font-style: italic;
  }

  .hero-scroll {
    position: absolute;
    right: 56px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(245,242,236,0.5);
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    animation: fadeUp 1.2s 0.9s both;
  }
  .hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(245,242,236,0.5), transparent);
    animation: scrollPulse 2s infinite;
  }
  @keyframes scrollPulse {
    0%,100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  /* ── SECTION UTILITIES ── */
  section { position: relative; }

  .label {
    font-size: 14px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 16px;
    white-space: wrap;
  }

  /* ── SECTION 2: HOW YOU TRAVEL — ASYMMETRIC ── */
  .section-how {
    background: var(--warm-white);
    min-height: 100vh;
    border-top: 4px solid var(--bg-secondary);
    position: relative;
    overflow: hidden;
  }

  .how-image-panel {
    position: fixed;
    top: 0; right: 0;
    width: 42vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s;
  }
  .how-image-panel.active { opacity: 1; }

  .how-image-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  .how-image-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(245,240,232,0.4) 0%, transparent 100%);
  }
  .how-image-slide.active { opacity: 1; }

  .how-text-panel {
    position: relative;
    z-index: 2;
    width: 58vw;
    padding: 0 0 0 56px;
  }

  .how-intro {
    padding: 120px 80px 80px 0;
    border-bottom: 1px solid rgba(14,13,11,0.1);
  }
  .how-intro .label { color: var(--earth); }
  .how-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--black);
    margin-bottom: 28px;
  }
  .how-intro h2 em { font-style: italic; color: var(--cta); }
  .how-intro p {
    font-size: 15px;
    line-height: 1.9;
    color: #3a2e24;
    max-width: 480px;
  }

  .exp-row {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(14,13,11,0.08);
    padding: 0 80px 0 0;
    cursor: pointer;
    transition: background 0.3s;
  }
  .exp-row:hover { background: rgba(184,134,78,0.04); }
  .exp-row.active { background: rgba(184,134,78,0.06); }

  .exp-row-num {
    padding: 40px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: rgba(14,13,11,0.2);
    letter-spacing: 0.05em;
    transition: color 0.3s;
    align-self: start;
    text-align: center;
    padding-top: 42px;
  }
  .exp-row.active .exp-row-num { color: var(--accent); }

  .exp-row-body {
    padding: 36px 0;
    border-left: 2px solid transparent;
    padding-left: 28px;
    transition: border-color 0.3s;
  }
  .exp-row.active .exp-row-body { border-left-color: var(--accent); }

  .exp-row-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 300;
    color: rgba(14,13,11,0.4);
    line-height: 1.15;
    margin-bottom: 0;
    transition: color 0.3s, font-size 0.3s;
  }
  .exp-row.active .exp-row-title {
    color: var(--black);
    font-size: clamp(26px, 3.2vw, 40px);
  }

  .exp-row-desc {
    font-size: 12.5px;
    line-height: 1.85;
    color: #9a9188;
    max-width: 420px;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.5s ease, margin-top 0.3s, color 0.3s;
  }
  .exp-row.active .exp-row-desc {
    max-height: 120px;
    margin-top: 12px;
    color: #3a3530;
  }

  .how-footer {
    padding: 60px 80px 100px 0;
  }
  .btn-outline-light {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--earth);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 4px;
    text-decoration: none;
    transition: color 0.2s;
  }
  .btn-outline-light:hover { color: var(--black); }

  /* ── SECTION 3: HOW WE WORK — EDITORIAL STEPS ── */
  .section-work {
    background: var(--warm-white);
    padding: 140px 56px;
    color: var(--black);
    border-top: 4px solid var(--cta);
  }
  .work-inner { max-width: 1200px; margin: 0 auto; }

  .work-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
  }
  .work-top h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 5.5vw, 80px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--black);
  }
  .work-top h2 em { font-style: italic; color: var(--cta); }
  .work-top h2 em { font-style: italic; color: var(--earth); }
  .work-top-right .pull-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    color: var(--cta);
    line-height: 1.5;
    border-left: 3px solid var(--cta);
    padding-left: 24px;
    margin-bottom: 20px;
  }
  .work-top-right p {
    font-size: 15px;
    line-height: 1.9;
    color: #3a2e24;
    margin-bottom: 0;
  }

  /* Editorial steps */
  .work-steps { border-top: 1px solid rgba(14,13,11,0.1); }

  .work-step {
    display: grid;
    grid-template-columns: 120px 1fr 1fr;
    gap: 0 48px;
    align-items: baseline;
    border-bottom: 1px solid rgba(14,13,11,0.08);
    padding: 40px 56px;
    margin: 0 -56px;
    transition: filter 0.25s;
  }
  .work-step:hover { filter: brightness(0.95); }

  .work-step:nth-child(1) { background: #f5f2ec; }
  .work-step:nth-child(2) { background: #ede8df; }
  .work-step:nth-child(3) { background: #e5ddd2; }
  .work-step:nth-child(4) { background: #dcd3c5; }
  .work-step:nth-child(5) { background: #d2c8b8; }
  .work-step:nth-child(6) { background: #c8bcaa; }

  .ws-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(56px, 7vw, 96px);
    font-weight: 300;
    line-height: 1;
    color: rgba(14,13,11,0.08);
    transition: color 0.25s;
    letter-spacing: -0.02em;
  }
  .work-step:hover .ws-num { color: var(--accent); opacity: 0.35; }

  .ws-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 300;
    color: var(--black);
    line-height: 1.2;
    align-self: center;
  }

  .ws-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #3a2e24;
    align-self: center;
    padding-left: 24px;
    border-left: 1px solid rgba(14,13,11,0.1);
  }

  .work-footer {
    margin-top: 64px;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .btn-dark-outline {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--black);
    border: 1px solid rgba(14,13,11,0.4);
    padding: 16px 38px;
    text-decoration: none;
    transition: border-color 0.25s, background 0.25s, color 0.25s;
  }
  .btn-dark-outline:hover {
    border-color: var(--cta);
    background: var(--cta);
    color: var(--warm-white);
  }
  .work-footer-note {
    font-size: 12px;
    color: var(--muted);
    font-style: italic;
  }

  /* ── ABOUT SECTION ── */
  .section-about {
    background: var(--bg-secondary);
    padding: 120px 56px;
    overflow: hidden;
  }
  .about-inner { max-width: 1200px; margin: 0 auto; }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }

  .about-text-col h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.2vw, 58px);
    font-weight: 300;
    line-height: 1.12;
    margin-bottom: 28px;
    color: var(--black);
  }
  .about-text-col h2 em { font-style: italic; color: var(--earth); }
  .about-text-col p {
    font-size: 15px;
    line-height: 1.9;
    color: #2c3028;
    margin-bottom: 18px;
  }
  .about-perspective {
    margin-top: 32px;
    padding: 24px 28px;
    background: rgba(74,103,65,0.08);
    border-left: 2px solid var(--cta);
    border-radius: 0;
  }
  .about-perspective p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    color: var(--dark-earth);
    line-height: 1.6;
    margin-bottom: 0 !important;
  }

  .about-photos{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.about-photo-item{
    position:relative;
    overflow:hidden;
}

.about-photo-item img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    filter:saturate(0.88);
    transition:transform .55s ease;
}

.about-photo-item:hover img{
    transform:scale(1.04);
}

/* FOTO SUPERIOR */
.about-photo-item.large{
    grid-column:1 / 3;
    height:420px;
}

/* FOTOS INFERIORES */
.about-photo-row{
    display:contents;
}

.about-photo-row .about-photo-item{
    height:260px;
}

/* TABLET */
@media (max-width:991px){

    .about-photo-item.large{
        height:340px;
    }

    .about-photo-row .about-photo-item{
        height:220px;
    }

}

/* MOBILE */
@media (max-width:767px){

    .about-photos{
        grid-template-columns:1fr;
    }

    .about-photo-item.large{
        grid-column:auto;
        height:280px;
    }

    .about-photo-row .about-photo-item{
        height:220px;
    }

}
  .about-photo-item.small {
    grid-column: 2;
    aspect-ratio: 4/3;
  }
  .about-photo-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 10px 14px;
    background: linear-gradient(to top, rgba(26,23,20,0.72) 0%, transparent 100%);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.9);
  }
  .about-photo-caption span {
    display: block;
    font-size: 9px;
    opacity: 0.6;
    margin-top: 2px;
    letter-spacing: 0.1em;
  }
  .about-location-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-block;
    flex-shrink: 0;
  }


  /* ── FULLBLEED INTERLUDE ── */
  .section-fullbleed {
    position: relative;
    height: 70vh;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .fullbleed-bg {
    position: absolute;
    inset: 0;
    background: url('../images/bg-fullbleed.jpg') center/cover no-repeat;
    transition: transform 0.1s linear;
  }
  .fullbleed-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(
      135deg,
      rgba(201,98,42,0.72) 0%,
      rgba(90,53,24,0.55) 100%
    );*/
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 100%);
  }
  .fullbleed-content {
    position: relative;
    z-index: 2;
    padding: 0 56px;
    max-width: 900px;
  }
  .fullbleed-content .label { color: rgba(245,240,232,0.7); margin-bottom: 20px; }
  .fullbleed-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 300;
    font-style: italic;
    color: #f5f0e8;
    line-height: 1.15;
    margin-bottom: 32px;
  }
  .fullbleed-sub {
    font-size: 15px;
    color: rgba(245,240,232,0.75);
    max-width: 480px;
    line-height: 1.8;
  }

  /* ── SECTION 4: JOURNEYS — HORIZONTAL ACCORDION ── */
  .section-journeys {
    background: #1e1a16;
    padding: 120px 56px;
  }
  .journeys-inner { max-width: 1200px; margin: 0 auto; }
  .journeys-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 48px;
  }
  .journeys-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    color: #f5f0e8;
    margin-bottom: 28px;
  }

  .journeys-header p {
    color: #f5f0e8;
  }
  .journeys-header h2 em { font-style: italic; color: var(--sand); }
  .journeys-header-note {
    font-size: 12px;
    color: rgba(245,242,236,0.4);
    max-width: 260px;
    text-align: right;
    line-height: 1.7;
    font-style: italic;
  }

  /* Accordion panels */
  .journeys-panels {
    display: flex;
    height: 520px;
  }

  .j-panel {
    position: relative;
    overflow: hidden;
    flex: 1;
    transition: flex 0.72s cubic-bezier(0.77,0,0.175,1);
    border-right: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    background: #3a2c1e;
  }
  .j-panel:last-child { border-right: none; }
  .j-panel.active { flex: 5; }

  .j-panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.72s cubic-bezier(0.77,0,0.175,1), filter 0.6s;
    filter: brightness(0.35) saturate(0.75);
  }
  .j-panel.active .j-panel-bg {
    transform: scale(1.04);
    filter: brightness(0.5) saturate(0.9);
  }

  .j-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,13,11,0.92) 0%, rgba(14,13,11,0.15) 55%, transparent 100%);
    pointer-events: none;
  }

  .j-panel-collapsed-label {
    position: absolute;
    width: 100%;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    transform-origin: center;
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245,242,236,0.3);
    z-index: 2;
    transition: opacity 0.3s;
  }
  .j-panel.active .j-panel-collapsed-label { opacity: 0; }

  .j-panel-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0 40px 40px;
    z-index: 3;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s 0.26s, transform 0.4s 0.26s;
    pointer-events: none;
  }
  .j-panel.active .j-panel-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .j-panel-dest {
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sand);
    display: block;
    margin-bottom: 10px;
  }
  .j-panel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 300;
    color: var(--warm-white);
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .j-panel-desc {
    font-size: 14px;
    line-height: 1.85;
    color: rgba(245,242,236,0.72);
    max-width: 340px;
    margin-bottom: 20px;
  }
  .j-panel-link {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sand);
    border-bottom: 1px solid rgba(201,185,154,0.4);
    padding-bottom: 3px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .j-panel-link:hover { color: var(--warm-white); border-color: var(--warm-white); }

  .journeys-cta {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .journeys-cta p {
    font-size: 12px;
    color: rgba(245,242,236,0.35);
    font-style: italic;
  }

  /* ── SECTION 5: WHY US ── */
  .section-why {
    background: #2a2018;
    padding: 140px 56px;
    color: var(--warm-white);
    position: relative;
    overflow: hidden;
  }
  .section-why::before {
    content: '54';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 340px;
    font-weight: 300;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -0.05em;
  }
  .why-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .why-inner .label { color: var(--sand); margin-bottom: 24px; }
  .why-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 66px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 48px;
  }
  .why-inner h2 em { font-style: italic; color: #c9a87a; }
  .why-text {
    font-size: 16px;
    line-height: 1.95;
    color: rgba(245,242,236,0.85);
    text-align: left;
  }
  .why-text p { margin-bottom: 22px; }
  .why-text p:last-child { margin-bottom: 0; }
  .why-text-dest {
    font-size: 16px;
    line-height: 1.95;
    color: rgba(245,242,236,0.85);
    text-align: left;
  }
  .why-text-dest p { margin-bottom: 22px; }
  .why-text-dest p:last-child { margin-bottom: 0; }
  .why-cta {
    margin-top: 56px;
    text-align: center;
  }

  /* ── SECTION 6: FINAL CTA ── */
  .section-cta {
    background: var(--warm-white);
    padding: 140px 56px;
    text-align: center;
  }
  .cta-inner { max-width: 640px; margin: 0 auto; }
  .cta-inner .label { color: var(--earth); margin-bottom: 24px; }
  .cta-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  .cta-inner h2 em { font-style: italic; color: var(--cta); }
  .cta-inner p {
    font-size: 15px;
    line-height: 1.85;
    color: #3a2e24;
    margin-bottom: 44px;
  }
  .cta-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .btn-dark {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--cta);
    border-radius: 0;
    padding: 18px 48px;
    text-decoration: none;
    transition: background 0.25s;
  }
  .btn-dark:hover { background: var(--cta-hover); color: var(--warm-white); }
  .cta-note {
    font-size: 11px;
    color: var(--muted);
    font-style: italic;
  }
  .cta-text {
    font-size: 15px;
    line-height: 1.9;
    color: #3a2e24;
    max-width: 480px;
    margin-top: 100px;
  }
  .btn-brown {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--dark-earth);
    border-radius: 0;
    padding: 18px 48px;
    text-decoration: none;
    transition: background 0.25s;
  }
  .btn-brown:hover { background: var(--black); color: var(--warm-white); }
  .cta-note {
    font-size: 11px;
    color: var(--muted);
    font-style: italic;
  }

  /* ── FOOTER ── */
  footer {
    background: #3a2c1e;
    color: var(--warm-white);
    padding: 64px 56px 40px;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .nav-logo { font-size: 20px; display: block; margin-bottom: 16px; }
  .footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(245,242,236,0.6);
  }
  .footer-col h4 {
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul a, .footer-col ul p {
    font-size: 14px;
    color: rgba(245,242,236,0.55);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--warm-white); }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom p {
    font-size: 11px;
    color: rgba(245,242,236,0.25);
  }

  .why-mobile-statement {
    display: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 7vw, 38px);
    font-weight: 300;
    font-style: italic;
    color: rgba(245,242,236,0.85);
    line-height: 1.4;
    text-align: center;
    margin-bottom: 40px;
  }

  /* ── RESPONSIVE — MOBILE ── */
  @media (max-width: 768px) {

    /* NAV */
    nav { padding: 20px 24px; }
    nav.scrolled { padding: 14px 24px; }
    .nav-cta { padding: 8px 16px; font-size: 10px; }

    /* HERO */
    .hero { min-height: 100svh; align-items: flex-end; }
    .hero-content { padding: 0 24px 64px; max-width: 100%; }
    .hero h1 { font-size: clamp(36px, 11vw, 52px); }
    .hero-sub { font-size: 13px; max-width: 100%; }
    .hero-scroll { display: none; }

    /* SECTION 2: HOW YOU TRAVEL */
    .section-how { min-height: auto; }
    .how-image-panel { display: none; }
    .how-text-panel { width: 100%; padding: 0 24px; }
    .how-intro { padding: 72px 0 48px; }
    .how-intro h2 { font-size: clamp(32px, 9vw, 48px); }

    /* SECTION 3: HOW WE WORK */
    .section-work { padding: 80px 24px; overflow: hidden; }
    .work-top { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
    .work-top-right .pull-quote { font-size: 18px; }
    .work-step {
      grid-template-columns: 48px 1fr;
      grid-template-rows: auto auto;
      gap: 0 16px;
      padding: 24px 0;
      margin: 0 !important;
    }
    .ws-num { font-size: clamp(36px, 10vw, 56px); }
    .ws-title { font-size: clamp(17px, 4.5vw, 22px); color: var(--black); }
    .ws-desc {
      grid-column: 1 / -1;
      font-size: 13.5px;
      color: #3a3530;
      padding-left: 0;
      border-left: none;
      border-top: 1px solid rgba(14,13,11,0.1);
      padding-top: 12px;
      margin-top: 12px;
    }
    .work-footer { flex-direction: column; align-items: flex-start; gap: 16px; }

    /* FULLBLEED */
    .section-fullbleed { height: 55vh; min-height: 360px; }
    .fullbleed-content { padding: 0 24px; }
    .fullbleed-quote { font-size: clamp(28px, 8vw, 44px); }

    /* SECTION 4: JOURNEYS */
    .section-journeys { padding: 80px 24px; }
    .journeys-header { flex-direction: column; gap: 16px; margin-bottom: 32px; }
    .journeys-header-note { text-align: left; max-width: 100%; }
    .journeys-panels {
      flex-direction: column;
      height: auto;
    }
    .j-panel {
      flex: none !important;
      height: 280px;
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: none;
    }
    .j-panel:last-child { border-bottom: none; }
    .j-panel.active { height: 380px; }
    .destinations-panels { height: auto!important; }
    .j-panel-collapsed-label { display: none; }
    .j-panel-content {
      opacity: 1 !important;
      transform: none !important;
      transition: none;
    }
    .j-panel-title { font-size: 26px; }
    .j-panel-desc { font-size: 12px; }
    .journeys-cta { flex-direction: column; gap: 16px; align-items: flex-start; }

    /* ABOUT */
    .section-about { padding: 80px 24px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-text-col h2 { font-size: clamp(28px, 8vw, 40px); }
    .about-photos { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
    .about-photo-item.large { grid-column: 1 / -1; grid-row: 1; aspect-ratio: 16/9; }
    .about-photo-item.small { grid-column: auto; aspect-ratio: 1/1; }

    /* HOW YOU TRAVEL — hide numbers on mobile */
    .exp-row { grid-template-columns: 1fr; }
    .exp-row-num { display: none; }
    .exp-row-body { border-left: none; padding-left: 0; border-top: 2px solid transparent; padding-top: 20px; }
    .exp-row.active .exp-row-body { border-top-color: var(--accent); border-left: none; }

    /* WHY US — big statement on mobile */
    .why-text { display: none; }
    .why-mobile-statement { display: block; }
    .section-why { padding: 80px 24px; }
    .section-why::before { font-size: 180px; right: -10px; }

    /* FINAL CTA */
    .section-cta { padding: 80px 24px; }
    .cta-inner h2 { font-size: clamp(32px, 9vw, 48px); }

    /* FOOTER */
    footer { padding: 48px 24px 32px; }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  }

  @media (max-width: 480px) {
    .hero h1 { font-size: clamp(30px, 10vw, 42px); }
    .btn-primary { padding: 14px 28px; font-size: 10px; }
    .how-intro h2 { font-size: clamp(28px, 9vw, 38px); }
    .work-top h2 { font-size: clamp(32px, 10vw, 44px); }
    .j-panel { height: 240px; }
    .j-panel.active { height: 340px; }
    .destinations-panels { height: auto!important; }
    .j-panel-desc-dest {
      max-width: 100%!important;
    }
  }
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── DIVIDER ── */
  .divider {
    width: 48px;
    height: 1px;
    background: var(--cta);
    margin: 0 0 32px;
  }

  #consultar {
    background: #131313;
    padding: 10px 0;
    font-size: 15px;
  }

  #consultar a {
      color:#FFFFFF;
  }

  /* DESTINATIONS */

  .hero-destinations {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    overflow: hidden;
  }
  .hero-destinations-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(26,23,20,0.22) 0%, rgba(26,23,20,0.76) 100%),
      url('../images/bg-hero-destinations.png') center/cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 14s ease-out forwards;
  }
  @keyframes heroZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.00); }
  }

  .hero-destinations h1 {
    font-size: clamp(36px, 5vw, 60px)!important;
  }

  /* BUENOS AIRES*/

  .hero-buenos-aires-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(26,23,20,0.22) 0%, rgba(26,23,20,0.76) 100%),
      url('../images/bg-hero-buenos-aires.png') center/cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 14s ease-out forwards;
  }

  /* ── FULLBLEED INTERLUDE ── */
  .section-fullbleed-destination {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 50px 0;
    background-color: rgba(58,44,30,0.96);
  }
  /*.fullbleed-bg-destination {
    position: absolute;
    inset: 0;
    background: url('../images/bg-fullbleed-buenos-aires.jpg') center/cover no-repeat;
    background-color: rgba(58,44,30,0.96);
    padding: 50px 0;
    transition: transform 0.1s linear;
  }
  .fullbleed-overlay-destination {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(201,98,42,0.72) 0%,
      rgba(90,53,24,0.55) 100%
    );
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
  }*/
  .fullbleed-content-destination {
    position: relative;
    z-index: 2;
    padding: 0 56px;
  }
  .fullbleed-content-destination .label { color: rgba(245,240,232,0.7); margin-bottom: 20px; }
  .fullbleed-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 300;
    font-style: italic;
    color: #f5f0e8;
    line-height: 1.15;
    margin-bottom: 32px;
  }
  .fullbleed-sub {
    font-size: 15px;
    color: rgba(245,240,232,0.75);
    max-width: 480px;
    line-height: 1.8;
  }

  .wrapper-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.5rem;
    margin-top:3rem;
}

.destinations-card{
    border:1px solid rgba(255,255,255,.5);
    background:rgba(255,255,255,.03);
    padding:40px;
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.destinations-card:hover{
    transform:translateY(-5px);
    border-color:rgba(255,255,255,.22);
    background:rgba(255,255,255,.05);
}

.destinations-card .material-symbols-outlined{
    font-size:48px;
    color:var(--warm-white);
    display:inline-block;
}

.destinations-card h2{
    font-size:18px;
    line-height:1.9;
    font-weight: 700;
    color:var(--warm-white);
    margin-bottom:1rem;
    text-align: center;
}

.destinations-card p{
    color:rgb(245, 240, 232);
    font-size: 15px;
    line-height: 1.9;
    margin:0;
    text-align: center;
}

.destination-bottom-text {
  color: var(--warm-white);
  text-align: center;
  margin-top: 30px;
}

/* TABLET */
@media (max-width:991px){

    .wrapper-cards{
        grid-template-columns:repeat(2,1fr);
    }

    .destinations-card{
        padding:1.75rem;
    }

}

/* MOBILE */
@media (max-width:767px){

    .wrapper-cards{
        grid-template-columns:1fr;
        gap:1rem;
    }

    .destinations-card{
        padding:2rem 1.5rem;
    }

    /*.destinations-card h2{
        font-size:1.2rem;
    }

    .destinations-card p{
        font-size:.95rem;
        line-height:1.6;
    }*/

    /*.destinations-card .material-symbols-outlined{
        font-size:2rem;
        margin-bottom:1rem;
    }*/

}

.destinations-panels {
    height: 400px;
}

.j-panel-desc-dest {
    max-width: 80%;
}

  .right-foryou{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1.5rem;
    margin-top:3rem;
    max-width: 900px;
    margin: auto;
  }

  .right-foryou-card{
      background:rgba(255,255,255,.03);
      padding:40px;
      position:relative;
      transition:all .35s ease;
      border: solid 1px var(--bg-mid);
  }

  .right-foryou-card:hover{
      transform:translateY(-4px);
      background:rgba(255,255,255,.05);
  }

  .right-foryou-card h2{
      font-size:28px;
      font-family: 'Cormorant Garamond', serif;
      line-height:1.3;
      margin-bottom:1.75rem;
      padding-bottom:1rem;
      border-bottom:1px solid rgba(255,255,255,.12);
      color:var(--black);
      letter-spacing:-0.02em;
      display: flex;
      flex-direction: column;
  }

  .right-foryou-card h2 span {
    font-size: 36px!important;
  }

  .right-foryou-card ul{
      list-style:none;
      padding:0;
      margin:0;
      display:flex;
      flex-direction:column;
      gap:1rem;
  }

  .right-foryou-card li{
      display:flex;
      align-items:flex-start;
      justify-content: flex-start;
      gap:.75rem;
      line-height:1.6;
      color:#2c3028;
      font-size:15px;
      text-align: left;
  }

  .right-foryou-card .material-symbols-outlined{
      flex-shrink:0;
      margin-top:.15rem;
  }

  /* CHECK */
  .right-foryou-card .material-symbols-outlined{
      color:var(--earth);
      font-size: 24px;
  }


  /* RESPONSIVE */
  @media (max-width:991px){

      .right-foryou{
          grid-template-columns:1fr;
      }

      .right-foryou-card{
          padding:1.75rem;
      }

  }

  @media (max-width:767px){

      .right-foryou{
          gap:1rem;
      }

      .right-foryou-card{
          padding:1.5rem;
      }

      /*.right-foryou-card h2{
          font-size:1.1rem;
          margin-bottom:1.5rem;
      }*/

      /*.right-foryou-card li{
          font-size:.95rem;
          line-height:1.5;
      }*/

  }

  .when-label {
    bottom: 100px!important;
    display: flex;
    gap: 10px;
  }



/* IMAGE */
.ws-image{
    overflow:hidden;
    height:580px;
}

.wrapper-ws-image {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (min-width: 769px) {
  .wrapper-ws-image {
    height: 380px;
    flex-wrap: wrap;
  }
}


.ws-image img, .wrapper-ws-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .7s ease;
    filter:saturate(.92);
}

.work-step:hover .ws-image img{
    transform:scale(1.04);
}

.work-destinations {
  align-items: start!important;
}

.ws-destinations {
  align-self: start!important;
  margin-top: 30px;
}

@media (max-width:991px){
    .ws-image{
        height:240px;
    }
}

@media (max-width: 768px) {

    .work-step {
        grid-template-columns: 48px 1fr;
        gap: 16px;
    }

    .ws-image {
        grid-column: 1 / -1;
    }

    .ws-image img {
        width: 100%;
        height: auto;
        display: block;
    }
}

.section-howlong {
    background: #2a2018;
    padding: 80px 56px;
    color: var(--warm-white);
    position: relative;
    overflow: hidden;
}
.section-howlong-content {
    max-width: 900px;
    margin: auto;
}

/* BASE */
.wrapper-howlong-cards{
    display:grid;
    gap:1.5rem;
}

.howlong-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

/* ========= */
/* 3 cards normales */
/* ========= */

.wrapper-howlong-cards.three-cols{
    grid-template-columns:repeat(3,1fr);
}

/* ========= */
/* 4 cards */
/* ========= */

.wrapper-howlong-cards.four-cols{
    grid-template-columns:repeat(2,1fr);
}

/* ========= */
/* Variante Buenos Aires */
/* tercera card full width */
/* ========= */

.wrapper-howlong-cards.featured-last{
    grid-template-columns:repeat(2,1fr);
}

.wrapper-howlong-cards.featured-last .howlong-card:nth-child(3){
    grid-column:1 / 3;
}

/* ========= */
/* Mobile */
/* ========= */

@media (max-width:991px){

    .wrapper-howlong-cards.three-cols{
        grid-template-columns:1fr;
    }

    .wrapper-howlong-cards.four-cols{
        grid-template-columns:repeat(2,1fr);
    }

    .wrapper-howlong-cards.featured-last{
        grid-template-columns:1fr;
    }

    .wrapper-howlong-cards.featured-last .howlong-card:nth-child(3){
        grid-column:auto;
    }

}

@media (max-width:767px){

    .wrapper-howlong-cards.four-cols{
        grid-template-columns:1fr;
    }

}

.howlong-card{
    border:1px solid var(--muted);
    background-color:transparent;
    padding:40px;
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.howlong-card:hover{
    transform:translateY(-5px);
    background-color: rgba(255,255,255,.12);
}

.howlong-card h2{
    font-size:18px;
    line-height:1.9;
    font-weight: 700;
    color:var(--warm-white);
    margin-bottom:1rem;
}
.howlong-card p{
    font-size:15px;
    color:var(--warm-white);
}

.howlong-card-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
}

.cta-inner-destinations {
  max-width: 900px!important;
}

.itinerarios {
    background: var(--bg-secondary);
    padding: 80px 0px;
}
.itinerarios .label {
    color: var(--earth);
    margin-bottom: 24px;
}
.itinerarios .header-itineratios {
    max-width: 640px;
    margin: auto;
    text-align: center;
}
.itinerarios .header-itineratios h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
}
.itinerarios .header-itineratios h2 em {
    font-style: italic;
    color: var(--cta);
}

.hero-patagonia-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(26,23,20,0.22) 0%, rgba(26,23,20,0.76) 100%),
      url('../images/bg-hero-patagonia.jpg') center/cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 14s ease-out forwards;
  }

  .hero-norte-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(26,23,20,0.22) 0%, rgba(26,23,20,0.76) 100%),
      url('../images/bg-hero-norte.jpg') center/cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 14s ease-out forwards;
  }

  .hero-iguazu-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(26,23,20,0.22) 0%, rgba(26,23,20,0.76) 100%),
      url('../images/bg-hero-iguazu.jpg') center/cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 14s ease-out forwards;
  }

  .hero-mendoza-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(26,23,20,0.22) 0%, rgba(26,23,20,0.76) 100%),
      url('../images/bg-hero-mendoza.jpg') center/cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 14s ease-out forwards;
  }

  .hero-about-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(26,23,20,0.22) 0%, rgba(26,23,20,0.76) 100%),
      url('../images/bg-hero-about.jpg') center/cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 14s ease-out forwards;
  }

  .hero-begin-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(26,23,20,0.22) 0%, rgba(26,23,20,0.76) 100%),
      url('../images/bg-hero-begin.jpg') center/cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 14s ease-out forwards;
  }

  .hero-contact-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(26,23,20,0.22) 0%, rgba(26,23,20,0.76) 100%),
      url('../images/bg-hero-contact.jpg') center/cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 14s ease-out forwards;
  }

  /* VIDEO SECTION */

.section-video-intro{
    padding:120px 24px;
    background:var(--cream);
}

.video-intro-inner{
    max-width:1200px;
    margin:0 auto;
    text-align:center;
}

.video-intro-header h2{
    margin-bottom:56px;
}

.video-wrapper{
    width:100%;
    max-width:400px;
    margin:0 auto 32px;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(0,0,0,.18);
    background:#000;
}

.video-wrapper video{
    width:100%;
    display:block;
}

.video-subtext{
    max-width:820px;
    margin:0 auto;
    font-size:1rem;
    line-height:1.9;
    opacity:.85;
}


/* PROCESS */

.work-main-title{
    margin-top:24px;
}

.ws-copy h3{
    font-size:1.4rem;
    margin-bottom:18px;
}


/* FULLBLEED */

.begin-fullbleed{
    background-image:url('../images/journey-bg.jpg');
    background-size:cover;
    background-position:center center;
}


/* MOBILE */

@media (max-width:768px){

    .section-video-intro{
        padding:90px 20px;
    }

    .video-wrapper{
        border-radius:18px;
    }

}

.white-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    color: rgb(245, 240, 232);
    margin-bottom: 68px;
}
.white-title em {
    font-style: italic;
    color: var(--sand);
}

.brown-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 5.5vw, 80px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--black);
  }

.brown-title em { font-style: italic; color: var(--earth); }

.contact-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.contact-card .contact-icon {
    font-size: 36px;
}

.contact-card p {
  margin-bottom: 30px;
}

.contact-card .btn-dark{
    margin-top:auto;
    align-self:center;
}

/*** AJUSTES AGENCIA ***/

.container-agencia {
    margin-top: 50px;
}

.ficha-producto .page-header h1 {
  font-family: 'Cormorant Garamond', serif!important;
  color: var(--earth)!important;
  font-weight: 400!important;
}
.container-agencia .btn-consultar,
.container-agencia #tarifas .btn-tarifa {
  border-radius: 0!important;
  font-size: 14px!important;
    letter-spacing: 0.16em!important;
    text-transform: uppercase!important;
    color: var(--warm-white)!important;
    font-weight: 400!important;
}

.container-agencia .panel-wrapper.buscar {
  display: none!important;
}



@media (max-width: 767px) {
    .container-agencia #btn-toolbar-share-6 .visible-xs {
        width:0!important;
    }
    .container-agencia .btn-whatsapp i {
      display: none!important;
    }
}

/*** MENU MOBILE ***/

#navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
}

.nav-links{
    display:flex;
    gap:40px;
    list-style:none;
    margin:0;
    padding:0;
    width:60%;
    justify-content:flex-end;
}

.nav-links a{
    font-size:14px;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--warm-white);
    text-decoration:none;
    opacity:.8;
    transition:.2s;
}

.nav-links a:hover{
    opacity:1;
}

.nav-cta{
    font-size:14px;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:var(--warm-white);
    border:1px solid rgba(255,255,255,.4);
    padding:10px 22px;
    text-decoration:none;
    transition:.2s;
}

.nav-toggle{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
    width:40px;
    height:40px;
    padding:0;
    z-index:1002;
}

.nav-toggle span{
    display:block;
    width:28px;
    height:2px;
    margin:6px auto;
    background:#fff;
    transition:.3s;
}

.mobile-cta{
    display:none;
}

.hidden-mobile{
    display:block;
}

.nav-toggle.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2){
    opacity:0;
}

.nav-toggle.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

@media (max-width:768px){

    .hidden-mobile{
        display:none;
    }

    .nav-toggle{
        display:block;
    }

    .nav-links{
        position:fixed;
        top:0;
        left:100%;
        width:100%;
        height:100vh;

        background:#111;

        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;

        gap:35px;

        transition:left .35s ease;

        z-index:1000;
    }

    .nav-links.active{
        left:0;
    }

    .nav-links li{
        list-style:none;
    }

    .nav-links a{
        font-size:18px;
        letter-spacing:.15em;
    }

    .mobile-cta{
        display:block;
        margin-top:20px;
    }

    .mobile-cta a{
        border:1px solid rgba(255,255,255,.4);
        padding:14px 24px;
        display:inline-block;
    }

}