/* ═══════════════════════════════════════════════════════════════════════
   RESET & DESIGN TOKENS
   ═══════════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-user-drag: none;
}

:root {
    --g:          #bfd34e;
    --g-light:    #cfe06a;
    --g-dark:     #9db336;
    --g-dim:      rgba(191,211,78,.12);
    --g-border:   rgba(191,211,78,.28);
    --g-glow:     rgba(191,211,78,.18);

    --black:      #0a0c07;
    --dark-1:     #090d06;
    --dark-2:     #141a0e;
    --dark-3:     #1a2212;
    --dark-border: rgba(191,211,78,.14);

    --text:       #e8edd8;
    --text-muted: rgba(232,237,216,.55);
    --text-soft:  rgba(232,237,216,.35);

    --light-bg:   #0f1309;
    --light-card: #141a0e;
    --lt-text:    #e8edd8;
    --lt-muted:   rgba(232,237,216,.60);

    --navbar-h: 88px;
    --r:        20px;

    --sh-card:    0 8px 40px rgba(0,0,0,.45), 0 0 0 1px var(--dark-border);
    --sh-card-lt: 0 4px 30px rgba(0,0,0,.07), 0 0 0 1px rgba(191,211,78,.10);
    --sh-btn:     0 4px 22px rgba(191,211,78,.35);
    --sh-glow:    0 0 48px rgba(191,211,78,.12);
}

html { font-size: 18px; height: 100%; scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.65;
    color: var(--lt-text);
    background: var(--light-bg);
    min-height: 100vh;
    display: flex; flex-direction: column;
}

img    { max-width: 100%; height: auto; display: block; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ═══════════════════════════════════════════════════════════════════════
   PLACEHOLDER DE IMAGEM
   ═══════════════════════════════════════════════════════════════════════ */
.img-ph {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: .65rem;
    background: linear-gradient(145deg, #111607 0%, #1c2414 100%);
    border: 1.5px dashed rgba(191,211,78,.22);
    border-radius: inherit;
    color: rgba(191,211,78,.45);
    font-size: .72rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    text-align: center; padding: 1.25rem;
    min-height: 200px;
}
.img-ph svg  { width: 36px; height: 36px; opacity: .35; }
.img-ph span { opacity: .6; max-width: 160px; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════ */
.header {
    background: var(--black);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(191,211,78,.10);
    box-shadow: 0 2px 30px rgba(0,0,0,.60);
}

.navbar { width: 100%; height: var(--navbar-h); display: flex; align-items: center; }

.navbar .container {
    max-width: 1320px; width: 100%; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.navbar_logo     { flex-shrink: 0; }
.navbar_logo img { width: 140px; height: auto; display: block; }

.logo-fb {
    display: flex; align-items: center; gap: .7rem;
    font-family: 'DM Serif Display', serif;
    font-size: 1.7rem; color: var(--g);
    letter-spacing: .03em;
}
.logo-fb-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--g); display: flex; align-items: center; justify-content: center;
}
.logo-fb-icon svg { width: 22px; height: 22px; color: var(--black); }

.navbar_menu {
    display: flex; align-items: center;
    gap: 1.25rem; flex: 1; justify-content: center;
}

.navbar_link {
    font-size: .875rem; font-weight: 600;
    color: rgba(232,237,216,.70);
    padding: .55rem 0; position: relative;
    transition: color .2s; white-space: nowrap;
}
.navbar_link::after {
    content: ''; position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--g); border-radius: 2px;
    transition: width .3s ease;
}
.navbar_link:hover          { color: var(--g); }
.navbar_link:hover::after   { width: 65%; }
.navbar_link--active        { color: var(--g); }
.navbar_link--active::after { width: 65%; }

.navbar_cta { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

.btn-nav-primary {
    font-size: .75rem; font-weight: 800;
    background: var(--g); color: var(--black);
    padding: .55rem 1.1rem .55rem 1rem; border-radius: 8px;
    letter-spacing: .06em; text-transform: uppercase;
    border: none; white-space: nowrap;
    box-shadow: 0 2px 14px rgba(191,211,78,.30);
    transition: transform .2s, box-shadow .25s, background .2s;
    display: inline-flex; align-items: center; gap: .45rem;
    position: relative; overflow: hidden;
}
.btn-nav-primary::before {
    content: ''; position: absolute;
    top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
    transform: skewX(-18deg);
    transition: left .55s ease;
    pointer-events: none;
}
.btn-nav-primary:hover::before { left: 160%; }
.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(191,211,78,.50);
    background: var(--g-light);
}
.btn-nav-primary svg { width: 13px; height: 13px; flex-shrink: 0; transition: transform .2s; }
.btn-nav-primary:hover svg { transform: translateX(2px); }

.btn-nav-ghost {
    font-size: .75rem; font-weight: 800;
    color: var(--g); padding: .53rem 1.1rem .53rem 1rem; border-radius: 8px;
    letter-spacing: .06em; text-transform: uppercase;
    border: 1.5px solid rgba(191,211,78,.40); white-space: nowrap;
    background: rgba(191,211,78,.05);
    backdrop-filter: blur(4px);
    transition: transform .2s, box-shadow .25s, border-color .2s, background .2s;
    display: inline-flex; align-items: center; gap: .45rem;
    position: relative; overflow: hidden;
}
.btn-nav-ghost::before {
    content: ''; position: absolute;
    top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(191,211,78,.10), transparent);
    transform: skewX(-18deg);
    transition: left .55s ease;
    pointer-events: none;
}
.btn-nav-ghost:hover::before { left: 160%; }
.btn-nav-ghost:hover {
    transform: translateY(-2px);
    border-color: var(--g);
    background: rgba(191,211,78,.10);
    box-shadow: 0 4px 16px rgba(191,211,78,.22);
}
.btn-nav-ghost svg { width: 13px; height: 13px; flex-shrink: 0; transition: transform .2s; }
.btn-nav-ghost:hover svg { transform: translateX(2px); }

.navbar_hamburger {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; width: 40px; height: 40px; padding: 6px;
    border-radius: 9px; border: 1.5px solid rgba(191,211,78,.25);
    background: rgba(255,255,255,.04); flex-shrink: 0;
    transition: background .2s, border-color .2s;
}
.navbar_hamburger:hover { background: rgba(191,211,78,.08); border-color: var(--g); }
.navbar_hamburger span {
    display: block; height: 2px; border-radius: 2px;
    background: rgba(232,237,216,.85);
    transition: transform .35s, opacity .25s, width .25s;
}
.navbar_hamburger span:nth-child(2) { width: 70%; align-self: flex-end; }
.navbar_hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar_hamburger.is-open span:nth-child(2) { opacity: 0; width: 100%; }
.navbar_hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar_drawer {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--dark-1);
    border-top: 1px solid rgba(191,211,78,.10);
    border-bottom: 1px solid rgba(191,211,78,.10);
    box-shadow: 0 12px 40px rgba(0,0,0,.55);
    padding: 1.25rem 1.5rem 1.75rem;
    opacity: 0; transform: translateY(-8px);
    pointer-events: none; visibility: hidden;
    transition: opacity .3s cubic-bezier(.22,.61,.36,1), transform .3s cubic-bezier(.22,.61,.36,1), visibility .3s;
}
.navbar_drawer.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; visibility: visible; }

.drawer_menu { display: flex; flex-direction: column; gap: .2rem; margin-bottom: 1.25rem; }

.drawer_link {
    display: block; font-size: 1rem; font-weight: 600;
    color: rgba(232,237,216,.70);
    padding: .7rem .9rem; border-radius: 10px;
    border-left: 3px solid transparent;
    transition: background .2s, border-color .2s, color .2s;
}
.drawer_link:hover, .drawer_link--active {
    background: rgba(191,211,78,.08);
    border-left-color: var(--g);
    color: var(--g);
}

.drawer_ctas { display: flex; flex-direction: column; gap: .65rem; }
.drawer_cta {
    display: block; text-align: center;
    font-size: .9rem; font-weight: 800;
    letter-spacing: .04em; text-transform: uppercase;
    padding: .75rem 1.25rem; border-radius: 10px;
    transition: transform .2s, box-shadow .2s;
}
.drawer_cta--primary { background: var(--g); color: var(--black); border: 2px solid var(--g); }
.drawer_cta--ghost   { background: transparent; color: var(--g); border: 2px solid rgba(191,211,78,.40); }
.drawer_cta--primary:hover { transform: translateY(-1px); box-shadow: var(--sh-btn); }
.drawer_cta--ghost:hover   { background: rgba(191,211,78,.08); border-color: var(--g); }

/* ═══════════════════════════════════════════════════════════════════════
   MAIN
   ═══════════════════════════════════════════════════════════════════════ */
main { flex: 1; display: flex; flex-direction: column; width: 100%; }

/* ═══════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative; overflow: hidden;
    width: 100%;
    height: calc(100svh - var(--navbar-h));
    min-height: 580px;
    background: var(--black);
}

.carousel, .carousel_track { width: 100%; height: 100%; position: relative; }

.carousel_slide {
    position: absolute; inset: 0;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .85s ease, visibility .85s ease;
}
.carousel_slide--active { opacity: 1; visibility: visible; pointer-events: auto; }

.carousel_image {
    width: 100%; height: 100%; max-width: none;
    object-fit: cover; object-position: center;
}

.slide-ph {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 1rem;
    background: linear-gradient(145deg, #080c05 0%, #111a0c 55%, #0c1509 100%);
    color: rgba(191,211,78,.25);
    font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.slide-ph svg { width: 52px; height: 52px; opacity: .2; }

.carousel_overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(8,12,5,.88) 0%, rgba(8,12,5,.50) 55%, transparent 100%),
        linear-gradient(0deg, rgba(8,12,5,.35) 0%, transparent 50%);
    display: flex; align-items: center;
    padding: 0 8vw;
}

.carousel_content {
    color: var(--text);
    max-width: 740px;
    animation: fadeUp .7s cubic-bezier(.22,.61,.36,1) both;
}

.slide-tag {
    display: inline-flex; align-items: center; gap: .55rem;
    font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    color: var(--g); margin-bottom: 1.25rem;
}
.slide-tag span { width: 26px; height: 1.5px; background: var(--g); display: inline-block; }

.slide-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 400; line-height: 1.05;
    margin-bottom: 1.4rem;
    text-shadow: 0 2px 32px rgba(0,0,0,.5);
}
.slide-title em { color: var(--g); font-style: italic; }

.slide-desc {
    font-size: clamp(.95rem, 1.6vw, 1.15rem);
    font-weight: 400; opacity: .80; line-height: 1.8; max-width: 540px;
    margin-bottom: 2rem;
}

.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; }

.hero-badge {
    display: inline-flex; align-items: center; gap: .45rem;
    background: rgba(191,211,78,.10);
    border: 1px solid rgba(191,211,78,.30);
    backdrop-filter: blur(10px);
    border-radius: 8px; padding: .38rem .85rem;
    font-size: .80rem; font-weight: 700; color: var(--g);
    letter-spacing: .04em; text-transform: uppercase;
    transition: background .2s, border-color .2s;
}
.hero-badge:hover { background: rgba(191,211,78,.16); border-color: rgba(191,211,78,.55); }
.hero-badge svg  { width: 13px; height: 13px; flex-shrink: 0; }

.carousel_btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 50%;
    border: 1.5px solid rgba(191,211,78,.30);
    color: rgba(255,255,255,.80);
    display: flex; align-items: center; justify-content: center;
    z-index: 10; backdrop-filter: blur(8px);
    background: rgba(191,211,78,.06);
    transition: border-color .25s, background .25s, color .25s;
}
.carousel_btn:hover { border-color: var(--g); background: rgba(191,211,78,.18); color: var(--g); }
.carousel_btn--prev { left: 2rem; }
.carousel_btn--next { right: 2rem; }

.carousel_dots {
    position: absolute; bottom: 2rem; left: 8vw;
    display: flex; gap: .5rem; z-index: 10;
}
.carousel_dot {
    width: 26px; height: 3px; border-radius: 2px; border: none;
    background: rgba(255,255,255,.22); cursor: pointer;
    transition: background .3s, width .3s;
}
.carousel_dot:hover   { background: rgba(255,255,255,.50); }
.carousel_dot--active { background: var(--g); width: 50px; }

.hero-social {
    position: absolute; bottom: 2rem; right: 2.5rem;
    display: flex; flex-direction: column; gap: .55rem; z-index: 10;
}
.hero-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(191,211,78,.07);
    border: 1.5px solid rgba(191,211,78,.22);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.65); backdrop-filter: blur(6px);
    transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.hero-social a:hover { background: rgba(191,211,78,.22); border-color: var(--g); color: var(--g); transform: scale(1.1); }
.hero-social a svg { width: 17px; height: 17px; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════════════ */
.stats-bar {
    background: var(--dark-1);
    border-top: 1px solid rgba(191,211,78,.10);
    border-bottom: 1px solid rgba(191,211,78,.10);
    padding: 1.75rem 2rem;
}
.stats-bar .inner {
    max-width: 1320px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 0;
}
.stat {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: .5rem 3.5rem;
    border-right: 1px solid rgba(191,211,78,.12);
}
.stat:last-child { border-right: none; }
.stat-num  { font-family: 'DM Serif Display', serif; font-size: 2.4rem; font-weight: 400; color: var(--g); line-height: 1; }
.stat-lbl  { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-top: .2rem; }
.stat-note { font-size: .68rem; font-style: italic; color: rgba(191,211,78,.35); margin-top: .1rem; }

/* ═══════════════════════════════════════════════════════════════════════
   PADRÃO DE SEÇÃO
   ═══════════════════════════════════════════════════════════════════════ */
.sec-head { text-align: center; margin-bottom: 3.5rem; }

.sec-tag {
    display: inline-flex; align-items: center; gap: .55rem;
    font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    color: var(--g); margin-bottom: 1rem;
}
.sec-tag span      { width: 20px; height: 1.5px; background: var(--g); display: inline-block; }
.sec-tag--lt       { color: var(--g); }
.sec-tag--lt span  { background: var(--g); }

.sec-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    font-weight: 400; color: var(--text); line-height: 1.1;
}
.sec-title em      { color: var(--g); font-style: italic; }
.sec-title--dk     { color: var(--text); }
.sec-title--dk em  { color: var(--g); }

.sec-sub     { font-size: 1.05rem; color: var(--text-muted); font-weight: 400; line-height: 1.75; max-width: 560px; margin: .8rem auto 0; }
.sec-sub--dk { color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════════════
   SOBRE NÓS
   ═══════════════════════════════════════════════════════════════════════ */
.about-sec {
    width: 100%; padding: 3.5rem 2rem 5rem;
    background: #0b0f07; position: relative; overflow: hidden;
}
.about-sec::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(191,211,78,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(191,211,78,.06) 1px, transparent 1px);
    background-size: 48px 48px; pointer-events: none;
}
.about-sec::after {
    content: ''; position: absolute;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(191,211,78,.07) 0%, transparent 68%);
    top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}

.tl-wrap    { position: relative; z-index: 1; display: flex; justify-content: center; margin-bottom: 3.5rem; }
.tl-row     { display: flex; flex-direction: column; align-items: center; gap: 0; }
.tl-dot-wrap { display: flex; align-items: center; gap: 0; }
.tl-item {
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0;
}
.tl-dot {
    width: 97px; height: 97px;
    background: #141a0e; border: 2px solid rgba(191,211,78,.30);
    border-radius: 13px; display: flex; align-items: center; justify-content: center;
    box-shadow: var(--sh-card-lt); flex-shrink: 0;
    transition: transform .4s cubic-bezier(.68,-.55,.265,1.55), border-color .3s, box-shadow .3s;
    position: relative; z-index: 1;
}
.tl-dot img:not(.tl-dot-logo) { width: 51px; height: 51px; filter: grayscale(0) opacity(.40); transition: filter .4s, transform .4s cubic-bezier(.68,-.55,.265,1.55); }
.tl-dot--logo { overflow: visible; }
.tl-dot-logo  { width: 96px; height: auto; max-height: none; filter: none; opacity: .55; transition: opacity .4s, transform .4s cubic-bezier(.68,-.55,.265,1.55); display: block; object-fit: contain; }
.tl-dot-logo-fb { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--g); }
.tl-item:hover .tl-dot--logo .tl-dot-logo,
.tl-item--active .tl-dot--logo .tl-dot-logo { opacity: 1; filter: none; }

.tl-line-wrap { display: flex; align-items: center; padding: 0 1rem; flex-shrink: 0; }
.tl-line {
    width: 140px; height: 4px; background: rgba(191,211,78,.15);
    border-radius: 4px; position: relative; overflow: hidden; flex-shrink: 0;
}
.tl-line::after         { content: ''; position: absolute; inset: 0; background: var(--g); border-radius: 4px; transform: scaleX(0); }
.tl-line--fill-r::after { transform-origin: left;  animation: fillLine .5s ease forwards; }
.tl-line--fill-l::after { transform-origin: right; animation: fillLine .5s ease forwards; }
.tl-line--active::after { transform: scaleX(1); }

.tl-labels {
    display: flex; align-items: flex-start;
    width: calc(97px * 3 + 140px * 2 + 4rem);
    margin-top: .75rem;
}
.tl-lbl {
    flex: 0 0 97px; text-align: center;
    font-size: .73rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
    color: #9aae7a; line-height: 1.3;
    transform: translateY(0);
    transition: color .35s, transform .4s cubic-bezier(.34,1.56,.64,1);
}
.tl-lbl--mid {
    flex: 0 0 calc(97px + 140px * 2 + 4rem);
    margin-left: calc(-(140px + 2rem));
    display: flex; align-items: center; justify-content: center;
}

.tl-item:hover .tl-dot       { transform: scale(1.08); border-color: var(--g); box-shadow: 0 8px 32px rgba(191,211,78,.22); }
.tl-item:hover .tl-dot img:not(.tl-dot-logo)   { filter: grayscale(0) opacity(1); }
.tl-item[data-tl="0"]:hover ~ .tl-labels .tl-lbl[data-for="0"] { color: var(--g); }

.tl-item--active .tl-dot     { border-color: var(--g); border-radius: 7px; transform: rotate(45deg) scale(1.22); box-shadow: 0 8px 32px rgba(191,211,78,.28); position: relative; z-index: 2; }
.tl-item--active .tl-dot img:not(.tl-dot-logo) { filter: grayscale(0) opacity(1); transform: rotate(-45deg); }
.tl-item--active .tl-dot--logo .tl-dot-logo    { opacity: 1; filter: none; transform: rotate(-45deg); }
.tl-lbl--active              { color: var(--g) !important; font-weight: 700; transform: translateY(30px) !important; }

@keyframes fillLine { to { transform: scaleX(1); } }

.tl-box-wrap { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.tl-box {
    background: #141a0e;
    border: 1px solid rgba(191,211,78,.22);
    border-radius: var(--r); padding: 2.75rem 3rem;
    box-shadow: var(--sh-card-lt); position: relative;
}
.tl-box::before, .tl-box::after {
    content: ''; position: absolute;
    width: 22px; height: 22px; border-color: var(--g); border-style: solid; pointer-events: none;
}
.tl-box::before { top: 14px; left: 14px; border-width: 2px 0 0 2px; border-radius: 3px 0 0 0; }
.tl-box::after  { bottom: 14px; right: 14px; border-width: 0 2px 2px 0; border-radius: 0 0 3px 0; }

.tl-text         { display: none; opacity: 0; }
.tl-text--active { display: block; opacity: 1; animation: fadeUp .35s ease both; }

.tl-default {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 1.4rem; padding: 3rem 2rem;
    text-align: center; min-height: 260px;
}
.tl-default-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: rgba(191,211,78,.08); border: 2px solid rgba(191,211,78,.22);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 32px rgba(191,211,78,.12);
}
.tl-default-icon svg { width: 34px; height: 34px; color: var(--g-dark); }
.tl-default h3    { font-family: 'DM Serif Display', serif; font-size: 1.55rem; font-weight: 400; color: var(--text); }
.tl-default h3 em { color: var(--g); font-style: italic; }
.tl-default p     { font-size: .95rem; color: var(--text-muted); }

.tl-eyebrow {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .70rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
    color: var(--g-dark); margin-bottom: .55rem;
}
.tl-eyebrow span { width: 16px; height: 1px; background: var(--g); display: inline-block; }

.tl-text h3    { font-family: 'DM Serif Display', serif; font-size: clamp(1.65rem, 2.5vw, 2.3rem); font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 1.2rem; }
.tl-text h3 em { color: var(--g); font-style: italic; }

.tl-body { max-height: 460px; overflow-y: auto; padding-right: .65rem; scrollbar-width: thin; scrollbar-color: rgba(191,211,78,.35) transparent; }
.tl-body::-webkit-scrollbar       { width: 4px; }
.tl-body::-webkit-scrollbar-thumb { background: rgba(191,211,78,.35); border-radius: 4px; }

.tl-text p            { font-size: 1rem; line-height: 1.85; color: var(--text-muted); text-align: justify; margin-bottom: 1.2rem; }
.tl-text p:last-child { margin-bottom: 0; }
.tl-text p strong     { color: var(--g); font-weight: 700; }
.tl-text p em         { color: var(--g); font-style: italic; }
.tl-highlight         { background: rgba(191,211,78,.08); border-left: 3px solid var(--g); padding: .6rem 1.4rem; border-radius: 9px; margin-top: 1.2rem; font-size: .97rem; font-weight: 600; color: var(--g); }

/* ═══════════════════════════════════════════════════════════════════════
   ONDE ATUAMOS
   ═══════════════════════════════════════════════════════════════════════ */
.where-sec {
    background: var(--dark-1); width: 100%; padding: 3.5rem 2rem 5rem;
    position: relative; overflow: hidden;
}
.where-sec::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(191,211,78,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(191,211,78,.055) 1px, transparent 1px);
    background-size: 48px 48px; pointer-events: none;
}
.where-sec::after {
    content: ''; position: absolute;
    width: 1000px; height: 1000px; border-radius: 50%;
    background: radial-gradient(circle, rgba(191,211,78,.06) 0%, transparent 60%);
    top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.where-grid {
    max-width: 1320px; margin: 0 auto; position: relative; z-index: 1;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.where-card {
    background: var(--dark-2);
    border: 1px solid rgba(191,211,78,.12);
    border-radius: var(--r); overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.where-card:hover { transform: translateY(-6px); border-color: rgba(191,211,78,.32); box-shadow: 0 16px 48px rgba(0,0,0,.55), 0 0 0 1px rgba(191,211,78,.22); }
.where-card-img          { width: 100%; height: 195px; overflow: hidden; }
.where-card-img .img-ph  { min-height: 195px; border-radius: 0; }
.where-card-body         { padding: 1.5rem 1.75rem 1.75rem; }
.where-icon {
    width: 50px; height: 50px; border-radius: 12px;
    background: rgba(191,211,78,.10); border: 1.5px solid rgba(191,211,78,.22);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: .9rem;
}
.where-icon svg { width: 24px; height: 24px; color: var(--g); }
.where-card-title    { font-family: 'DM Serif Display', serif; font-size: 1.3rem; font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: .55rem; }
.where-card-title em { color: var(--g); font-style: italic; }
.where-card-desc     { font-size: .93rem; color: var(--text-muted); line-height: 1.7; }
.where-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    margin-top: .8rem; background: rgba(191,211,78,.08);
    border: 1px solid rgba(191,211,78,.22); border-radius: 6px;
    padding: .22rem .7rem; font-size: .70rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; color: var(--g);
}

/* ═══════════════════════════════════════════════════════════════════════
   SERVIÇOS
   ═══════════════════════════════════════════════════════════════════════ */
.svc-sec {
    background: #0b0f07; width: 100%; padding: 3.5rem 2rem 5rem;
    position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center;
}
.svc-sec::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(191,211,78,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(191,211,78,.055) 1px, transparent 1px);
    background-size: 48px 48px; pointer-events: none;
}
.svc-sec .sec-head { position: relative; z-index: 1; }
.svc-badges {
    display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem;
    max-width: 1040px; margin: 0 auto 3rem;
    position: relative; z-index: 1;
}
.svc-badge {
    display: flex; align-items: center; gap: .55rem;
    background: var(--dark-2); border: 1.5px solid rgba(191,211,78,.20);
    border-radius: 12px; padding: .6rem 1.2rem;
    color: var(--g); font-size: .88rem; font-weight: 700;
    letter-spacing: .02em;
    transition: border-color .25s, box-shadow .25s;
}
.svc-badge svg   { width: 17px; height: 17px; flex-shrink: 0; }
.svc-badge:hover { border-color: rgba(191,211,78,.50); box-shadow: 0 4px 18px rgba(191,211,78,.14); }
.svc-carousel {
    display: flex; align-items: center; justify-content: center;
    gap: 1.5rem; width: 100%; max-width: 1320px; position: relative; z-index: 1;
}
.svc-track { position: relative; flex: 1; height: 600px; }
.svc-slide         { position: absolute; inset: 0; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .4s, visibility .4s; }
.svc-slide--active { opacity: 1; visibility: visible; pointer-events: auto; }
.svc-card {
    height: 100%;
    background: var(--dark-2);
    border: 1px solid rgba(191,211,78,.14);
    border-radius: var(--r);
    display: flex; flex-direction: row;
    overflow: hidden;
    box-shadow: var(--sh-card);
    animation: fadeUp .35s ease both;
}
.svc-img-col          { width: 44%; flex-shrink: 0; position: relative; overflow: hidden; }
.svc-img-col .img-ph  { border-radius: 0; min-height: 100%; height: 100%; }
.svc-content {
    flex: 1; padding: 1.5rem 2.5rem;
    display: flex; flex-direction: column; overflow-y: auto;
    scrollbar-width: thin; scrollbar-color: rgba(191,211,78,.25) transparent;
}
.svc-content::-webkit-scrollbar       { width: 4px; }
.svc-content::-webkit-scrollbar-thumb { background: rgba(191,211,78,.25); border-radius: 4px; }
.svc-eyebrow      { display: inline-flex; align-items: center; gap: .4rem; font-size: .70rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--g); margin-bottom: .7rem; }
.svc-eyebrow span { width: 14px; height: 1.5px; background: var(--g); display: inline-block; }
.svc-title       { font-family: 'DM Serif Display', serif; font-size: 2rem; font-weight: 400; color: var(--text); line-height: 1.15; margin-bottom: .75rem; }
.svc-title em    { color: var(--g); font-style: italic; }
.svc-title::after { content: ''; display: block; width: 38px; height: 2px; background: var(--g); border-radius: 2px; margin: .7rem 0 1rem; }
.svc-features { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.1rem; }
.svc-feat     { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: var(--text-muted); font-weight: 500; }
.svc-feat svg { width: 15px; height: 15px; color: var(--g); flex-shrink: 0; }
.svc-body p        { font-size: .97rem; line-height: 1.85; color: var(--text-muted); margin-bottom: .9rem; }
.svc-body p strong { color: var(--g); font-weight: 700; }
.svc-body p em     { color: var(--g); font-style: italic; }
.svc-highlight {
    background: rgba(191,211,78,.08); border-left: 3px solid var(--g);
    border-radius: 8px; padding: .6rem 1.2rem; margin-top: .9rem;
    font-size: .93rem; font-weight: 600; color: var(--g); text-align: left;
}
.svc-btn {
    flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
    border: 1.5px solid rgba(191,211,78,.28);
    color: var(--g); background: var(--dark-2);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(191,211,78,.10);
    transition: background .25s, color .25s, box-shadow .25s, border-color .25s;
}
.svc-btn:hover { background: var(--g); color: var(--black); border-color: var(--g); box-shadow: var(--sh-btn); }

/* ═══════════════════════════════════════════════════════════════════════
   CONDOMÍNIOS
   ═══════════════════════════════════════════════════════════════════════ */
.condo-sec {
    background: var(--dark-1); width: 100%; padding: 3.5rem 2rem 5rem;
    position: relative; overflow: hidden;
}
.condo-sec::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(191,211,78,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(191,211,78,.055) 1px, transparent 1px);
    background-size: 48px 48px; pointer-events: none;
}
.condo-sec::after {
    content: ''; position: absolute;
    width: 900px; height: 900px; border-radius: 50%;
    background: radial-gradient(circle, rgba(191,211,78,.07) 0%, transparent 62%);
    top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.condo-inner { max-width: 1320px; margin: 0 auto; position: relative; z-index: 1; }
.condo-hero {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: start; margin-bottom: 4rem;
}
.condo-hero-img {
    border-radius: var(--r); overflow: hidden; height: 480px;
    border: 1px solid rgba(191,211,78,.14);
    box-shadow: var(--sh-card);
}
.condo-hero-img .img-ph { min-height: 480px; }
.benefits-title    { font-family: 'DM Serif Display', serif; font-size: 1.85rem; font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 1.4rem; }
.benefits-title em { color: var(--g); font-style: italic; }
.benefit {
    display: flex; align-items: flex-start; gap: 1rem;
    background: var(--dark-2); border: 1px solid rgba(191,211,78,.12);
    border-radius: 14px; padding: 1.35rem 1.5rem; margin-bottom: 1rem;
    transition: border-color .25s, transform .25s;
}
.benefit:hover     { border-color: rgba(191,211,78,.32); transform: translateX(4px); }
.benefit-icon      { width: 46px; height: 46px; border-radius: 11px; background: rgba(191,211,78,.10); border: 1.5px solid rgba(191,211,78,.22); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-icon svg  { width: 21px; height: 21px; color: var(--g); }
.benefit h4        { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .25rem; }
.benefit p         { font-size: .90rem; color: var(--text-muted); line-height: 1.6; }
.access-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-bottom: 4rem; }
.access-card {
    background: var(--dark-2); border: 1px solid rgba(191,211,78,.12);
    border-radius: 16px; padding: 1.75rem;
    display: flex; flex-direction: column; gap: .75rem;
    transition: border-color .25s, transform .25s;
}
.access-card:hover  { border-color: rgba(191,211,78,.32); transform: translateY(-3px); }
.access-icon        { width: 50px; height: 50px; border-radius: 12px; background: rgba(191,211,78,.10); border: 1.5px solid rgba(191,211,78,.22); display: flex; align-items: center; justify-content: center; }
.access-icon svg    { width: 24px; height: 24px; color: var(--g); }
.access-card h4     { font-size: 1rem; font-weight: 800; color: var(--text); text-transform: uppercase; letter-spacing: .03em; }
.access-card p      { font-size: .90rem; color: var(--text-muted); line-height: 1.6; }

.actions-box {
    background: var(--dark-2); border: 1px solid rgba(191,211,78,.12);
    border-radius: var(--r); padding: 2.5rem 2.5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
    align-items: center; margin-bottom: 4rem;
}
.actions-text h3    { font-family: 'DM Serif Display', serif; font-size: 1.65rem; font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 1rem; }
.actions-text h3 em { color: var(--g); font-style: italic; }
.actions-text p     { font-size: .97rem; color: var(--text-muted); line-height: 1.75; margin-bottom: .75rem; }
.actions-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.action-img   { border-radius: 12px; overflow: hidden; height: 130px; border: 1px solid rgba(191,211,78,.12); }
.action-img .img-ph { min-height: 130px; font-size: .68rem; border-radius: 0; }

.condo-cta {
    text-align: center; padding: 3.5rem 2rem;
    background: linear-gradient(135deg, rgba(191,211,78,.08) 0%, rgba(157,179,54,.10) 100%);
    border: 1.5px solid rgba(191,211,78,.22);
    border-radius: var(--r);
    position: relative; overflow: hidden;
}
.condo-cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(191,211,78,.06) 0%, transparent 70%);
    pointer-events: none;
}
.condo-cta h3    { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; color: var(--text); line-height: 1.15; margin-bottom: .85rem; position: relative; z-index: 1; }
.condo-cta h3 em { color: var(--g); font-style: italic; }
.condo-cta p     { font-size: 1.05rem; color: var(--text-muted); max-width: 520px; margin: 0 auto 2.25rem; line-height: 1.75; position: relative; z-index: 1; }

.btn-cta-main {
    display: inline-flex; align-items: center; gap: .7rem;
    background: var(--g); color: var(--black);
    font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 800;
    letter-spacing: .04em; text-transform: uppercase;
    padding: 1rem 2.5rem; border-radius: 12px; border: none; cursor: pointer;
    box-shadow: 0 6px 28px rgba(191,211,78,.40);
    transition: transform .25s, box-shadow .25s, background .25s;
    text-decoration: none; position: relative; z-index: 1;
}
.btn-cta-main svg   { width: 20px; height: 20px; }
.btn-cta-main:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(191,211,78,.50); background: var(--g-light); }

/* ═══════════════════════════════════════════════════════════════════════
   DEPOIMENTOS
   ═══════════════════════════════════════════════════════════════════════ */
.testimonials {
    margin-bottom: 4rem;
    position: relative;
}

.testimonials-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testimonials-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400; color: var(--text); line-height: 1.15;
    margin-top: .5rem;
}
.testimonials-title em { color: var(--g); font-style: italic; }

.tst-track-wrap { overflow: hidden; position: relative; }

.tst-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    transition: transform .45s cubic-bezier(.22,.61,.36,1);
}

.tst-card {
    background: var(--dark-2);
    border: 1px solid rgba(191,211,78,.12);
    border-radius: var(--r);
    padding: 2rem 2rem 1.6rem;
    display: flex; flex-direction: column; gap: 1.25rem;
    position: relative; overflow: hidden;
    transition: border-color .3s, transform .3s;
}
.tst-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(191,211,78,.18), transparent);
}
.tst-card:hover {
    border-color: rgba(191,211,78,.28);
    transform: translateY(-4px);
}

.tst-card--highlight {
    border-color: rgba(191,211,78,.35);
    background: linear-gradient(145deg, #1a2212 0%, #141a0e 100%);
    box-shadow: 0 8px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(191,211,78,.22);
}
.tst-card--highlight::before {
    background: linear-gradient(90deg, transparent, var(--g), transparent);
    opacity: .5;
}

.tst-quote-icon {
    width: 36px; height: 36px;
    color: rgba(191,211,78,.25);
    flex-shrink: 0;
}
.tst-card--highlight .tst-quote-icon { color: rgba(191,211,78,.50); }
.tst-quote-icon svg { width: 100%; height: 100%; }

.tst-text {
    font-size: .97rem;
    line-height: 1.85;
    color: var(--text-muted);
    flex: 1;
    font-style: italic;
}
.tst-card--highlight .tst-text { color: rgba(232,237,216,.75); }

.tst-footer {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(191,211,78,.10);
}

.tst-avatar {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    background: rgba(191,211,78,.12);
    border: 1.5px solid rgba(191,211,78,.30);
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem; font-weight: 400;
    color: var(--g);
}
.tst-card--highlight .tst-avatar {
    background: rgba(191,211,78,.20);
    border-color: var(--g);
}

.tst-info { display: flex; flex-direction: column; gap: .15rem; flex: 1; }
.tst-name { font-size: .88rem; font-weight: 700; color: var(--text); letter-spacing: .02em; }
.tst-role { font-size: .75rem; font-weight: 500; color: var(--text-muted); letter-spacing: .04em; text-transform: uppercase; }

.tst-stars { display: flex; gap: 2px; flex-shrink: 0; }
.tst-stars svg { width: 13px; height: 13px; color: var(--g); }

.tst-nav {
    display: none;
    align-items: center; justify-content: center;
    gap: 1rem; margin-top: 1.5rem;
}

.tst-btn {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1.5px solid rgba(191,211,78,.28);
    color: var(--g); background: var(--dark-2);
    display: flex; align-items: center; justify-content: center;
    transition: background .25s, border-color .25s;
}
.tst-btn:hover { background: rgba(191,211,78,.12); border-color: var(--g); }

.tst-dots { display: flex; gap: .45rem; }
.tst-dot {
    width: 22px; height: 3px; border-radius: 2px; border: none;
    background: rgba(191,211,78,.22); cursor: pointer;
    transition: background .3s, width .3s;
}
.tst-dot--active { background: var(--g); width: 40px; }

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.footer {
    background: #060905;
    border-top: 2px solid rgba(191,211,78,.18);
    padding: 4rem 2rem 2rem; position: relative; overflow: hidden;
}
.footer::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66zm0 0v34M56 50L28 66M0 50l28 16M56 18L28 34M0 18l28 16M28 2v32' fill='none' stroke='rgba(191%2C211%2C78%2C.055)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 56px 100px;
    pointer-events: none; opacity: 1;
}
.footer::after {
    content: ''; position: absolute;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(191,211,78,.07) 0%, transparent 65%);
    bottom: -200px; left: -100px; pointer-events: none;
}
.footer-logo-link { display: inline-block; text-decoration: none; margin-bottom: .25rem; }
.footer-logo-img  { width: 150px; height: auto; display: block; filter: brightness(1.1); }
.footer-grid {
    max-width: 1320px; margin: 0 auto; position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem;
    padding-bottom: 2.75rem;
    border-bottom: 1px solid rgba(191,211,78,.15);
    margin-bottom: 2rem;
}
.footer-brand p { font-size: .97rem; color: rgba(232,237,216,.60); line-height: 1.8; max-width: 280px; margin-top: 1rem; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.4rem; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(191,211,78,.08); border: 1.5px solid rgba(191,211,78,.22);
    display: flex; align-items: center; justify-content: center;
    color: rgba(232,237,216,.65); transition: all .25s;
}
.footer-social a:hover { background: rgba(191,211,78,.20); border-color: var(--g); color: var(--g); transform: scale(1.1); }
.footer-social a svg   { width: 16px; height: 16px; }
.footer-col h5    { font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--g); margin-bottom: 1.2rem; }
.footer-col ul    { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a     { font-size: .95rem; color: rgba(232,237,216,.55); transition: color .2s, padding-left .2s; display: inline-block; }
.footer-col a:hover { color: var(--g); padding-left: 4px; }
.footer-bottom   { max-width: 1320px; margin: 0 auto; position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .84rem; color: rgba(232,237,216,.32); }
.footer-bottom p:first-child { color: rgba(232,237,216,.45); }

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .where-grid  { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .tst-track   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
    .navbar_menu    { display: none; }
    .navbar_cta     { display: none; }
    .navbar_hamburger { display: flex; }
    .svc-card       { flex-direction: column; }
    .svc-img-col    { width: 100%; height: 220px; }
    .svc-track      { height: 720px; }
    .condo-hero     { grid-template-columns: 1fr; }
    .condo-hero-img { height: 280px; }
    .condo-hero-img .img-ph { min-height: 280px; }
    .access-grid    { grid-template-columns: 1fr; }
    .actions-box    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --navbar-h: 66px; }
    html  { font-size: 15px; }
    body  { overflow-x: hidden; }

    .navbar .container  { padding: 0 1.25rem; gap: .75rem; }
    .navbar_logo img    { width: 120px; }
    .navbar_menu        { display: none; }
    .navbar_cta         { display: none; }
    .navbar_hamburger   { display: flex; }

    .slide-title        { font-size: clamp(1.7rem, 7vw, 2.6rem); }
    .slide-desc         { font-size: .88rem; }
    .carousel_overlay   { padding: 0 1.25rem; }
    .carousel_dots      { left: 1.25rem; }
    .carousel_btn       { width: 40px; height: 40px; }
    .carousel_btn--prev { left: .4rem; }
    .carousel_btn--next { right: .4rem; }
    .hero-social        { display: none; }
    .hero-badges        { flex-direction: column; gap: .45rem; }

    .stats-bar .inner   { flex-direction: column; gap: 0; }
    .stat { border-right: none; border-bottom: 1px solid rgba(191,211,78,.10); padding: 1rem 0; width: 100%; }
    .stat:last-child    { border-bottom: none; }

    .about-sec          { padding: 2.5rem 1.25rem 4rem; overflow-x: hidden; overflow-y: visible; }

    .tl-wrap            { overflow-x: auto; overflow-y: visible; justify-content: center; padding: 2rem 1rem; -webkit-overflow-scrolling: touch; margin-bottom: 1.25rem; max-width: 100%; }

    .tl-dot             { width: 62px; height: 62px; border-radius: 9px; }
    .tl-dot img:not(.tl-dot-logo) { width: 30px; height: 30px; }
    .tl-dot-logo        { width: 48px; }

    .tl-line-wrap       { padding: 0 .4rem; }
    .tl-line            { width: 36px; }

    .tl-labels          { width: calc(62px * 3 + 36px * 2 + 1.6rem); margin-top: .75rem; }
    .tl-lbl             { flex: 0 0 62px; font-size: .60rem; }
    .tl-lbl--mid        { flex: 0 0 calc(62px + 36px * 2 + 1.6rem); margin-left: calc(-(36px + .8rem)); }

    .tl-row             { gap: 0; }
    .tl-box             { padding: 2.5rem; border-radius: 14px; }
    .tl-default         { min-height: 130px; padding: 1rem .75rem; gap: .65rem; }
    .tl-default-icon    { width: 44px; height: 44px; }
    .tl-default-icon svg { width: 18px; height: 18px; }
    .tl-default h3      { font-size: 1.1rem; }
    .tl-default p       { font-size: .85rem; }
    .tl-text h3         { font-size: 1.2rem; }
    .tl-text p          { font-size: .88rem; }
    .tl-body            { max-height: 340px; }

    .where-sec          { padding: 2.5rem 1.25rem 4rem; }
    .where-grid         { grid-template-columns: 1fr; }

    .svc-sec            { padding: 2.5rem 1.25rem 4rem; }
    .svc-carousel       { gap: .75rem; }
    .svc-track          { height: 820px; }
    .svc-card           { flex-direction: column; }
    .svc-img-col        { width: 100%; height: 200px; }
    .svc-content        { padding: 1.5rem 1.25rem; }
    .svc-btn            { width: 44px; height: 44px; }

    .condo-sec          { padding: 2.5rem 1.25rem 4rem; }
    .actions-box        { padding: 1.75rem; gap: 1.5rem; }
    .actions-imgs       { grid-template-columns: 1fr; }

    /* Depoimentos mobile — carrossel */
    .tst-track-wrap     { overflow: hidden; }
    .tst-track {
        display: flex;
        gap: 0;
        width: calc(100% * 3);
    }
    .tst-card {
        min-width: calc(100% / 3);
        flex-shrink: 0;
    }
    .tst-nav { display: flex; }

    .footer-grid        { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom      { flex-direction: column; text-align: center; }

    .carousel_image {transform: scale(1); object-position: center 75; }
}

@media (max-width: 480px) {
    .carousel_btn { display: none; }
    .svc-badges   { gap: .55rem; }
    .svc-badge    { font-size: .88rem; padding: .5rem .9rem; }
}

@media (hover: none) and (pointer: coarse) {
    .tl-item:hover .tl-dot       { transform: none; border-color: rgba(191,211,78,.30); box-shadow: var(--sh-card-lt); }
    .tl-item:hover .tl-dot img:not(.tl-dot-logo) { filter: grayscale(0) opacity(.40); }
}