/* ════════════════════════════════════════
   PRADO JARDINAGEM — WhatsApp Inspired
   ════════════════════════════════════════ */

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

:root {
    /* ───── paleta WhatsApp Business ───── */
    --bg: #eef0ec;                /* fundo suave (off-white verde-acinzentado) */
    --surface: #f8f9f6;            /* superfície clara */
    --mint: #e1ebd9;               /* mint suave (bubble) */
    --mint-2: #d2e3ca;             /* mint mais escuro */
    --ink: #111b21;                /* texto principal */
    --soft: #3b4a54;               /* texto secundário */
    --mute: #8696a0;               /* texto fraco */
    --line: #d9ddd5;               /* linhas */

    --moss: #075e54;               /* WhatsApp dark teal */
    --teal: #128c7e;               /* WhatsApp teal */
    --green: #25d366;              /* WhatsApp green */
    --green-dk: #1da856;
    --sage: #4f9d6d;
    --cream: #ffffff;

    /* ───── fontes ───── */
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Space Grotesk', system-ui, sans-serif;
    --script: 'Caveat', cursive;

    /* ───── easing ───── */
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
    --slow: cubic-bezier(0.7, 0, 0.3, 1);

    /* ───── radius ───── */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 28px;
    --r-img: 18px;
    --r-pill: 100px;

    /* ───── spacing ───── */
    --pad-section: 130px;
    --pad-side: 60px;
    --max-w: 1280px;
}

/* container centralizado para todos os componentes internos */
.hero-cover,
.craft-header,
.craft-grid,
.quote-block,
.about-row,
.field-header,
.field-grid,
.territory-inner,
.talk-wrap,
.footer-content,
.footer-credit,
.footer-bottom {
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 90% 0%, rgba(37, 211, 102, 0.06), transparent 50%),
        radial-gradient(ellipse at 10% 100%, rgba(7, 94, 84, 0.05), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.08;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.03  0 0 0 0 0.36  0 0 0 0 0.33  0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select, button { font-family: inherit; }

::selection { background: var(--green); color: var(--cream); }

/* ═══════ PROGRESS BAR ═══════ */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--green);
    z-index: 200;
    transition: width 0.15s linear;
}

/* (navbar do scroll removida — só o hero-topnav fica no topo) */

/* ═══════ HERO — magazine cover ═══════ */
.hero {
    position: relative;
    padding: 28px var(--pad-side) 0;
    z-index: 2;
}

/* hero topnav — logo | links centralizados | CTA */
.hero-topnav {
    max-width: var(--max-w);
    margin: 0 auto 32px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.hero-logo {
    justify-self: start;
}

.hero-logo img {
    height: 88px;
    width: auto;
    mix-blend-mode: multiply;
    display: block;
}

.topnav-links {
    display: flex;
    gap: 36px;
    justify-self: center;
    list-style: none;
}

.topnav-links a {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.2px;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
    text-decoration: none;
}

.topnav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: var(--green);
    transition: width 0.4s var(--ease);
}

.topnav-links a:hover { color: var(--green); }
.topnav-links a:hover::after { width: 100%; }

.hero-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #25d366;
    color: #fff;
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.4s var(--ease);
    text-decoration: none;
}

.hero-cta svg { width: 18px; height: 18px; }

.hero-cta:hover {
    background: var(--green-dk);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.4);
}

@media (max-width: 1024px) {
    .hero-topnav { grid-template-columns: auto 1fr auto; }
    .topnav-links { display: none; }
}

@media (max-width: 640px) {
    .hero-topnav { margin-bottom: 24px; }
    .hero-logo img { height: 54px; }
    .hero-cta { padding: 10px 14px; font-size: 12px; }
    .hero-cta svg { width: 16px; height: 16px; }
}

.hero-cover {
    padding-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    margin-bottom: 60px;
}

/* container das 2 fotos do hero */
.cover-photos {
    position: relative;
    aspect-ratio: 4 / 5;
    max-height: 660px;
}

.cover-photo-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 82%;
    height: 88%;
    margin: 0;
    overflow: hidden;
    border-radius: var(--r-img);
    box-shadow: 0 28px 60px rgba(7, 94, 84, 0.28);
    z-index: 1;
}

.cover-photo-second {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 58%;
    height: 50%;
    margin: 0;
    overflow: hidden;
    border-radius: var(--r-img);
    box-shadow: 0 18px 40px rgba(7, 94, 84, 0.3);
    z-index: 2;
    border: 6px solid #fff;
    transform: rotate(-3deg);
    transition: transform 0.6s var(--slow);
}

.cover-photo-second:hover { transform: rotate(0deg) scale(1.03); }

.cover-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--slow);
}

.cover-photo:hover img { transform: scale(1.04); }

.cover-photo figcaption {
    position: absolute;
    bottom: 14px;
    left: 18px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    z-index: 3;
}

.cover-photo .ph-text {
    font-family: var(--script);
    font-size: 22px;
    line-height: 1;
    display: inline-block;
    transform: rotate(-2deg);
}

.cover-photo-second .ph-text { font-size: 16px; }

.cover-stamp {
    position: absolute;
    top: -10px;
    right: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 12px 16px;
    background: var(--moss);
    color: var(--cream);
    border-radius: var(--r-md);
    transform: rotate(8deg);
    box-shadow: 0 14px 30px rgba(7, 94, 84, 0.4);
    transition: transform 0.5s var(--ease);
}

.cover-stamp:hover { transform: rotate(0deg) scale(1.04); }

.cover-stamp .stamp-script {
    font-family: var(--script);
    font-size: 16px;
    color: var(--mint-2);
    line-height: 0.9;
}

.cover-stamp strong {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.5px;
}

.cover-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.cover-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(52px, 8.4vw, 124px);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -2.5px;
    color: var(--ink);
}

.hero-title .line { display: block; overflow: hidden; }

.line-1 { font-weight: 300; }

.line-2 {
    text-indent: 1.2em;
    margin: -0.05em 0;
}

.line-2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--moss);
    font-variation-settings: "opsz" 144;
    position: relative;
}

.line-2 em::after {
    content: '';
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: 14%;
    height: 0.18em;
    background: var(--green);
    z-index: -1;
    opacity: 0.35;
    transform: skewY(-1.5deg);
}

.line-3 {
    font-weight: 300;
    font-style: italic;
    color: var(--soft);
}

.line-3 u {
    text-decoration: none;
    border-bottom: 2px solid var(--green);
    padding-bottom: 0.05em;
    font-style: normal;
    font-weight: 500;
    color: var(--moss);
}

.hero-desc {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.55;
    color: var(--soft);
    max-width: 480px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-main {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    background: #25d366;
    color: #fff;
    border-radius: var(--r-pill);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.5s var(--ease);
    border: 1px solid #25d366;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35);
    text-decoration: none;
}

.btn-wpp-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-main:hover {
    background: var(--green-dk);
    border-color: var(--green-dk);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.45);
}

.btn-secondary {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    font-weight: 400;
    color: var(--moss);
    border-bottom: 1px solid var(--moss);
    padding-bottom: 2px;
    transition: all 0.4s var(--ease);
}

.btn-secondary:hover {
    color: var(--green);
    border-color: var(--green);
    letter-spacing: 0.5px;
}

@media (max-width: 968px) {
    .hero { padding: 60px 24px 0; }
    .hero-cover { grid-template-columns: 1fr; gap: 40px; }
    .cover-photos { max-height: 540px; }
    .hero-title { font-size: clamp(44px, 13vw, 88px); }
}

/* ═══════ SHARED ═══════ */
.section-num {
    display: inline-block;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--green);
    margin-bottom: 24px;
    position: relative;
    padding-left: 28px;
}

.section-num::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 1.5px;
    background: var(--green);
}

.section-num.light { color: var(--mint-2); }
.section-num.light::before { background: var(--mint-2); }

/* ═══════ CRAFT (OFÍCIO) ═══════ */
.craft {
    padding: var(--pad-section) var(--pad-side);
    position: relative;
    z-index: 2;
}

.craft-header {
    margin-bottom: 80px;
}

.craft-header .section-num,
.craft-header .craft-title,
.craft-header .craft-intro {
    max-width: 720px;
}

.craft-title {
    font-family: var(--serif);
    font-size: clamp(40px, 6vw, 84px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 28px;
    color: var(--ink);
}

.craft-title em {
    font-style: italic;
    color: var(--moss);
    font-weight: 500;
}

.craft-intro {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--soft);
    max-width: 560px;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.craft-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    background: var(--surface);
    border: 1px solid #1a1a1a;
    border-radius: var(--r-lg);
    padding: 36px 30px 32px;
    cursor: pointer;
    transition: all 0.5s var(--ease);
    height: 100%;
    overflow: hidden;
}

.craft-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.craft-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

.craft-card:hover::before { transform: scaleX(1); }

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--moss);
    transition: all 0.5s var(--ease);
    flex-shrink: 0;
}

.card-icon svg {
    width: 36px;
    height: 36px;
}

.craft-card:hover .card-icon {
    background: var(--green);
    color: #fff;
    transform: rotate(-8deg) scale(1.05);
}

.card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 10px;
    width: 100%;
}

.card-body h3 {
    font-family: var(--serif);
    font-style: italic;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--moss);
}

.card-body p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--soft);
    flex-grow: 1;
}

.card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green);
    margin-top: 6px;
    transition: all 0.4s var(--ease);
}

.card-action span {
    display: inline-block;
    transition: transform 0.3s var(--ease);
}

.craft-card:hover .card-action { color: var(--green-dk); letter-spacing: 2px; }
.craft-card:hover .card-action span { transform: translateX(6px); }

@media (max-width: 1024px) {
    .craft-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .craft { padding: 80px 20px; }
    .craft-header { margin-bottom: 48px; }
    .craft-grid { grid-template-columns: 1fr; gap: 18px; }
    .craft-card { padding: 28px 24px 26px; }
    .card-icon { width: 60px; height: 60px; }
    .card-icon svg { width: 30px; height: 30px; }
    .card-body h3 { font-size: 24px; }
}

/* ═══════ MANIFESTO / SOBRE ═══════ */
.manifesto-section {
    padding: 90px var(--pad-side) var(--pad-section);
    background: var(--mint);
    position: relative;
    z-index: 2;
}

.quote-block {
    max-width: 1000px;
    margin: 0 auto 100px;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-family: var(--serif);
    font-style: italic;
    font-size: 180px;
    font-weight: 500;
    color: var(--green);
    opacity: 0.25;
    line-height: 0.7;
    display: block;
    margin-bottom: -20px;
}

.quote-text {
    font-family: var(--serif);
    font-size: clamp(26px, 3.6vw, 46px);
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: -1px;
    color: var(--ink);
    margin-bottom: 24px;
}

.quote-text em {
    font-style: italic;
    font-weight: 500;
    color: var(--moss);
    position: relative;
}

.quote-text em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8%;
    height: 0.16em;
    background: var(--green);
    opacity: 0.35;
    z-index: -1;
}

.quote-author {
    font-family: var(--script);
    font-size: 26px;
    color: var(--teal);
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.about-img-col { position: relative; }

.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--r-img);
    transform: rotate(-1.5deg);
    box-shadow: 0 22px 50px rgba(7, 94, 84, 0.2);
    transition: all 0.8s var(--slow);
}

.about-img:hover { transform: rotate(0deg) scale(1.02); }

.img-caption {
    display: block;
    margin-top: 18px;
    font-family: var(--script);
    font-size: 20px;
    color: var(--teal);
    transform: rotate(-1deg);
    padding-left: 12px;
}

.about-h {
    font-family: var(--serif);
    font-size: clamp(38px, 4.6vw, 64px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--ink);
    margin: 16px 0 24px;
}

.about-h em {
    font-style: italic;
    color: var(--moss);
    font-weight: 500;
    position: relative;
}

.about-h em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8%;
    height: 0.14em;
    background: var(--green);
    opacity: 0.32;
    z-index: -1;
}

.about-txt-col p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--soft);
    margin-bottom: 24px;
    max-width: 480px;
}

.about-txt-col strong {
    color: var(--moss);
    font-weight: 600;
}

.about-bullets li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
}

.about-bullets li span {
    color: var(--green);
    font-family: var(--serif);
    font-size: 18px;
}

@media (max-width: 968px) {
    .manifesto-section { padding: 60px 24px 90px; }
    .quote-block { margin-bottom: 70px; }
    .quote-mark { font-size: 110px; margin-bottom: -8px; }
    .about-row { grid-template-columns: 1fr; gap: 50px; }
}

/* ═══════ FIELD (GALERIA) ═══════ */
.field {
    padding: var(--pad-section) var(--pad-side);
    position: relative;
    z-index: 2;
}

.field-header { margin-bottom: 70px; }

.field-header .section-num,
.field-header .field-title {
    max-width: 800px;
}

.field-title {
    font-family: var(--serif);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--ink);
}

.field-title em {
    font-style: italic;
    color: var(--moss);
    font-weight: 500;
}

.title-stroke { color: var(--green); font-style: italic; }

.field-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.field-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-img);
    box-shadow: 0 10px 24px rgba(7, 94, 84, 0.15);
    cursor: pointer;
    aspect-ratio: 3 / 4;
    transition: all 0.6s var(--slow);
}

.field-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(7, 94, 84, 0.25);
}

.field-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 1s var(--slow);
}

.field-item:hover img { transform: scale(1.06); }

.field-item figcaption {
    position: absolute;
    inset: 0;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, transparent 35%, rgba(7, 94, 84, 0.88));
    color: var(--cream);
    transition: background 0.4s var(--ease);
}

.field-item:hover figcaption {
    background: linear-gradient(180deg, transparent 20%, rgba(7, 94, 84, 0.94));
}

.field-item .tag {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    background: var(--green);
    color: var(--cream);
    border-radius: var(--r-pill);
    margin-bottom: 8px;
}

.field-item h4 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 2px;
    color: var(--cream);
}

.field-item p {
    font-size: 11px;
    opacity: 0.9;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    color: var(--cream);
}

@media (max-width: 968px) {
    .field { padding: 90px 24px; }
    .field-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (max-width: 640px) {
    .field-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
    .field-grid { grid-template-columns: 1fr; }
    .field-item { aspect-ratio: 4 / 3; }
}

/* ═══════ TERRITORY ═══════ */
.territory {
    padding: var(--pad-section) var(--pad-side);
    background: var(--moss);
    color: var(--cream);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.territory::before {
    content: '✿';
    position: absolute;
    font-family: var(--serif);
    font-size: 600px;
    color: var(--teal);
    opacity: 0.3;
    top: -100px;
    right: -100px;
    line-height: 1;
}

.territory-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 70px;
    position: relative;
    z-index: 1;
    align-items: start;
}

.territory-title {
    font-family: var(--serif);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--cream);
    margin-bottom: 24px;
}

.territory-title em {
    font-style: italic;
    color: var(--green);
    font-weight: 500;
}

.territory-head p {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 380px;
}

.cities-list { border-top: 1px solid rgba(255,255,255,0.18); }

.city-row {
    display: grid;
    grid-template-columns: 60px 1fr auto 40px;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    transition: all 0.5s var(--ease);
    cursor: pointer;
}

.city-row:hover {
    padding-left: 20px;
    background: linear-gradient(90deg, rgba(37, 211, 102, 0.12), transparent);
    border-radius: var(--r-sm);
}

.city-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--green);
}

.city-name {
    font-family: var(--serif);
    font-size: clamp(34px, 4.6vw, 58px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1.5px;
    transition: all 0.4s var(--ease);
}

.city-row:hover .city-name {
    font-style: italic;
    color: var(--green);
}

.city-uf {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.city-arrow {
    font-size: 22px;
    color: var(--green);
    transition: transform 0.5s var(--ease);
}

.city-row:hover .city-arrow { transform: translate(6px, -6px) scale(1.2); }

@media (max-width: 968px) {
    .territory { padding: 90px 24px; }
    .territory-inner { grid-template-columns: 1fr; gap: 40px; }
    .city-row { grid-template-columns: 40px 1fr auto 30px; padding: 14px 0; }
}

/* ═══════ CTA WHATSAPP — Fale com a gente ═══════ */
.cta-wpp {
    padding: var(--pad-section) var(--pad-side);
    background: var(--mint);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.cta-wpp::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.18), transparent 70%);
    z-index: 0;
}

.cta-wpp::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7, 94, 84, 0.12), transparent 70%);
    z-index: 0;
}

.cta-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-photo {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--r-img);
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(7, 94, 84, 0.25);
    transform: rotate(-1.5deg);
    transition: transform 0.7s var(--slow);
}

.cta-photo:hover { transform: rotate(0deg) scale(1.02); }

.cta-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-leaf {
    position: absolute;
    width: 130px;
    height: 130px;
    color: var(--green);
    z-index: 2;
}

.cta-leaf-1 {
    top: -32px;
    right: -32px;
    transform: rotate(35deg);
    animation: leafSway 6s ease-in-out infinite;
}

@keyframes leafSway {
    0%, 100% { transform: rotate(35deg) translateY(0); }
    50% { transform: rotate(28deg) translateY(-8px); }
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cta-eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--moss);
}

.cta-title {
    font-family: var(--serif);
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--ink);
}

.cta-title em {
    font-style: italic;
    color: var(--green);
    font-weight: 500;
    position: relative;
}

.cta-title em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8%;
    height: 0.16em;
    background: var(--green);
    opacity: 0.25;
    z-index: -1;
}

.cta-desc {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.6;
    color: var(--soft);
    max-width: 480px;
}

.cta-desc strong {
    color: var(--moss);
    font-style: italic;
    font-weight: 600;
}

.cta-wpp-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 30px;
    background: #25d366;
    color: #fff;
    border-radius: var(--r-pill);
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    width: fit-content;
    border: 1px solid #25d366;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.cta-wpp-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.cta-wpp-btn .arrow {
    font-size: 18px;
    transition: transform 0.3s var(--ease);
}

.cta-wpp-btn:hover {
    background: var(--green-dk);
    border-color: var(--green-dk);
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.55);
}

.cta-wpp-btn:hover .arrow { transform: translateX(6px); }

.cta-channels {
    display: flex;
    gap: 36px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.ch-mini {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
    transition: transform 0.3s var(--ease);
}

.ch-mini:hover { transform: translateY(-2px); }

.ch-mini-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--mute);
    font-weight: 600;
}

.ch-icon {
    width: 13px;
    height: 13px;
    color: #25d366;
}

.ch-mini-value {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--moss);
    font-weight: 500;
}

.ch-mini:hover .ch-mini-value { color: var(--green); }

@media (max-width: 968px) {
    .cta-wpp { padding: 80px 24px; }
    .cta-inner { grid-template-columns: 1fr; gap: 50px; }
    .cta-photo { max-width: 380px; margin: 0 auto; transform: rotate(0); }
    .cta-leaf { width: 90px; height: 90px; }
    .cta-channels { gap: 24px; }
    .cta-wpp-btn { width: 100%; justify-content: center; }
}

/* ═══════ FOOTER DARK #191919 ═══════ */
.footer {
    background: #191919;
    color: #ffffff;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.footer .container,
.footer-content,
.footer-credit,
.footer-bottom {
    padding-left: var(--pad-side);
    padding-right: var(--pad-side);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
    gap: 40px;
    padding-top: 56px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand .logo img {
    height: 96px;
    width: auto;
    mix-blend-mode: screen;
}

@media (max-width: 640px) {
    .footer-brand .logo img { height: 72px; }
}

.footer-brand p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
}

.foot-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.foot-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--green);
    margin-bottom: 10px;
    font-weight: 700;
}

.foot-col a, .foot-col p {
    font-family: var(--sans);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    transition: color 0.3s, padding 0.3s var(--ease);
}

.foot-col a:hover { color: var(--green); padding-left: 4px; }

.foot-wpp {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    color: #ffffff !important;
    font-weight: 600;
}

.foot-wpp svg {
    width: 16px;
    height: 16px;
    color: #25d366;
    flex-shrink: 0;
}

.foot-wpp:hover { color: #25d366 !important; }

.foot-note {
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.45) !important;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    flex-wrap: wrap;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.foot-tagline {
    font-family: var(--serif);
    font-style: italic;
    color: var(--green);
}

@media (max-width: 968px) {
    .footer-content { grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 40px; padding-bottom: 28px; }
    .footer-bottom { font-size: 10px; padding-top: 16px; padding-bottom: 16px; }
}

/* ═══════ DEV BAND — faixa escura final ═══════ */
.dev-band {
    background: #191919;
    padding: 18px var(--pad-side);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.dev-band-link {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s var(--ease);
    position: relative;
    padding: 4px 8px;
}

.dev-band-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--green);
    transform: translateX(-50%);
    transition: width 0.4s var(--ease);
}

.dev-band-link:hover {
    color: var(--green);
    letter-spacing: 4px;
}

.dev-band-link:hover::after { width: 100%; }

@media (max-width: 640px) {
    .dev-band { padding: 14px 20px; }
    .dev-band-link { font-size: 10px; letter-spacing: 2px; }
}

/* ═══════ FOOTER CREDIT (centralizado) ═══════ */
.footer-credit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 28px 24px 20px;
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.credit-script {
    font-family: var(--script);
    font-size: 18px;
    color: var(--mute);
    line-height: 1;
}

.credit-name {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--moss);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1.5px solid transparent;
    transition: all 0.3s var(--ease);
}

.credit-name:hover {
    color: var(--green);
    border-bottom-color: var(--green);
    letter-spacing: 1px;
}

.credit-arrow {
    font-size: 14px;
    color: var(--green);
    transition: transform 0.3s var(--ease);
    display: inline-block;
}

.credit-name:hover .credit-arrow {
    transform: translate(3px, -3px) scale(1.15);
}

@media (max-width: 768px) {
    .footer-credit { padding: 22px 20px 16px; }
    .credit-script { font-size: 16px; }
    .credit-name { font-size: 15px; }
}

/* ═══════ WHATSAPP FAB ═══════ */
.wpp-fab {
    position: fixed !important;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    background: #25d366 !important;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5);
    z-index: 99999;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    isolation: isolate;
}

.wpp-fab svg {
    width: 34px;
    height: 34px;
    color: #ffffff;
    fill: #ffffff;
    display: block;
}

.wpp-fab::before,
.wpp-fab::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    z-index: -1;
    animation: wppRing 2.6s ease-out infinite;
}

.wpp-fab::after { animation-delay: 1.3s; }

@keyframes wppRing {
    0%   { transform: scale(1); opacity: 0.55; }
    100% { transform: scale(1.9); opacity: 0; }
}

.wpp-fab:hover {
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .wpp-fab { bottom: 20px; right: 20px; width: 58px; height: 58px; }
    .wpp-fab svg { width: 30px; height: 30px; }
}

/* ═══════ REVEAL ═══════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════ SCROLLBAR ═══════ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: var(--r-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

@media (max-width: 768px) {
    :root { --pad-side: 20px; --pad-section: 80px; }
    .hero { padding: 110px 20px 0; }
}
