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

  :root {
    --verde: #46938E;
    --verde-dark: #2d6b67;
    --verde-light: #e8f4f3;
    --offwhite: #D9D5CC;
    --nude: #D7B1A3;
    --nude-light: #f5ede9;
    --grafite: #3B393B;
    --creme: #FAF8F5;
    --branco: #FFFFFF;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--creme);
    color: var(--grafite);
    overflow-x: hidden;
  }

  img { display: block; max-width: 100%; }
  a { text-decoration: none; color: inherit; }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250,248,245,0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(217,213,204,.6);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1rem;
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: .85rem;
    text-decoration: none;
    flex-shrink: 0;
  }

  .nav-logo-img {
    width: 46px; height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--offwhite);
  }

  .nav-logo-img img { width: 100%; height: 100%; object-fit: cover; }

  .nav-logo-text {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: var(--grafite);
    letter-spacing: .02em;
    line-height: 1.2;
  }

  .nav-logo-text span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--verde);
    margin-top: 1px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--grafite);
    transition: color .3s;
  }

  .nav-links a:hover { color: var(--verde); }

  .nav-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--branco);
    background: var(--verde);
    padding: .65rem 1.6rem;
    border-radius: 50px;
    transition: background .3s, transform .2s;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .nav-cta:hover { background: var(--verde-dark); transform: translateY(-1px); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: .4rem;
    flex-shrink: 0;
  }

  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--grafite); border-radius: 2px; transition: .3s;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 72px;
  }

  .hero-left {
    background: var(--verde);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 8% 6% 8% 8%;
    position: relative;
    overflow: hidden;
  }

  /* Decorative circles */
  .hero-left::before {
    content: '';
    position: absolute;
    bottom: -120px; right: -120px;
    width: 400px; height: 400px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-left::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 280px; height: 280px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
    pointer-events: none;
  }

  /* Branch SVG decorators */
  .branch-deco {
    position: absolute;
    pointer-events: none;
    opacity: .22;
  }

  .branch-deco-tl { top: 2rem; left: 1.5rem; }
  .branch-deco-br { bottom: 3rem; right: 2rem; transform: rotate(180deg); }
  .branch-deco-photo { bottom: 2rem; left: 1rem; opacity: .18; }

  .hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: 1.5rem;
    position: relative;
  }

  .hero-title {
    font-family: 'Lora', serif;
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--branco);
    margin-bottom: 1rem;
    position: relative;
  }

  .hero-title em { font-style: italic; color: var(--nude); }

  .hero-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 380px;
    position: relative;
  }

  .hero-divider {
    width: 48px; height: 1px;
    background: var(--nude);
    margin-bottom: 2.5rem;
    position: relative;
  }

  .hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: .82rem;
    font-weight: 400;
    letter-spacing: .06em;
    color: rgba(255,255,255,.6);
    line-height: 1.9;
    margin-bottom: 3rem;
    position: relative;
  }

  .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--verde);
    background: var(--branco);
    padding: 1rem 2.2rem;
    border-radius: 50px;
    transition: background .3s, transform .2s, box-shadow .3s;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
  }

  .hero-btn:hover {
    background: var(--nude);
    color: var(--grafite);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,.16);
  }

  .hero-right {
    background: var(--creme);
    position: relative;
    overflow: hidden;
  }

  .hero-photo-wrap {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
  }

  .hero-photo-wrap > img {
    width: 80%;
    max-width: 440px;
    height: calc(100vh - 72px);
    object-fit: cover;
    object-position: top center;
  }

  .hero-badge {
    position: absolute;
    bottom: 10%; right: 8%;
    background: var(--verde);
    color: var(--branco);
    padding: 1.5rem;
    max-width: 180px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(70,147,142,.3);
  }

  .hero-badge-num {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    display: block;
  }

  .hero-badge-txt {
    font-family: 'Montserrat', sans-serif;
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .85;
    display: block;
    margin-top: .4rem;
  }

  /* ─── TICKER ─── */
  .ticker {
    background: var(--grafite);
    overflow: hidden;
    padding: 1rem 0;
    white-space: nowrap;
  }

  .ticker-inner {
    display: inline-flex;
    animation: ticker 32s linear infinite;
  }

  .ticker-item {
    font-family: 'Montserrat', sans-serif;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    padding: 0 3rem;
  }

  .ticker-item.accent { color: var(--nude); }

  @keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ─── SOBRE ─── */
  .sobre {
    padding: 8rem 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
    background: var(--branco);
  }

  .sobre-left .section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--verde);
    margin-bottom: 1.5rem;
    display: block;
  }

  .sobre-left h2 {
    font-family: 'Lora', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--grafite);
    margin-bottom: 1.5rem;
  }

  .sobre-left h2 em { font-style: italic; color: var(--verde); }

  .sobre-left p {
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    line-height: 1.9;
    color: #6a6869;
    margin-bottom: 1.2rem;
  }

  .sobre-valores {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 2rem;
  }

  .sobre-valores .tag {
    font-family: 'Montserrat', sans-serif;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--verde);
    border: 1px solid var(--verde);
    padding: .4rem 1rem;
    border-radius: 20px; /* pill */
    transition: background .2s, color .2s;
  }

  .sobre-valores .tag:hover {
    background: var(--verde);
    color: #fff;
  }

  /* Photo side */
  .sobre-right {
    position: relative;
  }

  .sobre-blob {
    position: absolute;
    width: 75%;
    aspect-ratio: 1;
    background: var(--verde-light);
    border-radius: 60% 40% 55% 45% / 50% 55% 45% 55%;
    top: -5%;
    left: -8%;
    z-index: 0;
  }

  .sobre-img-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 52% 48% 46% 54% / 48% 52% 48% 52%;
    box-shadow: 0 16px 60px rgba(70,147,142,.18);
  }

  .sobre-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  .sobre-quote {
    position: absolute;
    bottom: -18px; right: -18px;
    background: var(--verde);
    padding: 1.4rem 1.6rem;
    max-width: 210px;
    border-radius: 16px 4px 16px 16px;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(70,147,142,.3);
  }

  .sobre-quote p {
    font-family: 'Lora', serif;
    font-size: .83rem;
    font-style: italic;
    color: var(--branco);
    line-height: 1.65;
    margin: 0;
  }

  .sobre-branch {
    position: absolute;
    top: -24px; right: -10px;
    z-index: 3;
    opacity: .5;
    pointer-events: none;
  }

  /* ─── WAVE DIVIDER ─── */
  .wave-divider {
    display: block;
    line-height: 0;
    overflow: hidden;
  }

  .wave-divider svg { display: block; width: 100%; }

  /* ─── SERVIÇOS ─── */
  .servicos {
    padding: 7rem 8% 8rem;
    background: var(--creme);
  }

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

  .section-header .section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--verde);
    margin-bottom: 1rem;
    display: block;
  }

  .section-header h2 {
    font-family: 'Lora', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--grafite);
  }

  .section-header h2 em { font-style: italic; color: var(--verde); }

  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--offwhite);
    border-radius: 12px;
    overflow: hidden;
  }

  .servico-card {
    background: var(--branco);
    padding: 2.8rem 2.2rem;
    transition: background .4s;
    position: relative;
    overflow: hidden;
  }

  .servico-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--verde);
    border-radius: 3px;
    transition: width .4s;
  }

  .servico-card:hover::after { width: 100%; }
  .servico-card:hover { background: var(--verde-light); }

  /* Icon circle */
  .servico-icon {
    width: 52px; height: 52px;
    background: var(--verde);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    flex-shrink: 0;
  }

  .servico-num {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--offwhite);
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
    letter-spacing: -.01em;
  }

  .servico-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--grafite);
    margin-bottom: .9rem;
    line-height: 1.3;
  }

  .servico-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: .82rem;
    line-height: 1.85;
    color: #7a7878;
  }

  /* ─── MÉTODO ─── */
  .metodo {
    padding: 8rem 8%;
    background: var(--grafite);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .metodo::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 360px; height: 360px;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 50%;
    pointer-events: none;
  }

  .metodo-left .section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--nude);
    margin-bottom: 1.5rem;
    display: block;
  }

  .metodo-left h2 {
    font-family: 'Lora', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--branco);
    margin-bottom: 1.5rem;
  }

  .metodo-left h2 em { font-style: italic; color: var(--nude); }

  .metodo-left p {
    font-family: 'Montserrat', sans-serif;
    font-size: .88rem;
    line-height: 1.9;
    color: rgba(255,255,255,.55);
  }

  .metodo-steps { display: flex; flex-direction: column; gap: 0; }

  .step {
    display: flex;
    gap: 1.8rem;
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    align-items: flex-start;
  }

  .step:last-child { border-bottom: none; }

  .step-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    min-width: 28px;
    padding-top: .15rem;
  }

  .step-dot {
    width: 6px; height: 6px;
    background: var(--nude);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .step-num {
    font-family: 'Lora', serif;
    font-size: .75rem;
    font-style: italic;
    color: var(--nude);
  }

  .step-content h4 {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--branco);
    margin-bottom: .5rem;
  }

  .step-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    line-height: 1.8;
    color: rgba(255,255,255,.5);
  }

  /* ─── DEPOIMENTOS ─── */
  .depoimentos {
    padding: 8rem 8%;
    background: var(--branco);
  }

  .depo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 5rem;
  }

  .depo-card {
    padding: 2.8rem;
    border: 1px solid var(--offwhite);
    border-radius: 20px;
    position: relative;
    background: var(--creme);
    transition: box-shadow .3s;
  }

  .depo-card:hover {
    box-shadow: 0 12px 40px rgba(70,147,142,.12);
    border-color: rgba(70,147,142,.3);
  }

  .depo-card::before {
    content: '"';
    font-family: 'Lora', serif;
    font-size: 5rem;
    color: var(--verde-light);
    position: absolute;
    top: 1rem; left: 2rem;
    line-height: 1;
  }

  .depo-text {
    font-family: 'Lora', serif;
    font-size: .95rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--grafite);
    padding-top: 2rem;
    margin-bottom: 1.8rem;
  }

  .depo-divider {
    width: 32px; height: 1px;
    background: var(--nude);
    margin-bottom: 1.2rem;
    border-radius: 1px;
  }

  .depo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--grafite);
    text-transform: uppercase;
    display: block;
  }

  .depo-role {
    font-family: 'Montserrat', sans-serif;
    font-size: .72rem;
    color: var(--verde);
    display: block;
    margin-top: .25rem;
    letter-spacing: .04em;
  }

  /* ─── CONTEÚDO / INSTAGRAM ─── */
  .conteudo {
    padding: 8rem 8%;
    background: linear-gradient(160deg, var(--creme) 0%, var(--verde-light) 100%);
  }

  .conteudo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    background: rgba(217,213,204,.5);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 4rem;
  }

  .conteudo-item {
    aspect-ratio: 1;
    background: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .conteudo-item:hover .conteudo-overlay { opacity: 1; }

  .conteudo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(70,147,142,.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
  }

  .conteudo-overlay-text {
    font-family: 'Lora', serif;
    font-size: .85rem;
    font-style: italic;
    color: var(--branco);
    text-align: center;
    padding: 1.5rem;
    line-height: 1.6;
  }

  .conteudo-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    font-size: .8rem;
    color: var(--verde);
    font-style: italic;
    text-align: center;
    padding: 1.5rem;
  }

  .post-1 { background: var(--verde-light); }
  .post-2 { background: var(--nude-light); }
  .post-3 { background: var(--offwhite); }
  .post-4 { background: var(--verde); }
  .post-4 .conteudo-bg { color: var(--branco); }
  .post-5 { background: var(--creme); }
  .post-6 { background: var(--nude-light); }
  .post-7 { background: var(--verde-light); }
  .post-8 { background: var(--grafite); }
  .post-8 .conteudo-bg { color: var(--offwhite); }

  .insta-cta { text-align: center; margin-top: 2.5rem; }

  .insta-cta a {
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--verde);
    border-bottom: 1px solid var(--verde);
    padding-bottom: .25rem;
    transition: color .3s, border-color .3s;
  }

  .insta-cta a:hover { color: var(--verde-dark); border-color: var(--verde-dark); }

  /* ─── CTA SECTION ─── */
  .cta-section {
    padding: 8rem 8%;
    background: var(--verde);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
    pointer-events: none;
  }

  .cta-section::after {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 380px; height: 380px;
    border: 1px solid rgba(255,255,255,.04);
    border-radius: 50%;
    pointer-events: none;
  }

  .cta-section .section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    display: block;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .cta-section h2 {
    font-family: 'Lora', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--branco);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .cta-section h2 em { font-style: italic; color: var(--nude); }

  .cta-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    line-height: 1.8;
    color: rgba(255,255,255,.7);
    max-width: 520px;
    margin: 0 auto 3rem;
    position: relative;
  }

  .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--verde);
    background: var(--branco);
    padding: 1rem 2.4rem;
    border-radius: 50px;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
  }

  .cta-btn:hover { background: var(--nude); color: var(--grafite); transform: translateY(-2px); }

  .cta-btn.outline {
    background: transparent;
    color: var(--branco);
    border: 1.5px solid rgba(255,255,255,.5);
    box-shadow: none;
  }

  .cta-btn.outline:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--branco);
    transform: translateY(-2px);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--grafite);
    padding: 4rem 8% 2rem;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .footer-logo-wrap {
    width: 80px; height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border: 2px solid rgba(255,255,255,.1);
  }

  .footer-logo-wrap img { width: 100%; height: 100%; object-fit: cover; }

  .footer-brand-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .12em;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: block;
  }

  .footer-brand p {
    font-family: 'Montserrat', sans-serif;
    font-size: .82rem;
    line-height: 1.85;
    color: rgba(255,255,255,.4);
    max-width: 320px;
  }

  .footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 1.5rem;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .8rem; }

  .footer-col a {
    font-family: 'Montserrat', sans-serif;
    font-size: .82rem;
    color: rgba(255,255,255,.38);
    transition: color .3s;
  }

  .footer-col a:hover { color: var(--nude); }

  .footer-bottom {
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
  }

  .footer-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: .72rem;
    color: rgba(255,255,255,.22);
  }

  .footer-essencia {
    font-family: 'Lora', serif;
    font-size: .8rem;
    font-style: italic;
    color: rgba(255,255,255,.28);
  }

  /* ─── FLOAT WHATSAPP ─── */
  .float-whatsapp {
    position: fixed;
    bottom: 1.8rem; right: 1.8rem;
    z-index: 999;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    transition: transform .2s, box-shadow .2s;
  }

  .float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37,211,102,.55);
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav .nav-links { display: none; }
    nav .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%; left: 0; right: 0;
      background: rgba(250,248,245,.98);
      padding: 1.5rem 5%;
      gap: 1.2rem;
      border-bottom: 1px solid var(--offwhite);
      box-shadow: 0 8px 24px rgba(0,0,0,.08);
    }
    .hamburger { display: flex; }
    nav .nav-cta { display: none; }

    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { min-height: 60vh; }
    .hero-photo-wrap { min-height: 60vh; }
    .hero-photo-wrap > img { width: 100%; height: 60vh; }

    .sobre { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 6%; }
    .sobre-blob { width: 55%; top: -3%; }
    .sobre-quote { right: 0; }

    .servicos { padding: 4rem 6%; }
    .servicos-grid { grid-template-columns: 1fr; }

    .metodo { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 6%; }
    .depoimentos { padding: 4rem 6%; }
    .depo-grid { grid-template-columns: 1fr; }

    .conteudo { padding: 4rem 6%; }
    .conteudo-grid { grid-template-columns: repeat(2, 1fr); }

    .cta-section { padding: 5rem 6%; }
    footer { padding: 3rem 6% 2rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  }

  @media (max-width: 480px) {
    .hero-left { padding: 6% 6%; }
    .hero-title { font-size: 2.4rem; }
    .sobre-quote { position: relative; right: auto; bottom: auto; margin-top: 1rem; border-radius: 12px; }
  }
