/* ============================================================
   Estúdio La Folha — Stylesheet
   Compartilhado entre as 3 versões (PT-BR, EN-US, ES-LA).
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Prevent double-tap zoom on all interactive elements */
a,
button,
input,
select,
textarea,
label,
.sc,
.mc,
.mp-card,
.pg-item,
.dot,
.lb-nav,
.lb-close,
.nav-toggle,
.back-btn,
.lang-item {
    touch-action: manipulation;
}

:root {
    --gp: #009661;
    --gd: #007E66;
    --deep: #003D4D;

    /* --off: #007E66 */
    --cr: #EAE5DC;
}

html {
    scroll-behavior: smooth;
    overflow-x: #009661;
}

body {
    font-family: Lato,sans-serif;
    background: #007E66;
    color: #003D4D;
    font-weight: 300;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.page {
    display: none;
    overflow-x: hidden;
    max-width: 100vw;
}

.page.active {
    display: grid;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    padding: .7rem 3rem;
    background: rgba(0, 61, 77, 0);
    backdrop-filter: blur(0px);
    transition: all .4s;
    border-bottom: 0px solid rgba(255,255,255,.08);
}

nav.sc {
    background: rgba(0,61,77,0.98);
    padding: .5rem 3rem;
    box-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.n-logo {
    height: 58px;
    width: auto;
    cursor: pointer;
    transition: all .4s;
    object-fit: contain;
}

nav.sc .n-logo {
    height: 44px;
}

.n-links {
    display: flex;
    gap: 7rem;
    list-style: none;
    justify-content: center;
}

.n-links a {
    text-decoration: none;
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.88);
    cursor: pointer;
    position: relative;
    transition: color .3s;
}

.n-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gp);
    transition: width .3s;
}

.n-links a:hover {
    color: #fff;
}

.n-links a:hover::after {
    width: 100%;
}

.n-cta {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--deep);
    background: #fff;
    padding: .65rem 1.4rem;
    text-decoration: none;
    transition: all .3s;
    justify-self: end;
}

.n-cta:hover {
    background: var(--cr);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: zoom 20s ease-in-out infinite alternate;
}

@keyframes zoom{
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.h-ov {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 20, 0.65);
}

.h-cnt {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 2rem;
    animation: up 1.2s ease forwards;
}

@keyframes up{
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.h-eye {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: rgba(255,255,255,.88);
    margin-bottom: .5rem;
}

.h-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(to right,transparent,var(--gp),transparent);
    margin: .5rem auto 1.4rem;
}

.h-lbl {
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255,255,255,.95);
    margin-bottom: .4rem;
}

.h-ctr {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.cu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
}

.cu+.cu {
    border-left: 1px solid rgba(255,255,255,.2);
}

.cn {
    font-size: clamp(3.5rem,8vw,6rem);
    font-weight: 700;
    line-height: 1;
    color: #fff;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.02em;
}

.cl {
    font-size: .68rem;
    font-weight: 400;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-top: .5rem;
}

.h-tag {
    font-size: clamp(1rem,2vw,1.2rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,.82);
    max-width: 580px;
    margin: 0 auto .4rem;
    line-height: 1.9;
}

.h-acts {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.8rem;
}

.bp {
    background: var(--gp);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-family: Lato,sans-serif;
    transition: all .3s;
}

.bp:hover {
    background: var(--gd);
    transform: translateY(-2px);
}

.bg {
    color: #fff;
    font-size: .65rem;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 1px solid rgba(255,255,255,.38);
    background: none;
    cursor: pointer;
    font-family: Lato,sans-serif;
    transition: all .3s;
}

.bg:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
}

.h-sc {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    animation: sb 2.2s ease infinite;
}

.h-sc span {
    font-size: .52rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
}

.scl {
    width: 1px;
    height: 38px;
    background: linear-gradient(to bottom,rgba(255,255,255,.5),transparent);
}

@keyframes sb{
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(7px);
    }
}

.stag {
    font-size: .65rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gp);
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: .8rem;
}

.stag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gp);
}

.reveal {
    opacity: 0;
    transform: #003D4D;
    transition: opacity .8s,transform .8s;
}

.reveal.visible {
    opacity: 1;

    /* transform: translateY(0) */
}

.r1 {
    transition-delay: .12s;
}

.r2 {
    transition-delay: .24s;
}

.ab-s {
    padding: 8rem 0;
    background: #fff;
}

.ab-w {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.ab-t {
    font-size: clamp(1.9rem,3.2vw,3rem);
    font-weight: 300;
    color: var(--deep);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.ab-t strong {
    font-weight: 900;
    color: var(--gp);
}

.ab-p {
    font-size: 1rem;
    line-height: 2.1;
    color: #007E66;
    margin-bottom: 1.3rem;
    font-weight: 300;
}

.ab-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--cr);
}

.sn {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gp);
    line-height: 1;
}

.sl {
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #007E66;
    margin-top: .3rem;
}

.ab-vis {
    position: relative;
}

.ss {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--gp);
}

.ss::before {
    content: '';
    position: absolute;
    inset: 1.2rem;
    border: 1px solid rgba(255,255,255,.25);
    z-index: 3;
    pointer-events: none;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.sdots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 4;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: all .3s;
}

.dot.active {
    background: #fff;
    transform: scale(1.3);
}

.ab-bdg {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--deep);
    padding: 1.5rem 2rem;
    z-index: 5;
}

.ab-bdg-n {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.ab-bdg-t {
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-top: .2rem;
}

.strip {
    background: var(--gp);
    padding: 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.st-t {
    font-size: 1.1rem;
    font-weight: 300;
    color: #fff;
    font-style: italic;
}

.st-a {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--deep);
    background: #fff;
    padding: .75rem 1.5rem;
    text-decoration: none;
    transition: all .3s;
    white-space: nowrap;
}

.st-a:hover {
    background: var(--cr);
}

.svcs {
    background: var(--deep);
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
}

.svcs-in {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.svcs-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

.svcs-t {
    font-size: clamp(2rem,3.5vw,3rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
}

.svcs-t strong {
    font-weight: 900;
    color: var(--gp);
}

.svcs-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.58);
    line-height: 1.7;
    font-weight: 300;
    text-align: right;
}

.sc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: rgba(255,255,255,.06);
}

.sc {
    background: var(--deep);
    padding: 2.8rem 2.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background .4s;
}

.sc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gp);
    transition: width .5s;
}

.sc:hover {
    background: rgba(0,150,97,.07);
}

.sc:hover::after {
    width: 100%;
}

.sc-n {
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(0,150,97,.1);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color .4s;
}

.sc:hover .sc-n {
    color: rgba(0,150,97,.22);
}

.sc-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .9rem;
    line-height: 1.2;
}

.sc-desc {
    font-size: .9rem;
    line-height: 1.85;
    color: rgba(255,255,255,.52);
    margin-bottom: 1.8rem;
    font-weight: 300;
}

.sc-lnk {
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gp);
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: gap .3s;
}

.sc:hover .sc-lnk {
    gap: .9rem;
}

.mid {
    padding: 7rem 4rem;
    background: var(--off);
}

.mid-in {
    max-width: 1400px;
    margin: 0 auto;
}

.mid-hdr {
    text-align: center;
    margin-bottom: 4rem;
}

.mid-t {
    font-size: clamp(2rem,3.5vw,3rem);
    font-weight: 300;
    color: var(--deep);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.mid-t strong {
    font-weight: 900;
    color: var(--gp);
}

.mid-sub {
    font-size: 1.05rem;
    color: #007E66;
    font-weight: 300;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
}

.mid-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}

.mc {
    background: #fff;
    text-decoration: none;
    display: block;
    transition: transform .3s,box-shadow .3s;
    cursor: pointer;
}

.mc:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,61,77,.12);
}

.mc-img {
    background: var(--gp);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mc-img::after {
    /* content: '' */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent,rgba(0,61,77,.5));
}

.cv-img {
    width: 72%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.mc-body {
    padding: 1.5rem;
}

.mc-ti {
    font-size: .95rem;
    font-weight: 400;
    color: var(--deep);
    line-height: 1.6;
    font-style: italic;
}

.mc:hover .mc-ti {
    color: var(--gp);
}

.mc-me {
    font-size: .62rem;
    letter-spacing: .1em;
    color: #007E66;
    margin-top: .8rem;
    text-transform: uppercase;
}

.mid-cta {
    text-align: center;
    margin-top: 3rem;
}

.mid-lnk {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gp);
    text-decoration: none;
    border-bottom: 1px solid var(--gp);
    padding-bottom: 2px;
    cursor: pointer;
}

.cli {
    padding: 1rem 0 6rem;
    background: #fff;
    overflow: hidden;
}

.cli-hdr {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 6rem;
}

.cli-stag {
    font-size: .65rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gp);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    margin-top: 5em;
}

.cli-stag::before,
.cli-stag::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gp);
}

.cli-t {
    font-size: clamp(1.9rem,3vw,2.8rem);
    font-weight: 300;
    color: var(--deep);
}

.cli-t strong {
    font-weight: 900;
    color: var(--gp);
}

.mq {
    position: relative;
    overflow: hidden;
}

.mq::before,
.mq::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8rem;
    z-index: 1;
    pointer-events: none;
}

.mq::before {
    left: 0;
    background: linear-gradient(to right,#fff,transparent);
}

.mq::after {
    right: 0;
    background: linear-gradient(to left,#fff,transparent);
}

.mq-tr {
    display: flex;
    animation: mq 36s linear infinite;
    width: max-content;
}

@keyframes mq{
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.cp {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2.5rem;
    border-right: 1px solid var(--cr);
    white-space: nowrap;
    min-width: 200px;
}

.cp-n {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep);
}

.cp-c {
    font-size: .65rem;
    letter-spacing: .1em;
    color: #007E66;
    text-transform: uppercase;
    margin-top: .2rem;
    font-weight: 300;
}

.ctt {
    padding: 8rem 4rem;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.ct-t {
    font-size: clamp(2rem,3.5vw,3rem);
    font-weight: 300;
    color: var(--deep);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.ct-t strong {
    font-weight: 900;
    color: var(--gp);
}

.ct-p {
    font-size: 1rem;
    line-height: 2;
    color: #007E66;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.ct-dets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ct-item {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    font-size: .92rem;
    color: var(--deep);
}

.ct-dot {
    width: 6px;
    height: 6px;
    background: var(--gp);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: .45rem;
}

.ct-soc {
    display: flex;
    gap: .8rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--cr);
}

.sb {
    display: inline-block;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--deep);
    text-decoration: none;
    border: 1px solid var(--cr);
    padding: .65rem 1.2rem;
    transition: all .3s;
}

.sb:hover {
    background: var(--gp);
    color: #fff;
    border-color: var(--gp);
}

.ct-form {
    background: var(--off);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.ct-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gp);
}

.fg {
    margin-bottom: 1.6rem;
}

.fl {
    display: block;
    font-size: .58rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #007E66;
    margin-bottom: .6rem;
}

.fi,
.fta {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--cr);
    padding: .6rem 0;
    font-family: Lato,sans-serif;
    font-size: .95rem;
    font-weight: 300;
    color: var(--deep);
    outline: none;
    transition: border-color .3s;
}

.fi:focus,
.fta:focus {
    border-bottom-color: var(--gp);
}

.fta {
    resize: none;
    height: 80px;
}

.fb {
    width: 100%;
    background: var(--gp);
    color: #fff;
    border: none;
    padding: 1rem;
    font-family: Lato,sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s;
    margin-top: .5rem;
}

.fb:hover {
    background: var(--gd);
}

footer {
    background: var(--deep);
    padding: 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ft-logo {
    height: 40px;
    width: auto;
    cursor: pointer;
    opacity: .9;
    object-fit: contain;
}

.ft-copy {
    font-size: .65rem;
    color: rgba(255,255,255,.3);
}

.ft-links {
    display: flex;
    gap: 1.5rem;
}

.ft-links a {
    font-size: .6rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
    text-decoration: none;
    transition: color .3s;
}

.ft-links a:hover {
    color: var(--gp);
}

.dp {
    background: #007e66;
    min-height: 100vh;
    padding-top: 100px;
}

.dp-hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.dp-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: zoom 20s ease-in-out infinite alternate;
}

.dp-hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,61,77,.92),rgba(0,61,77,.3) 55%,transparent);
}

.dp-hero-cnt {
    position: relative;
    z-index: 2;
    padding: 3.5rem 5rem;
    color: #fff;
    max-width: 1400px;
    width: 100%;
}

.dp-sup {
    font-size: .65rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gp);
    margin-bottom: .8rem;
    display: flex;
    align-items: center;
    gap: .8rem;
}

.dp-sup::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gp);
}

.dp-h1 {
    font-size: clamp(2.5rem,5.5vw,4.5rem);
    font-weight: 700;
    line-height: 1.08;
}

.dp-hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,.72);
    margin-top: .9rem;
    max-width: 560px;
    line-height: 1.75;
}

.dp-body {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 5rem 0rem;
}

.dp-intro {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.dp-intro-t h2 {
    font-size: clamp(1.8rem,3vw,2.6rem);
    font-weight: 300;
    color: var(--deep);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.dp-intro-t h2 strong {
    font-weight: 900;
    color: var(--gp);
}

.dp-intro-t p {
    font-size: 1rem;
    line-height: 2.05;
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.dp-intro-img {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 4/3;
    grid-area: 1 / 2 / 2 / 3;
}

.dp-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    grid-area: 1 / 2 / 2 / 3;
}

.dp-feats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.dp-fc {
    background: #ffff;
    padding: 2.5rem 2rem;
    border-top: 3px solid var(--gp);
    transition: box-shadow .3s;
}

.dp-fc:hover {
    box-shadow: 0 8px 32px rgba(0,61,77,.1);
}

.dp-fc-n {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0,150,97,.12);
    line-height: 1;
    margin-bottom: 1rem;
}

.dp-fc-t {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: .8rem;
}

.dp-fc-d {
    font-size: .92rem;
    line-height: 1.85;
    color: #007E66;
    font-weight: 300;
}

.dp-proc {
    margin-bottom: 5rem;
}

.dp-proc-t {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--deep);
    margin-bottom: 2.5rem;
}

.dp-proc-t strong {
    font-weight: 900;
    color: var(--gp);
}

.dp-steps {
    display: flex;
    flex-direction: column;
}

.dp-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0;
    position: relative;
}

.dp-step:not(:last-child) .dp-step-ln {
    position: absolute;
    left: 29px;
    top: 44px;
    bottom: -1px;
    width: 2px;
    background: linear-gradient(to bottom,var(--gp),rgba(0,150,97,.15));
}

.dp-step-dot {
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4px;
}

.dp-step-c {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gp);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dp-step-c span {
    font-size: .75rem;
    font-weight: 900;
    color: #fff;
}

.dp-step-body {
    padding: 0 0 3rem 1.5rem;
}

.dp-step-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: .5rem;
}

.dp-step-body p {
    font-size: .92rem;
    line-height: 1.9;
    color: #ffffff;
    font-weight: 300;
}

.dp-cta {
    background: var(--deep);
    padding: 4rem 5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.dp-cta-t h3 {
    font-size: 1.8rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: .7rem;
}

.dp-cta-t h3 strong {
    font-weight: 900;
    color: var(--gp);
}

.dp-cta-t p {
    font-size: .95rem;
    color: rgba(255,255,255,.58);
    font-weight: 300;
}

.dp-cta-btn {
    background: var(--gp);
    color: #fff;
    text-decoration: none;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 1.1rem 2.2rem;
    white-space: nowrap;
    transition: background .3s;
    display: inline-block;
}

.dp-cta-btn:hover {
    background: var(--gd);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: invert(1) brightness(2);
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gp);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 2.5rem;
    font-family: Lato,sans-serif;
    transition: gap .3s;
}

.back-btn:hover {
    gap: .8rem;
}

/* ── PORTFOLIO — flat gallery, no city groups ── */
.port-section {
    padding: 5rem 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.port-hdr {
    margin-bottom: 3rem;
    text-align: center;
}

.port-hdr h2 {
    font-size: clamp(1.8rem,3vw,2.6rem);
    font-weight: 300;
    color: var(--deep);
    margin-bottom: .8rem;
}

.port-hdr h2 strong {
    font-weight: 900;
    color: var(--gp);
}

.port-hdr p {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.port-grid {
    column-count: 3;
    column-gap: 10px;
}

.pg-item {
    break-inside: avoid;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.pg-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s ease;
}

.pg-item:hover img {
    transform: scale(1.04);
}

.pg-ov {
    position: absolute;
    inset: 0;
    background: rgba(0,61,77,.35);
    opacity: 0;
    transition: opacity .3s;
}

.pg-item:hover .pg-ov {
    opacity: 1;
}

/* Lightbox */
.lb {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,.94);
    align-items: center;
    justify-content: center;
}

.lb.open {
    display: flex;
}

.lb-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 2px;
    animation: lbIn .25s ease;
}

@keyframes lbIn{
    from {
        opacity: 0;
        transform: scale(.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lb-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: .7;
    transition: opacity .3s;
    font-family: Lato,sans-serif;
    line-height: 1;
}

.lb-close:hover {
    opacity: 1;
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: .8rem 1.2rem;
    transition: all .3s;
    font-family: Lato,sans-serif;
}

.lb-nav:hover {
    background: rgba(255,255,255,.28);
}

.lb-prev {
    left: 1.5rem;
}

.lb-next {
    right: 1.5rem;
}

.lb-counter {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: .65rem;
    letter-spacing: .2em;
    color: rgba(255,255,255,.5);
}

.mp {
    background: #003D4D;
    min-height: 100vh;
    padding-top: 100px;
}

.mp-hero {
    background: var(--deep);
    padding: 5rem 5rem 4rem;
    position: static;
}

.mp-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gp);
}

.mp-in {
    max-width: 1400px;
    margin: 0 auto;
}

.mp-sup {
    font-size: .65rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gp);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .8rem;
}

.mp-sup::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gp);
}

.mp-h1 {
    font-size: clamp(2.5rem,5vw,4rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 1rem;
}

.mp-h1 strong {
    font-weight: 900;
    color: var(--gp);
}

.mp-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.6);
    font-weight: 300;
    max-width: 600px;
    line-height: 1.75;
}

.mp-body {
    max-width: 1400px;
    margin: 63px auto;
    padding: 4rem 5rem 7rem;
}

.mp-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.5rem;
}

.mp-card {
    background: #ffffff;
    text-decoration: none;
    display: block;
    border: 1px solid var(--cr);
    transition: transform .3s,box-shadow .3s;
}

.mp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0,61,77,.12);
}

.mp-card-img {
    background: var(--gp);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mp-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(transparent,rgba(0,61,77,.5));
}

.mp-cv {
    width: 60%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.mp-src {
    position: absolute;
    top: .8rem;
    right: .8rem;
    font-size: .5rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fff;
    padding: .25rem .6rem;
    z-index: 3;
    border-radius: 2px;
}

.mp-card-body {
    padding: 1.2rem;
}

.mp-card-ti {
    /* font-size: .88rem */
    font-weight: 400;
    color: var(--deep);
    line-height: 1.55;
}

.mp-card:hover .mp-card-ti {
    color: var(--gp);
}

/* === Casa Vogue press card placeholder badges (replaces 46 blank PNGs) === */
.cv-img,
.mp-cv {
    background: transparent url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 300'%3E%3Cg fill='%23ffffff'%3E%3Ctext x='300' y='130' text-anchor='middle' font-family='Georgia, Times, serif' font-size='78' font-style='italic' font-weight='400'%3ECasa%3C/text%3E%3Ctext x='300' y='230' text-anchor='middle' font-family='Lato, Helvetica, sans-serif' font-size='44' letter-spacing='14' font-weight='400'%3EVOGUE%3C/text%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

.cv-img {
    width: 72%;
    aspect-ratio: 2/1;
}

.mp-cv {
    width: 65%;
    aspect-ratio: 2/1;
}

/* Strip from the broken external svg fallbacks if any extra spacing */
img[data-needs-photo] {
    background: linear-gradient(135deg,#007E66 0%,#003D4D 100%);
}

/* ============================================================
   MOBILE NAV TOGGLE (hamburger)
   ============================================================ */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 250;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
    transition: transform .3s, opacity .3s;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   MOBILE — up to 768px
   ============================================================ */
@media (max-width: 768px) {
    /* ---------- NAV ---------- */
    nav {
        grid-template-columns: auto 1fr auto auto !important;
        padding: .6rem 1rem !important;
        gap: .5rem;
    }

    nav.sc {
        padding: .5rem 1rem !important;
    }

    .n-logo {
        height: 42px !important;
        width: auto !important;
    }

    nav.sc .n-logo {
        height: 36px !important;
    }

    /* Hide the desktop link list, show the hamburger */
    .n-links {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        margin: 0 !important;
        background: rgba(0,61,77,0.98);
        backdrop-filter: blur(14px);
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1.6rem !important;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform .4s cubic-bezier(.4,0,.2,1), visibility 0s .4s;
        z-index: 220;
        padding: 5rem 2rem !important;
        box-sizing: border-box !important;
        overflow-y: auto;
    }

    .n-links.open {
        transform: translateX(0);
        visibility: visible;
        transition: transform .4s cubic-bezier(.4,0,.2,1), visibility 0s 0s;
    }

    .n-links a {
        font-size: 1.1rem !important;
        letter-spacing: .12em !important;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
        margin-right: -4px;
    }

    .n-cta {
        /* Tuck CTA inside the mobile drawer */
        display: none;
    }

    .n-links.open + .n-cta-mobile,
    .n-links.open .n-cta-mobile {
        display: inline-block;
    }

    /* ---------- HERO ---------- */
    .hero {
        min-height: 580px;
    }

    .h-eye {
        font-size: .75rem !important;
        letter-spacing: .25em !important;
    }

    .h-line {
        width: 60px !important;
    }

    .h-tag,
    .h-ti,
    h1.h-ti {
        font-size: 1.25rem !important;
        letter-spacing: .12em !important;
        line-height: 1.4 !important;
        margin: .8rem 0 !important;
    }

    /* Counter row */
    .h-cnt > div[style*="display:flex"],
    .h-counter,
    .cnt-wrap {
        flex-wrap: wrap;
        gap: 1rem !important;
    }

    /* Big counter numbers */
    #cnt-d,
    #cnt-h,
    #cnt-m,
    #cnt-s {
        font-size: 2.4rem !important;
    }

    .h-cnt-item,
    .cnt-cell {
        min-width: 70px;
    }

    .h-sub,
    .h-quote {
        font-size: .9rem !important;
        line-height: 1.5 !important;
        padding: 0 1rem !important;
    }

    .h-btns,
    .h-cta-row {
        flex-wrap: wrap;
        gap: .8rem !important;
        justify-content: center;
    }

    .h-btn {
        font-size: .7rem !important;
        padding: .9rem 1.6rem !important;
    }

    /* ---------- ABOUT ---------- */
    .ab-w {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        padding: 4rem 1.25rem !important;
    }

    .ab-s {
        padding: 0 !important;
    }

    .ab-t {
        font-size: 2rem !important;
        line-height: 1.15 !important;
    }

    .ab-p {
        font-size: .95rem !important;
        line-height: 1.7 !important;
    }

    .ab-stats {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 1rem !important;
        margin-top: 2rem !important;
    }

    .ab-stats .sn {
        font-size: 1.8rem !important;
    }

    .ab-stats .sl {
        font-size: .65rem !important;
        line-height: 1.3 !important;
    }

    .ab-vis {
        aspect-ratio: 4/5;
    }

    .ss .slide {
        background-size: cover;
        background-position: center;
    }

    .ab-bdg {
        bottom: -20px !important;
        right: 12px !important;
        padding: 1rem 1.4rem !important;
    }

    .ab-bdg-n {
        font-size: 1.4rem !important;
    }

    .ab-bdg-t {
        font-size: .65rem !important;
    }

    /* ---------- GREEN STRIP ---------- */
    .strip {
        flex-direction: column !important;
        gap: 1.2rem !important;
        padding: 2.5rem 1.5rem !important;
        text-align: center;
    }

    .st-t {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    /* ---------- SERVICES ---------- */
    .svcs {
        padding: 5rem 0 !important;
    }

    .svcs-in {
        padding: 0 1.25rem !important;
    }

    .svcs-top {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 3rem !important;
    }

    .svcs-t {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
    }

    .sc-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .sc {
        padding: 2rem 1.5rem !important;
    }

    .sc-n {
        font-size: 3rem !important;
    }

    .sc-name {
        font-size: 1.3rem !important;
    }

    /* ---------- MEDIA HOME ---------- */
    .mid {
        padding: 5rem 1rem !important;
    }

    .mid-t {
        font-size: 2rem !important;
    }

    .mid-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }

    .mc-img {
        aspect-ratio: 16/9;
    }

    .cv-img {
        width: 60% !important;
        aspect-ratio: 2/1 !important;
        min-height: 80px !important;
    }

    /* ---------- CLIENTS ---------- */
    .cli {
        padding: 5rem 0 !important;
    }

    .cli-hdr {
        padding: 0 1.25rem !important;
    }

    .cli-t {
        font-size: 2rem !important;
    }

    .cp {
        padding: 1rem 1.5rem !important;
        min-width: 180px !important;
    }

    .cp-n {
        font-size: .9rem !important;
    }

    .cp-c {
        font-size: .65rem !important;
    }

    /* ---------- CONTACT ---------- */
    .ctt {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        padding: 5rem 1.25rem !important;
    }

    .ct-t {
        font-size: 2rem !important;
    }

    .ct-p,
    .ct-item {
        font-size: .95rem !important;
    }

    .ct-form {
        padding: 2rem 1.5rem !important;
    }

    .ct-soc {
        flex-wrap: wrap;
        gap: .8rem !important;
    }

    /* ---------- FOOTER ---------- */
    footer {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center;
        padding: 3rem 1.25rem !important;
    }

    .ft-links {
        justify-self: center;
    }

    .ft-copy {
        order: 3;
    }

    /* ---------- INNER PAGES (Produção, Shopping, Design, Mídia) ---------- */
    .dp-hero {
        min-height: 360px !important;
    }

    .dp-hero-cnt {
        padding: 0 1.25rem !important;
    }

    .dp-sup {
        font-size: .65rem !important;
        letter-spacing: .22em !important;
    }

    .dp-h1 {
        font-size: 2.4rem !important;
        line-height: 1.05 !important;
    }

    .dp-hero-sub {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    .dp-body {
        padding: 3rem 1.25rem !important;
    }

    .back-btn {
        font-size: .7rem !important;
        margin-bottom: 2rem !important;
    }

    .dp-intro {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .dp-intro-t h2 {
        font-size: 1.8rem !important;
        line-height: 1.15 !important;
    }

    .dp-intro-t p {
        font-size: .95rem !important;
        line-height: 1.7 !important;
    }

    .dp-intro-img {
        aspect-ratio: 4/3;
    }

    .dp-feats {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin: 3rem 0 !important;
    }

    .dp-fc {
        padding: 1.75rem 1.5rem !important;
    }

    .dp-fc-n {
        font-size: 2.4rem !important;
    }

    .dp-fc-t {
        font-size: 1.1rem !important;
    }

    .dp-fc-d {
        font-size: .9rem !important;
    }

    .dp-proc {
        padding: 3rem 0 !important;
    }

    .dp-proc-t {
        font-size: 1.7rem !important;
        margin-bottom: 2.5rem !important;
    }

    .dp-steps {
        padding-left: .5rem !important;
    }

    .dp-step {
        padding-left: 2.8rem !important;
    }

    .dp-step-dot {
        width: 36px !important;
        height: 36px !important;
    }

    .dp-step-c {
        width: 26px !important;
        height: 26px !important;
        font-size: .7rem !important;
    }

    .dp-step-body h4 {
        font-size: 1rem !important;
    }

    .dp-step-body p {
        font-size: .9rem !important;
    }

    .dp-cta {
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: stretch !important;
        padding: 2rem 1.5rem !important;
        text-align: center;
    }

    .dp-cta-t h3 {
        font-size: 1.4rem !important;
    }

    .dp-cta-t p {
        font-size: .9rem !important;
    }

    .dp-cta-btn {
        font-size: .75rem !important;
        padding: 1rem 1.5rem !important;
        text-align: center;
    }

    /* Portfolio masonry → single column */
    .port-section {
        padding: 3rem 1rem !important;
    }

    .port-hdr h2 {
        font-size: 2rem !important;
    }

    .port-grid {
        columns: 1 !important;
        column-gap: 0 !important;
    }

    .pg-item {
        margin-bottom: 8px !important;
    }

    /* Mídia page */
    .mp-hero {
        padding: 6rem 1.25rem 4rem !important;
    }

    .mp-h1 {
        font-size: 2.4rem !important;
        line-height: 1.05 !important;
    }

    .mp-hero-sub {
        font-size: .95rem !important;
    }

    .mp-body {
        padding: 3rem 1.25rem !important;
    }

    .mp-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    .mp-card-img {
        aspect-ratio: 3/2;
    }

    .mp-cv {
        width: 80% !important;
        aspect-ratio: 2/1 !important;
        min-height: 70px !important;
    }

    .mp-card-ti {
        font-size: .8rem !important;
        line-height: 1.4 !important;
    }

    /* Lightbox controls */
    #lb-img {
        max-width: 96vw !important;
        max-height: 80vh !important;
    }

    #lb .lb-nav {
        width: 38px !important;
        height: 38px !important;
    }

    #lb-ctr {
        font-size: .75rem !important;
    }
}

/* ============================================================
   ULTRA SMALL — up to 380px
   ============================================================ */
@media (max-width: 380px) {
    .h-tag,
    h1.h-ti {
        font-size: 1.05rem !important;
    }

    .ab-t,
    .svcs-t,
    .mid-t,
    .cli-t,
    .ct-t,
    .dp-h1,
    .mp-h1 {
        font-size: 1.7rem !important;
    }

    .ab-stats {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: .5rem !important;
    }

    .ab-stats .sn {
        font-size: 1.5rem !important;
    }

    #cnt-d,
    #cnt-h,
    #cnt-m,
    #cnt-s {
        font-size: 2rem !important;
    }

    .mp-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================================
   TABLET — 769 to 1024px
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    nav {
        padding: .7rem 1.5rem !important;
    }

    .ab-w,
    .ctt {
        padding: 5rem 2rem !important;
    }

    .svcs-in {
        padding: 0 2rem !important;
    }

    .mid {
        padding: 5rem 2rem !important;
    }

    .ab-t,
    .svcs-t,
    .mid-t,
    .cli-t,
    .ct-t {
        font-size: 2.6rem !important;
    }

    .dp-h1,
    .mp-h1 {
        font-size: 3.2rem !important;
    }

    .sc-grid,
    .mid-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .mp-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
    }
}

/* ============================================================
   SAFE AREA — for iPhone notch & home bar
   ============================================================ */
@supports (padding: max(0px)) {
    nav {
        padding-left: max(1rem, env(safe-area-inset-left)) !important;
        padding-right: max(1rem, env(safe-area-inset-right)) !important;
    }

    footer {
        padding-bottom: max(3rem, env(safe-area-inset-bottom)) !important;
    }
}

@media (max-width: 768px) {
    /* Hero — counter fixes */
    .h-ctr {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        margin: 1.5rem 0 2rem !important;
        width: 100%;
        max-width: 100vw;
    }

    .cu {
        padding: 0 .25rem !important;
        min-width: 0;
    }

    .cu + .cu {
        border-left: 1px solid rgba(255,255,255,.2);
    }

    .cn {
        font-size: clamp(1.6rem, 9vw, 2.4rem) !important;
        letter-spacing: -.03em !important;
        line-height: 1 !important;
        font-feature-settings: 'tnum';
    }

    .cl {
        font-size: .55rem !important;
        letter-spacing: .18em !important;
        margin-top: .4rem !important;
    }

    /* Hero text constraints */
    .h-cnt {
        width: 100%;
        max-width: 100vw;
        padding: 0 1.25rem !important;
        box-sizing: border-box;
    }

    .h-tag {
        font-size: .95rem !important;
        line-height: 1.55 !important;
        padding: 0 .5rem !important;
        max-width: 100% !important;
    }

    .h-lbl {
        font-size: .85rem !important;
        letter-spacing: .25em !important;
    }

    .h-eye {
        font-size: .65rem !important;
        letter-spacing: .25em !important;
    }

    .h-acts {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
        max-width: 320px;
        margin: 1.5rem auto 0 !important;
        gap: .7rem !important;
    }

    .h-acts button {
        width: 100%;
    }

    .bp,
    .bg {
        padding: .95rem 1.4rem !important;
        font-size: .7rem !important;
    }
}

/* Magazine-specific press-card badges (replaces broken external logo refs) */
.mp-cv.is-cej {
    background: transparent url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 300'%3E%3Cg fill='%23ffffff'%3E%3Ctext x='300' y='130' text-anchor='middle' font-family='Georgia, Times, serif' font-size='78' font-style='italic' font-weight='400'%3ECasa%3C/text%3E%3Ctext x='300' y='230' text-anchor='middle' font-family='Lato, Helvetica, sans-serif' font-size='38' letter-spacing='10' font-weight='400'%3EE JARDIM%3C/text%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat !important;
}

.mp-cv.is-cc {
    background: transparent url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 300'%3E%3Cg fill='%23ffffff'%3E%3Ctext x='300' y='130' text-anchor='middle' font-family='Georgia, Times, serif' font-size='78' font-style='italic' font-weight='400'%3ECasa%3C/text%3E%3Ctext x='300' y='230' text-anchor='middle' font-family='Lato, Helvetica, sans-serif' font-size='40' letter-spacing='12' font-weight='400'%3ECLAUDIA%3C/text%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat !important;
}

@media (max-width: 768px) {
    /* Override the hard-coded grid-area on inner pages so single column actually works */
    .dp-intro {
        display: block !important;
        margin-bottom: 3rem !important;
    }

    .dp-intro-t,
    .dp-intro-img {
        grid-area: auto !important;
        width: 100% !important;
        margin-bottom: 2rem !important;
    }

    .dp-intro-img {
        aspect-ratio: 4/3 !important;
    }

    .dp-intro-img img {
        grid-area: auto !important;
    }

    /* Production page hero image */
    .dp-hero-bg img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* ============================================================
   LANGUAGE SWITCHER v2 — PT / EN / ES with flag icons
   ============================================================ */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .72rem;
    letter-spacing: .14em;
    font-weight: 500;
    text-transform: uppercase;
    user-select: none;
    font-family: 'Lato', sans-serif;
    margin-right: 1.2rem;
}

.lang-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: .25rem .15rem;
    line-height: 1;
    text-decoration: none;
    transition: opacity .25s, color .25s;
}

.lang-item .lang-code {
    display: block;
    letter-spacing: inherit;
}

a.lang-item {
    color: rgba(255,255,255,.55);
    cursor: pointer;
}

a.lang-item .lang-flag {
    opacity: .65;
    transition: opacity .25s;
}

a.lang-item:hover {
    color: #fff;
}

a.lang-item:hover .lang-flag {
    opacity: 1;
}

.lang-item.lang-current {
    color: #fff;
    font-weight: 700;
    cursor: default;
}

.lang-item.lang-current .lang-flag {
    opacity: 1;
}

.lang-flag {
    width: 18px;
    height: auto;
    display: block;
    border-radius: 1.5px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.18), 0 1px 2px rgba(0,0,0,.15);
}

.lang-sep {
    display: inline-block;
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,.2);
    margin: 0 .1rem;
    align-self: center;
}

/* In condensed (scrolled) nav, keep proportions */
nav.sc .lang-switch {
    font-size: .7rem;
}

nav.sc .lang-flag {
    width: 16px;
}

/* Mobile inline switcher (in nav bar) */
@media (max-width: 768px) {
    .lang-switch {
        font-size: .66rem;
        margin-right: .4rem;
        gap: .3rem;
    }

    .lang-item {
        padding: .15rem .1rem;
        gap: 3px;
    }

    .lang-flag {
        width: 15px;
    }

    .lang-sep {
        height: 16px;
    }
}

@media (max-width: 380px) {
    /* Hide inline switcher on very small phones; only drawer one remains */
    nav > .lang-switch {
        display: none;
    }
}

/* Drawer version (inside mobile menu) — bigger labels */
.lang-switch.in-drawer {
    display: none !important;
}

@media (max-width: 768px) {
    .lang-switch.in-drawer {
        display: none;
        font-size: .85rem;
        gap: 1rem;
        letter-spacing: .18em;
        margin: 1.5rem auto 0;
        border-top: 1px solid rgba(255,255,255,.15);
        padding: 1.5rem 1rem 0;
        width: auto;
        max-width: 90%;
        justify-content: center;
    }

    .n-links.open .lang-switch.in-drawer {
        display: inline-flex !important;
    }

    .lang-switch.in-drawer .lang-item {
        gap: 7px;
        padding: .4rem .3rem;
    }

    .lang-switch.in-drawer .lang-flag {
        width: 24px;
    }

    .lang-switch.in-drawer .lang-sep {
        height: 28px;
    }
}

@media (max-width: 768px) {
    /* Re-establish flex ordering: logo → lang-switch → hamburger (right edge) */
    nav {
        display: flex !important;
        gap: 0 !important;
    }

    .n-logo {
        order: 0;
        flex: 0 0 auto;
    }

    .n-links {
        order: 2;
    }

    nav > .lang-switch {
        order: 3;
        flex: 0 0 auto;
        margin-left: auto;
        margin-right: .5rem;
    }

    .nav-toggle {
        order: 4;
        flex: 0 0 auto;
        margin-right: -4px;
    }
}

/* ============================================================
   Contact form — feedback + actions row
   ============================================================ */
.ct-feedback {
    min-height: 1.2em;
    font-size: .82rem;
    margin: .25rem 0 .8rem;
    line-height: 1.45;
    transition: color .2s;
    color: rgba(0,61,77,0);
}

.ct-feedback-err {
    color: #c0392b;
    font-weight: 500;
}

.ct-feedback-ok {
    color: #007E66;
}

.fi-err,
.fta.fi-err {
    border-bottom-color: #c0392b !important;
}

.ct-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: .5rem;
}

.ct-or {
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(0,61,77,.5);
}

.fb-wa {
    background: #003D4D;
    color: #fff !important;
    border: 0 !important;
}

.fb-wa:hover {
    background: #003D4D;
}

@media (max-width: 768px) {
    .ct-actions {
        flex-direction: column;
        align-items: stretch;
        gap: .6rem;
    }

    .ct-or {
        text-align: center;
    }

    .ct-actions .fb {
        width: 100%;
    }
}

/* ============================================================
   iOS ZOOM PREVENTION
   ============================================================ */
/* iOS Safari auto-zooms on inputs with font-size < 16px */
@media screen and (max-width: 768px) {
    .fi,
    .fta,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Lightbox: prevent zoom while swiping images */
.lb {
    touch-action: none;
}

.lb-img {
    touch-action: pan-x;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Ensure images in portfolio grid don't trigger zoom */
.pg-item img {
    touch-action: manipulation;
    -webkit-touch-callout: none;
}

/* Prevent iOS overscroll bounce that makes the page feel broken */
.page.active {
    -webkit-overflow-scrolling: touch;
}

/* Fix nav inline style override — ensure auto height */
nav {
    height: auto !important;
}

/* ============================================================
   IMMERSIVE LUXURY EXPERIENCE — Estúdio La Folha
   Cinematic Hero, Therapeutic Tropicalism, 3D Showcase, Biome Module
   ============================================================ */
/* ── Cinematic Hero Enhancement ── */
.h-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.h-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,150,97,0.18), transparent 70%);
}

.h-p1 {
    width: 500px;
    height: 500px;
    top: -10%;
    right: -8%;
    animation: h-float 20s ease-in-out infinite;
}

.h-p2 {
    width: 350px;
    height: 350px;
    bottom: 5%;
    left: -5%;
    animation: h-float 16s ease-in-out infinite reverse;
}

.h-p3 {
    width: 200px;
    height: 200px;
    top: 35%;
    left: 15%;
    animation: h-float 14s ease-in-out infinite 3s;
}

@keyframes h-float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.06;
    }

    33% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.12;
    }

    66% {
        transform: translate(-20px, 15px) scale(0.95);
        opacity: 0.04;
    }
}

.h-headline {
    font-family: 'Lato', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.h-headline strong {
    font-weight: 200;
    color: var(--gp);
    display: block;
}

.h-sub-text {
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    max-width: 620px;
    margin: 0 auto 1.2rem;
    line-height: 1.9;
}

/* ── Therapeutic Tropicalism Section ── */
.tt-section {
    background: var(--deep);
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
}

.tt-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gp), transparent);
}

.tt-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.tt-label {
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gp);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tt-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gp);
}

.tt-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.tt-title strong {
    font-weight: 600;
    color: var(--gp);
}

.tt-text {
    font-size: 1rem;
    line-height: 2;
    color: rgba(255,255,255,0.58);
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.tt-accent {
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gd);
    border-left: 2px solid var(--gp);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    line-height: 1.8;
}

.tt-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tt-stat {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.tt-stat:first-child {
    border-top: 1px solid rgba(255,255,255,0.07);
}

.tt-stat-n {
    font-family: 'Lato', sans-serif;
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--gp);
    line-height: 1;
    min-width: 110px;
}

.tt-stat-t {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    line-height: 1.5;
}

/* ── 3D Visualization Showcase ── */
.viz-section {
    padding: 8rem 4rem;
    overflow: hidden;
}

.viz-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gp), transparent);
}

.viz-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.viz-header {
    text-align: center;
    margin-bottom: 5rem;
}

.viz-label {
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #ffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.viz-label::before,
.viz-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gp);
}

.viz-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    color: var(--deep);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.viz-title strong {
    font-weight: 600;
    color: var(--gp);
}

.viz-subtitle {
    font-size: 1.05rem;
    color: #003D4D;
    font-weight: 300;
    max-width: 740px;
    margin: 0 auto;
    line-height: 1.85;
}

.viz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.viz-card {
    background: #fff;
    padding: 2.8rem 2.2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
}

.viz-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--gp), var(--gd));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

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

.viz-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,61,77,0.1);
}

.viz-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viz-card-icon svg {
    width: 100%;
    height: 100%;
    color: var(--gp);
}

.viz-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 0.8rem;
}

.viz-card-text {
    font-size: 0.92rem;
    line-height: 1.85;
    color: #007E66;
    font-weight: 300;
}

.viz-quote {
    text-align: center;
    padding: 3rem 2rem 0;
}

.viz-quote-text {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-style: italic;
    color: var(--deep);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.viz-quote-btn {
    display: inline-block;
    background: var(--gp);
    color: #fff;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 1.1rem 2.5rem;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s;
}

.viz-quote-btn:hover {
    background: var(--gd);
    transform: translateY(-2px);
}

/* ── Interactive Biome Module ── */
.biome-section {
    padding: 8rem 4rem;
    background: var(--deep);
    position: relative;
}

.biome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gp), transparent);
}

.biome-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.biome-header {
    text-align: center;
    margin-bottom: 4rem;
}

.biome-blabel {
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gp);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.biome-blabel::before,
.biome-blabel::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gp);
}

.biome-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.biome-title strong {
    font-weight: 600;
    color: var(--gp);
}

.biome-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.52);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.biome-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 4rem;
    border: 1px solid rgba(255,255,255,0.12);
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

.biome-btn {
    flex: 1;
    padding: 1.2rem 2rem;
    background: transparent;
    border: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
}

.biome-btn + .biome-btn {
    border-left: 1px solid rgba(255,255,255,0.12);
}

.biome-btn.active {
    background: var(--gp);
    color: #fff;
}

.biome-btn:hover:not(.active) {
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.04);
}

.biome-panel {
    display: none;
    animation: biome-fade 0.5s ease;
}

.biome-panel.active {
    display: block;
}

@keyframes biome-fade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.biome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.biome-info h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1rem;
}

.biome-info h3 strong {
    font-weight: 600;
    color: var(--gp);
}

.biome-desc {
    font-size: 1rem;
    line-height: 2;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    margin-bottom: 2rem;
}

.biome-tags {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.biome-tag {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gp);
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(0,150,97,0.3);
    font-weight: 400;
}

.biome-plants-list {
    display: flex;
    flex-direction: column;
}

.biome-plant {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.2rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    align-items: start;
}

.biome-plant:first-child {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.biome-plant-n {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: rgba(0,150,97,0.2);
    line-height: 1;
}

.biome-plant-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.biome-plant-latin {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--gd);
    margin-bottom: 0.4rem;
}

.biome-plant-detail {
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
}

.biome-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.biome-cta-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.5rem;
}

.biome-cta-btn {
    display: inline-block;
    background: var(--gp);
    color: var(--deep);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    transition: all 0.3s;
}

.biome-cta-btn:hover {
    background: var(--gd);
    transform: translateY(-2px);
}

/* ── Enhanced Scroll Reveal ── */
.reveal-line {
    width: 0;
    height: 1px;
    background: var(--gp);
    transition: width 1.2s ease;
    margin: 1rem 0;
}

.reveal-line.visible {
    width: 80px;
}

/* ── Mobile responsive for new sections ── */
@media (max-width: 768px) {
    .h-headline {
        font-size: 1.9rem !important;
        line-height: 1.2 !important;
    }

    .h-headline strong {
        font-size: inherit;
    }

    .h-sub-text {
        font-size: 0.9rem !important;
        line-height: 1.65 !important;
        padding: 0 0.5rem;
    }

    .h-particles {
        display: none;
    }

    .tt-section {
        padding: 5rem 1.25rem !important;
    }

    .tt-inner {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .tt-title {
        font-size: 1.8rem !important;
    }

    .tt-accent {
        font-size: 1.05rem !important;
    }

    .tt-stat-n {
        font-size: 2.2rem !important;
        min-width: 80px !important;
    }

    .viz-section {
        padding: 5rem 1.25rem !important;
    }

    .viz-header {
        margin-bottom: 3rem !important;
    }

    .viz-title {
        font-size: 1.8rem !important;
    }

    .viz-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .viz-card {
        padding: 2rem 1.5rem !important;
    }

    .viz-quote-text {
        font-size: 1.05rem !important;
    }

    .biome-section {
        padding: 5rem 1.25rem !important;
    }

    .biome-title {
        font-size: 1.8rem !important;
    }

    .biome-nav {
        flex-direction: column !important;
        max-width: 100% !important;
    }

    .biome-btn + .biome-btn {
        border-left: none !important;
        border-top: 1px solid rgba(255,255,255,0.12) !important;
    }

    .biome-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .biome-info h3 {
        font-size: 1.4rem !important;
    }

    .biome-tags {
        gap: 0.5rem !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .tt-inner {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .viz-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .biome-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
}

hover {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100;
    object-fit: cover;
    opacity: 1;
    height: 100;
}

.viz-card:hover .card-hover-video {
    opacity: 1;
    z-index: 10;
}
