  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    /* Paleta nude / terracota — inspirada em #b16e44 */
    --terracotta: #b16e44;
    --terracotta-dark: #8f5636;
    --terracotta-light: #d3a17c;
    --nude-pale: #f7ece2;
    --nude-soft: #eddcc9;
    --nude-deep: #6b4229;
    --cream: #fbf6f1;
    --dark: #362a22;
    --mid: #6b5a4e;
    --muted: #a8917f;
    --white: #ffffff;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
    --shadow-sm: 0 4px 16px rgba(58, 42, 30, .07);
    --shadow-md: 0 14px 34px rgba(58, 42, 30, .13);
    --shadow-lg: 0 26px 60px rgba(58, 42, 30, .20);
    --ease: cubic-bezier(.16, .84, .44, 1);
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    position: relative;
  }

  /* leve textura ambiente para tirar o aspecto "todo branco" das seções claras */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
      radial-gradient(620px circle at 6% 8%, rgba(177, 110, 68, .07), transparent 60%),
      radial-gradient(520px circle at 94% 28%, rgba(177, 110, 68, .06), transparent 60%),
      radial-gradient(720px circle at 50% 92%, rgba(177, 110, 68, .06), transparent 60%);
  }

  /* ── ÍCONES (substituem os emojis) ── */
  .icon-svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
    flex-shrink: 0;
  }

  .icon-svg-solid {
    fill: currentColor;
    stroke: none;
  }

  /* ── SCROLL REVEAL (controlado via effects.js) ──
     Fica no topo do arquivo de propósito: como tem a mesma especificidade
     das regras de :hover dos cards, quem vem depois no arquivo "ganha".
     Deixando essa regra primeiro, os hovers (definidos mais abaixo) sempre
     conseguem sobrescrever o transform de entrada. */
  .fx-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
  }

  .fx-reveal.fx-in {
    opacity: 1;
    transform: none;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(251, 246, 241, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(177, 110, 68, 0.12);
    transition: background .3s var(--ease), box-shadow .3s var(--ease);
  }

  nav.scrolled {
    background: rgba(251, 246, 241, 0.97);
    box-shadow: var(--shadow-sm);
  }

  .nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .5rem;
  }

  .nav-logo-svg {
    height: 44px;
    width: auto;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    position: relative;
    font-size: .85rem;
    font-weight: 400;
    color: var(--mid);
    text-decoration: none;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: color .2s;
    padding-bottom: 4px;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width .3s var(--ease);
  }

  .nav-links a:hover {
    color: var(--terracotta);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--terracotta);
    color: #fff;
    padding: .55rem 1.4rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: .05em;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 6px 18px rgba(177, 110, 68, .28);
  }

  .nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle 120px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .35), transparent 70%);
    opacity: 0;
    transition: opacity .3s;
  }

  .nav-cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(177, 110, 68, .4);
  }

  .nav-cta:hover::before {
    opacity: 1;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }

  .hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--dark);
    transition: all .3s;
  }

  .logo {
    width: 80px;
    transition: transform .25s var(--ease);
  }

  .nav-logo:hover .logo {
    transform: scale(1.05) rotate(-2deg);
  }

  @media(max-width: 860px) {

    .nav-links,
    .nav-cta {
      display: none;
    }

    .hamburger {
      display: flex;
    }
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 96px;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8% 5% 8% 8%;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--nude-pale);
    color: var(--terracotta);
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    width: fit-content;
    box-shadow: 0 4px 14px rgba(177, 110, 68, .12);
  }

  .hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--terracotta);
    border-radius: 50%;
  }

  h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.5rem;
  }

  h1 em,
  h2 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero-sub {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 2.5rem;
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--terracotta);
    color: #fff;
    padding: .9rem 2rem;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .25s, transform .2s, box-shadow .25s;
    letter-spacing: .03em;
    box-shadow: 0 10px 26px rgba(177, 110, 68, .28);
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle 140px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .35), transparent 70%);
    opacity: 0;
    transition: opacity .3s;
  }

  .btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(177, 110, 68, .38);
  }

  .btn-primary:hover::before {
    opacity: 1;
  }

  .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
  }

  .btn-icon .icon-svg {
    width: 18px;
    height: 18px;
  }

  .btn-outline {
    border: 1.5px solid var(--terracotta);
    color: var(--terracotta);
    padding: .9rem 2rem;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .25s var(--ease);
  }

  .btn-outline:hover {
    background: var(--terracotta);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }

  .hero-right {
    position: relative;
    background: linear-gradient(150deg, #f3ddc8 0%, #dfae82 55%, #b9834f 100%);
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
  }

  .hero-right::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ccircle cx='200' cy='200' r='180' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='1'/%3E%3Ccircle cx='200' cy='200' r='130' fill='none' stroke='rgba(255,255,255,0.25)' stroke-width='1'/%3E%3Ccircle cx='200' cy='200' r='80' fill='none' stroke='rgba(255,255,255,0.18)' stroke-width='1'/%3E%3C/svg%3E") center/60% no-repeat;
    animation: float-rotate 26s linear infinite;

  }

  .hero-visual {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 2rem;

    transition: transform .4s var(--ease);
  }

  .hero-right:hover .hero-visual {
    transform: scale(1.08);
  }

  .hero-icon-big {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    color: var(--terracotta-dark);
    box-shadow: 0 12px 30px rgba(107, 66, 41, .18);
    animation: pulse-soft 4s ease-in-out infinite;
  }

  .hero-icon-big .icon-svg {
    width: 52px;
    height: 52px;
  }

  .hero-stat-cards {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    width: 100%;
    max-width: 260px;
  }

  .hero-stat {
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 1rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  }

  .hero-stat:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-md);
  }

  .hero-stat-icon {
    color: var(--terracotta);
  }

  .hero-stat-icon .icon-svg {
    width: 24px;
    height: 24px;
  }

  .hero-stat-label {
    font-size: .78rem;
    color: var(--mid);
    font-weight: 400;
  }

  .hero-stat-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
  }

  @keyframes float-rotate {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  @keyframes pulse-soft {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.05);
    }
  }

  /* ── SECTIONS ── */
  section {
    padding: 6rem 8%;
    position: relative;
  }

  .section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
  }

  h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
  }

  .section-lead {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 3.5rem;
  }

  /* ── ABOUT ── */
  #sobre {
    background: var(--white);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-image-wrap {
    position: relative;
  }

  .about-image-box {
    background: linear-gradient(150deg, var(--nude-pale) 0%, var(--nude-soft) 100%);
    border-radius: 24px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform .4s var(--ease);
  }

  .about-image-wrap:hover .about-image-box {
    transform: scale(1.015);
  }

  .about-image-box img {
    transition: transform .5s var(--ease);
  }

  .about-image-wrap:hover .about-image-box img {
    transform: scale(1.06);
  }

  .about-image-inner {
    font-family: var(--font-display);
    font-size: 7rem;
    color: rgba(177, 110, 68, 0.3);
    user-select: none;
  }

  .about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
    color: #fff;
    padding: 1.2rem 1.5rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 14px 32px rgba(107, 66, 41, .32);
    transition: transform .3s var(--ease);
  }

  .about-badge:hover {
    transform: translateY(-4px) scale(1.03);
  }

  .about-badge-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
  }

  .about-badge-label {
    font-size: .72rem;
    opacity: .85;
    letter-spacing: .06em;
  }

  .about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .about-value {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: .6rem;
    border-radius: 14px;
    transition: background .25s var(--ease), transform .25s var(--ease);
  }

  .about-value:hover {
    background: var(--nude-pale);
    transform: translateX(4px);
  }

  .about-value-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--nude-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    transition: transform .3s var(--ease), background .3s var(--ease);
  }

  .about-value-icon .icon-svg {
    width: 20px;
    height: 20px;
  }

  .about-value:hover .about-value-icon {
    transform: scale(1.1) rotate(-4deg);
    background: var(--nude-soft);
  }

  .about-value h4 {
    font-size: .92rem;
    font-weight: 500;
    margin-bottom: .2rem;
  }

  .about-value p {
    font-size: .85rem;
    color: var(--mid);
    line-height: 1.6;
  }

  /* ── ESPECIALIDADES ── */
  #especialidades {
    background: var(--cream);
  }

  .esp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .esp-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(177, 110, 68, 0.10);
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
    cursor: default;
  }

  .esp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(circle 240px at var(--mx, 50%) var(--my, 50%), rgba(177, 110, 68, .10), transparent 70%);
    opacity: 0;
    transition: opacity .35s;
  }

  .esp-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-md);
    border-color: var(--terracotta-light);
  }

  .esp-card:hover::before {
    opacity: 1;
  }

  .esp-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-dark);
    margin-bottom: 1.2rem;
    transition: transform .35s var(--ease);
  }

  .esp-icon .icon-svg {
    width: 26px;
    height: 26px;
  }

  .esp-card:hover .esp-icon {
    transform: scale(1.15) rotate(-6deg);
  }

  .esp-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: .6rem;
    color: var(--dark);
  }

  .esp-card p {
    font-size: .85rem;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }

  .esp-tag {
    display: inline-block;
    font-size: .72rem;
    padding: .3rem .8rem;
    border-radius: 50px;
    background: var(--nude-pale);
    color: var(--terracotta);
    font-weight: 500;
    letter-spacing: .04em;
  }

  .icon-bg-1 {
    background: #f3e3d6;
  }

  .icon-bg-2 {
    background: #efd9c3;
  }

  .icon-bg-3 {
    background: #e7ceb0;
  }

  .icon-bg-4 {
    background: #f1e0cd;
  }

  .icon-bg-5 {
    background: #ead6bd;
  }

  .icon-bg-6 {
    background: #e2c7a8;
  }

  /* ── PÚBLICO ── */
  #publico {
    background: linear-gradient(135deg, #8a5738 0%, #5c3822 100%);
    position: relative;
    overflow: hidden;
  }

  #publico::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
  }

  #publico::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    max-width: 420px;
    max-height: 420px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
  }

  #publico .section-tag {
    color: rgba(255, 255, 255, 0.75);
  }

  #publico h2 {
    color: #fff;
  }

  #publico h2 em {
    background: linear-gradient(120deg, #f3d9bd, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  #publico .section-lead {
    color: rgba(255, 255, 255, 0.78);
  }

  .pub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .pub-card {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  }

  .pub-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
  }

  .pub-age {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
    margin-bottom: .5rem;
    transition: transform .3s var(--ease);
  }

  .pub-card:hover .pub-age {
    transform: scale(1.08);
  }

  .pub-label {
    font-size: .88rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
  }

  .pub-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
  }

  .pub-tag-item {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
    font-size: .75rem;
    padding: .3rem .8rem;
    border-radius: 50px;
    transition: background .25s, transform .2s;
  }

  .pub-tag-item:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
  }

  /* ── EQUIPE ── */
  #equipe {
    background: var(--white);
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }

  .team-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 18px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  }

  .team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-sm);
  }

  .team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(107, 66, 41, .25);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  }

  .team-card:hover .team-avatar {
    transform: scale(1.06);
    box-shadow: 0 14px 32px rgba(107, 66, 41, .35);
  }

  .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform .5s var(--ease);
  }

  .team-card:hover .team-avatar img {
    transform: scale(1.1);
  }

  .team-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: .2rem;
  }

  .team-card span {
    font-size: .8rem;
    color: var(--muted);
  }

  /* ── DIFERENCIAIS ── */
  #diferenciais {
    background: var(--cream);
  }

  .diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .diff-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.8rem;
    border-radius: 18px;
    border: 1px solid rgba(177, 110, 68, 0.08);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
  }

  .diff-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px) scale(1.02);
    border-color: var(--terracotta-light);
  }

  .diff-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--terracotta-light);
    line-height: 1;
    min-width: 44px;
    transition: color .3s, transform .3s var(--ease);
  }

  .diff-item:hover .diff-num {
    color: var(--terracotta);
    transform: scale(1.1);
  }

  .diff-item h4 {
    font-size: .95rem;
    font-weight: 500;
    margin-bottom: .4rem;
  }

  .diff-item p {
    font-size: .84rem;
    color: var(--mid);
    line-height: 1.65;
  }

  /* ── CONTATO ── */
  #contato {
    background: linear-gradient(160deg, var(--dark) 0%, #241a14 100%);
  }

  #contato .section-tag {
    color: var(--terracotta-light);
  }

  #contato h2 {
    color: var(--white);
  }

  #contato h2 em {
    background: linear-gradient(120deg, var(--terracotta-light), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  #contato .section-lead {
    color: rgba(255, 255, 255, 0.6);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform .25s var(--ease);
  }

  .contact-item:hover {
    transform: translateX(4px);
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(177, 110, 68, 0.18);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-light);
    transition: background .25s, transform .25s var(--ease);
  }

  .contact-icon .icon-svg {
    width: 20px;
    height: 20px;
  }

  .contact-item:hover .contact-icon {
    background: rgba(177, 110, 68, 0.3);
    transform: scale(1.08);
  }

  .contact-item h5 {
    font-size: .8rem;
    color: var(--muted);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .2rem;
  }

  .contact-item p {
    font-size: .92rem;
    color: rgba(255, 255, 255, .85);
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
  }

  .form-group label {
    font-size: .78rem;
    color: var(--muted);
    letter-spacing: .05em;
    text-transform: uppercase;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: .75rem 1rem;
    color: rgba(255, 255, 255, .85);
    font-family: var(--font-body);
    font-size: .9rem;
    transition: border-color .25s, box-shadow .25s, background .25s;
    outline: none;
    resize: vertical;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--terracotta);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 4px rgba(177, 110, 68, .18);
  }

  .form-group select option {
    background: var(--dark);
  }

  .form-submit {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--terracotta);
    color: #fff;
    border: none;
    padding: .9rem 2rem;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .25s, transform .2s, box-shadow .25s;
    align-self: flex-start;
    letter-spacing: .03em;
    box-shadow: 0 10px 26px rgba(177, 110, 68, .3);
    margin-top: 6px;
  }

  .form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle 140px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .35), transparent 70%);
    opacity: 0;
    transition: opacity .3s;
  }

  .form-submit:hover {
    background: var(--terracotta-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(177, 110, 68, .42);
  }

  .form-submit:hover::before {
    opacity: 1;
  }

  .field-error {
    font-size: .75rem;
    color: #e0847f;
    margin-top: .2rem;
    display: none;
    align-items: center;
    gap: .3rem;
  }

  .field-error.visivel {
    display: flex;
  }

  .form-group input.invalido,
  .form-group textarea.invalido {
    border-color: #e0847f !important;
    background: rgba(224, 132, 127, 0.06) !important;
  }

  .form-group input.valido,
  .form-group textarea.valido {
    border-color: #8fae83 !important;
  }

  /* ── FOOTER ── */
  footer {
    background: #fff;
    padding: 2.5rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(177, 110, 68, 0.1);
  }

  .footer-logo {}

  footer p {
    font-size: .78rem;
    color: var(--muted);
  }

  .footer-links {
    display: flex;
    gap: 1.5rem;
  }

  .footer-links a {
    position: relative;
    font-size: .78rem;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
  }

  .footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width .3s var(--ease);
  }

  .footer-links a:hover {
    color: var(--terracotta);
  }

  .footer-links a:hover::after {
    width: 100%;
  }

  /* ── WHATSAPP POPUP ── */
  .wa-bubble {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .8rem;
  }

  .wa-tooltip {
    background: var(--white);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow-md);
    max-width: 240px;
    font-size: .85rem;
    line-height: 1.5;
    color: var(--dark);
    position: relative;
    animation: slideIn .4s ease;
    border: 1px solid rgba(177, 110, 68, 0.15);
  }

  .wa-tooltip::after {
    content: '';
    position: absolute;
    bottom: -7px;
    right: 24px;
    width: 14px;
    height: 14px;
    background: var(--white);
    border-right: 1px solid rgba(177, 110, 68, 0.15);
    border-bottom: 1px solid rgba(177, 110, 68, 0.15);
    transform: rotate(45deg);
  }

  .wa-tooltip strong {
    display: block;
    margin-bottom: .3rem;
    color: var(--dark);
  }

  .wa-tooltip-close {
    position: absolute;
    top: .6rem;
    right: .8rem;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: var(--muted);
    line-height: 1;
    padding: 2px;
  }

  .wa-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    transition: transform .2s, box-shadow .2s;
    animation: pulse 2.5s infinite;
  }

  .wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, .5);
    animation: none;
  }

  .wa-btn svg {
    width: 30px;
    height: 30px;
    fill: white;
  }

  @keyframes pulse {

    0%,
    100% {
      box-shadow: 0 4px 20px rgba(37, 211, 102, .4)
    }

    50% {
      box-shadow: 0 4px 28px rgba(37, 211, 102, .65)
    }
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(10px)
    }

    to {
      opacity: 1;
      transform: translateY(0)
    }
  }

  /* ── delays de entrada (scroll reveal) ── */
  .esp-grid .esp-card:nth-child(2) {
    transition-delay: .06s;
  }

  .esp-grid .esp-card:nth-child(3) {
    transition-delay: .12s;
  }

  .esp-grid .esp-card:nth-child(4) {
    transition-delay: .18s;
  }

  .esp-grid .esp-card:nth-child(5) {
    transition-delay: .24s;
  }

  .esp-grid .esp-card:nth-child(6) {
    transition-delay: .3s;
  }

  .pub-grid .pub-card:nth-child(2) {
    transition-delay: .08s;
  }

  .pub-grid .pub-card:nth-child(3) {
    transition-delay: .16s;
  }

  .team-grid .team-card:nth-child(2) {
    transition-delay: .06s;
  }

  .team-grid .team-card:nth-child(3) {
    transition-delay: .12s;
  }

  .team-grid .team-card:nth-child(4) {
    transition-delay: .18s;
  }

  .diff-grid .diff-item:nth-child(2) {
    transition-delay: .06s;
  }

  .diff-grid .diff-item:nth-child(3) {
    transition-delay: .12s;
  }

  .diff-grid .diff-item:nth-child(4) {
    transition-delay: .18s;
  }

  .diff-grid .diff-item:nth-child(5) {
    transition-delay: .24s;
  }

  .diff-grid .diff-item:nth-child(6) {
    transition-delay: .3s;
  }

  .about-values .about-value:nth-child(2) {
    transition-delay: .08s;
  }

  .about-values .about-value:nth-child(3) {
    transition-delay: .16s;
  }

  @media (prefers-reduced-motion: reduce) {
    .fx-reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }

    *,
    *::before,
    *::after {
      animation-duration: .001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .001ms !important;
    }
  }

  /* ── RESPONSIVE ── */
  @media(max-width: 900px) {
    #hero {
      grid-template-columns: 1fr;
    }

    .hero-right {
      min-height: 400px;
    }

    .about-grid,
    .contact-grid {
      grid-template-columns: 1fr;
    }

    .pub-grid {
      grid-template-columns: 1fr;
    }

    .diff-grid {
      grid-template-columns: 1fr;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .about-badge {
      right: 1rem;
      bottom: 1rem;
    }

    section {
      padding: 4rem 6%;
    }

    #btn-whatsapp {
      display: none;
    }
  }

  @media(max-width: 560px) {
    .hero-left {
      padding: 7% 6% 6%;
    }

    .hero-tag {
      font-size: .7rem;
      white-space: normal;
      line-height: 1.4;
    }

    .hero-btns {
      flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
      text-align: center;
    }

    footer {
      flex-direction: column;
      text-align: center;
    }

    .footer-links {
      justify-content: center;
    }
  }

  #btn-wt-final {
    margin-top: 10px;
  }