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

    :root {
      --blush: #EDD5C8;
      --blush-light: #F7EDE7;
      --blush-mid: #E0B9A8;
      --sage: #9EAD97;
      --sage-light: #C8D4C4;
      --gold: #C4975A;
      --gold-light: #DEB98A;
      --cream: #FAF7F2;
      --warm-dark: #2C2420;
      --warm-mid: #5C4A42;
      --warm-soft: #8C7068;
      --white: #FFFFFF;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Jost', sans-serif;
      --space-xs: 8px;
      --space-sm: 16px;
      --space-md: 24px;
      --space-lg: 48px;
      --space-xl: 80px;
      --space-2xl: 128px;
      --radius: 4px;
      --radius-lg: 12px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background-color: var(--cream);
      color: var(--warm-dark);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* noise: aplicado direto no body sem pseudo-elemento fixed */

    .skip-link {
      position: absolute;
      top: -60px;
      left: 0;
      background-color: var(--warm-dark);
      color: var(--cream);
      padding: 12px 24px;
      z-index: 1000;
      transition: top 0.3s;
      text-decoration: none;
      font-weight: 500;
      border-radius: 0 0 var(--radius) 0;
    }

    .skip-link:focus {
      top: 0;
    }

    /* ── NAV ── */
    .site-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      height: 64px;
      background-color: #FAF7F2;
      border-bottom: 1px solid #E2C9B4;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 32px;
      box-sizing: border-box;
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: #2C2420;
      text-decoration: none;
      letter-spacing: 0.04em;
      flex-shrink: 0;
    }

    .nav-logo em {
      color: #C4975A;
      font-style: italic;
    }

    /* desktop links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-links a {
      font-family: 'Jost', sans-serif;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: #2C2420;
      text-decoration: none;
    }

    .nav-links a:hover {
      color: #C4975A;
    }

    .nav-cta-btn {
      background: var(--blush-mid);
      color: var(--warm-dark) !important;
      padding: 9px 18px;
      border-radius: 2px;
    }

    .nav-cta-btn:hover {
      background: var(--blush);
      color: var(--warm-dark) !important;
    }

    /* hamburger button */
    .hamburger-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      flex-shrink: 0;
    }

    .hamburger-btn span {
      display: block;
      width: 22px;
      height: 2px;
      background: #2C2420;
      border-radius: 2px;
    }

    /* mobile drawer */
    .mobile-drawer {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 300;
      background: #FAF7F2;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }

    .mobile-drawer.is-open {
      display: flex;
    }

    .mobile-drawer a {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 2.2rem;
      font-weight: 300;
      color: #2C2420;
      text-decoration: none;
      letter-spacing: 0.04em;
    }

    .mobile-drawer a:hover {
      color: #C4975A;
    }

    .drawer-close {
      position: absolute;
      top: 18px;
      right: 24px;
      background: none;
      border: none;
      font-size: 2rem;
      line-height: 1;
      cursor: pointer;
      color: #5C4A42;
      padding: 4px 8px;
    }

    /* show/hide nav vs hamburger */
    @media (max-width: 860px) {
      .nav-links {
        display: none !important;
      }

      .hamburger-btn {
        display: flex !important;
      }

      .site-nav {
        padding: 0 20px;
      }
    }

    @media (min-width: 861px) {
      .nav-links {
        display: flex !important;
      }

      .hamburger-btn {
        display: none !important;
      }
    }

    /* ── HERO ── */
    #hero {
      min-height: 100svh;
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
      padding: var(--space-xl) var(--space-sm);
      padding-top: calc(var(--space-xl) + 60px);
    }

    /* fade inferior do hero para a seção seguinte (branco) */
    #hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 160px;
      background: linear-gradient(to bottom, transparent, #ffffff);
      z-index: 2;
      pointer-events: none;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: blur(3px) saturate(0.7) brightness(1.08);
      transform: scale(1.05);
      /* evita borda branca do blur */
      opacity: 0.45;
    }

    /* overlay cream suave para garantir legibilidade do texto */
    .hero-bg-overlay {
      position: absolute;
      inset: 0;
      background: rgba(250, 247, 242, 0.6);
    }

    /* SVG botanical decorations — removidos com foto real */
    .hero-floral-left,
    .hero-floral-right {
      display: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 760px;
      animation: fadeUp 1s ease both;
    }

    .hero-eyebrow {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: var(--space-sm);
      animation: fadeUp 1s 0.1s ease both;
    }

    h1 {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 7vw, 5.5rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--warm-dark);
      letter-spacing: -0.01em;
      margin-bottom: var(--space-md);
      animation: fadeUp 1s 0.2s ease both;
    }

    h1 em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-sub {
      font-size: clamp(1rem, 2.5vw, 1.15rem);
      color: var(--warm-mid);
      max-width: 500px;
      margin: 0 auto var(--space-lg);
      font-weight: 300;
      animation: fadeUp 1s 0.35s ease both;
    }

    .hero-ctas {
      display: flex;
      gap: var(--space-sm);
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp 1s 0.5s ease both;
    }

    .btn-primary {
      background: var(--blush-mid);
      color: var(--warm-dark);
      padding: 15px 36px;
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      border: 1.5px solid var(--blush-mid);
      transition: all 0.3s ease;
      display: inline-block;
      min-height: 48px;
    }

    .btn-primary:hover {
      background: var(--blush);
      border-color: var(--blush);
      color: var(--warm-dark);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--warm-dark);
      padding: 15px 36px;
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      border: 1.5px solid var(--warm-dark);
      transition: all 0.3s ease;
      display: inline-block;
      min-height: 48px;
    }

    .btn-outline:hover {
      background: var(--blush-light);
      border-color: var(--blush-mid);
      color: var(--warm-dark);
      transform: translateY(-2px);
    }

    /* ── DIVIDER ── */
    .divider {
      width: 100%;
      overflow: hidden;
      line-height: 0;
      opacity: 0.5;
    }

    /* ── SECTION BASE ── */
    section {
      padding: var(--space-xl) var(--space-sm);
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
    }

    .section-label {
      display: block;
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: var(--space-xs);
    }

    h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 300;
      line-height: 1.15;
      color: var(--warm-dark);
      margin-bottom: var(--space-md);
    }

    h2 em {
      font-style: italic;
      color: var(--gold);
    }

    h3 {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 3vw, 1.9rem);
      font-weight: 400;
      color: var(--warm-dark);
      margin-bottom: var(--space-xs);
    }

    /* ── SOBRE ── */
    #sobre {
      background: var(--white);
    }

    .sobre-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-xl);
      align-items: center;
    }

    .sobre-img-wrap {
      position: relative;
      max-width: 420px;
      margin: 0 auto;
    }

    .sobre-img-wrap::before {
      content: '';
      position: absolute;
      inset: -16px -16px 16px 16px;
      border: 1.5px solid rgba(196, 151, 90, 0.3);
      border-radius: var(--radius);
      z-index: 0;
    }

    .sobre-img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: var(--radius);
      position: relative;
      z-index: 1;
      background: linear-gradient(135deg, var(--blush) 0%, var(--blush-mid) 50%, var(--sage-light) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .video-container {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: var(--radius);
      position: relative;
      z-index: 1;
      overflow: hidden;
      background: var(--blush-light);
    }

    .sobre-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .sobre-text p {
      color: var(--warm-mid);
      font-weight: 300;
      margin-bottom: var(--space-sm);
      font-size: 1.05rem;
    }

    .sobre-stats {
      display: flex;
      gap: var(--space-lg);
      margin-top: var(--space-md);
      flex-wrap: wrap;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
    }

    .stat-num {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--warm-soft);
    }

    /* ── SERVIÇOS ── */
    #servicos {
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

    #servicos::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(158, 173, 151, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .servicos-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto var(--space-xl);
    }

    .servicos-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-md);
    }

    .servico-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(196, 151, 90, 0.14);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .servico-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 48px rgba(44, 36, 32, 0.1);
    }

    /* foto no topo do card */
    .card-photo {
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
    }

    .card-photo-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

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

    /* placeholder colorido para quando não há foto real */
    .card-photo-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card-photo-placeholder svg {
      width: 64px;
      height: 64px;
      opacity: 0.5;
    }

    .ph-pink {
      background: linear-gradient(135deg, #EDD5C8 0%, #E0B9A8 100%);
    }

    .ph-sage {
      background: linear-gradient(135deg, #C8D4C4 0%, #9EAD97 100%);
    }

    .ph-gold {
      background: linear-gradient(135deg, #DEB98A 0%, #C4975A 100%);
    }

    /* corpo do card */
    .card-body {
      padding: 24px 24px 28px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .card-tag {
      display: inline-block;
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .card-body h3 {
      margin-bottom: 10px;
      font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    }

    .card-body p {
      color: var(--warm-mid);
      font-weight: 300;
      font-size: 0.9rem;
      line-height: 1.75;
      margin-bottom: 16px;
      text-align: justify;
    }

    .card-features {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 20px;
    }

    .card-features li {
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.05em;
      color: var(--warm-mid);
      background: var(--blush-light);
      padding: 4px 11px;
      border-radius: 20px;
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--warm-dark);
      text-decoration: none;
      border: 1.5px solid rgba(44, 36, 32, 0.25);
      padding: 10px 20px;
      border-radius: 2px;
      align-self: flex-start;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
      min-height: 44px;
    }

    .card-link:hover {
      background: var(--blush-light);
      color: var(--warm-dark);
      border-color: var(--blush-mid);
    }

    .card-link::after {
      content: '→';
      transition: transform 0.2s;
    }

    .card-link:hover::after {
      transform: translateX(4px);
    }

    /* ── PORTFOLIO ── */
    #portfolio {
      background: var(--white);
    }

    #portfolio .section-label {
      color: var(--gold);
    }

    #portfolio h2 {
      color: var(--warm-dark);
    }

    #portfolio h2 em {
      color: var(--gold);
    }

    .portfolio-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: var(--space-sm);
      margin-bottom: var(--space-lg);
    }

    .filter-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .filter-tab {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--warm-soft);
      background: none;
      border: 1px solid rgba(44, 36, 32, 0.18);
      padding: 8px 16px;
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.2s;
      min-height: 44px;
    }

    .filter-tab:hover,
    .filter-tab.active {
      color: var(--warm-dark);
      border-color: var(--gold);
      background: rgba(196, 151, 90, 0.08);
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .portfolio-item {
      aspect-ratio: 3/4;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }

    .portfolio-item-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .portfolio-item:hover .portfolio-item-img {
      transform: scale(1.05);
    }

    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(44, 36, 32, 0.8) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      align-items: flex-end;
      padding: var(--space-sm);
    }

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

    .portfolio-overlay span {
      font-family: var(--font-display);
      font-size: 1rem;
      font-style: italic;
      color: var(--cream);
    }

    .portfolio-item.hidden {
      display: none;
    }

    /* Portfolio placeholder visuals */
    .p-placeholder {
      width: 100%;
      height: 100%;
    }

    .p1 {
      background: linear-gradient(135deg, #e8c4b8 0%, #c4975a 100%);
    }

    .p2 {
      background: linear-gradient(135deg, #9ead97 0%, #c8d4c4 100%);
    }

    .p3 {
      background: linear-gradient(135deg, #deb98a 0%, #edd5c8 100%);
    }

    .p4 {
      background: linear-gradient(135deg, #c4975a 0%, #9ead97 100%);
    }

    .p5 {
      background: linear-gradient(135deg, #edd5c8 0%, #9ead97 100%);
    }

    .p6 {
      background: linear-gradient(135deg, #c8d4c4 0%, #e0b9a8 100%);
    }

    /* ── DEPOIMENTOS CARROSSEL ── */
    #depoimentos {
      background: var(--cream);
      padding-top: var(--space-xl);
      padding-bottom: var(--space-xl);
    }

    .carousel-wrap {
      max-width: 560px;
      margin: 0 auto;
      position: relative;
    }

    /* aspas SVG no topo */
    .carousel-icon {
      display: flex;
      justify-content: center;
      margin-bottom: 32px;
      color: var(--blush-mid);
    }

    /* trilho deslizante */
    .carousel-track-outer {
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* cada slide */
    .carousel-slide {
      min-width: 100%;
      text-align: center;
      padding: 0 8px;
    }

    .carousel-quote {
      font-family: var(--font-display);
      font-size: clamp(1.1rem, 3vw, 1.35rem);
      font-style: italic;
      font-weight: 300;
      color: var(--warm-dark);
      line-height: 1.75;
      margin-bottom: 36px;
    }

    .carousel-author-name {
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--warm-dark);
      letter-spacing: 0.04em;
      margin-bottom: 4px;
    }

    .carousel-author-meta {
      font-family: var(--font-body);
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--warm-soft);
    }

    /* dots de navegação */
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 40px;
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--blush-mid);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.25s, transform 0.25s;
      opacity: 0.4;
    }

    .carousel-dot.active {
      background: var(--gold);
      opacity: 1;
      transform: scale(1.25);
    }

    /* ── PROCESSO ── */
    #processo {
      background: var(--white);
    }

    .processo-header {
      text-align: center;
      margin-bottom: var(--space-xl);
    }

    /* layout desktop: 4 colunas com conector horizontal */
    .processo-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      align-items: start;
    }

    /* linha conectora horizontal entre os círculos (desktop) */
    .step-connector {
      display: none;
      /* escondido no mobile */
    }

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      padding: 0 12px;
    }

    /* área do círculo + linha */
    .step-icon-row {
      display: flex;
      align-items: center;
      width: 100%;
      justify-content: center;
      position: relative;
      margin-bottom: 16px;
    }

    /* linha que conecta ao próximo passo — removida */
    .step:not(:last-child) .step-icon-row::after {
      display: none;
    }

    /* número dentro do círculo */
    .step-circle {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: var(--blush-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
      transition: background 0.25s, transform 0.25s;
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--warm-mid);
    }

    .step:hover .step-circle {
      background: var(--blush-mid);
      transform: scale(1.06);
    }

    .step-label {
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .step-content h3 {
      font-family: var(--font-display);
      font-size: clamp(1.3rem, 2.5vw, 1.7rem);
      font-weight: 400;
      color: var(--warm-dark);
      margin-bottom: 8px;
    }

    .step-content p {
      color: var(--warm-soft);
      font-size: 0.85rem;
      font-weight: 300;
      line-height: 1.7;
      max-width: 180px;
      margin: 0 auto;
    }

    /* ── MOBILE: layout vertical com conector */
    @media (max-width: 767px) {
      .processo-steps {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 0 0 0 0;
        gap: 20px;
      }

      .step-icon-row {
        flex-direction: column;
        align-items: center;
        width: auto;
        flex-shrink: 0;
        margin-bottom: 0;
      }

      /* linha vertical entre passos no mobile */
      .step:not(:last-child) .step-icon-row::after {
        left: 50%;
        right: auto;
        top: 72px;
        bottom: -32px;
        width: 1.5px;
        height: auto;
        transform: translateX(-50%);
      }

      .step-text {
        padding-top: 12px;
        padding-bottom: 40px;
      }

      .step-content p {
        max-width: 100%;
        margin: 0;
      }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .processo-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg) 0;
      }

      .step:nth-child(2) .step-icon-row::after {
        display: none;
      }
    }

    /* ── FAQ ── */
    #faq {
      background: var(--cream);
    }

    .faq-header {
      text-align: center;
      margin-bottom: var(--space-xl);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .faq-list {
      max-width: 720px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid rgba(196, 151, 90, 0.2);
    }

    .faq-question {
      width: 100%;
      text-align: left;
      padding: var(--space-md) 0;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: var(--space-sm);
      min-height: 48px;
    }

    .faq-question span {
      font-family: var(--font-display);
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      font-weight: 400;
      color: var(--warm-dark);
      text-align: left;
    }

    .faq-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold);
      transition: transform 0.35s ease;
    }

    .faq-icon svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .faq-item.open .faq-icon {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
      padding-bottom: var(--space-md);
    }

    .faq-answer p {
      color: var(--warm-mid);
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.8;
    }

    /* ── CTA FINAL ── */
    #contato {
      background: var(--white);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #contato::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 30% 50%, rgba(196, 151, 90, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 75% 30%, rgba(158, 173, 151, 0.07) 0%, transparent 50%);
      pointer-events: none;
    }

    #contato .section-label {
      color: var(--gold);
    }

    #contato h2 {
      color: var(--warm-dark);
      max-width: 680px;
      margin: 0 auto var(--space-sm);
    }

    #contato h2 em {
      color: var(--gold);
    }

    .contato-sub {
      color: var(--warm-mid);
      font-weight: 300;
      margin-bottom: var(--space-md);
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .contato-ctas {
      display: flex;
      gap: var(--space-sm);
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: var(--space-md);
      position: relative;
    }

    .btn-whatsapp {
      background: #25D366;
      color: var(--warm-dark);
      padding: 16px 36px;
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 52px;
    }

    .btn-whatsapp:hover {
      background: #1db954;
      transform: translateY(-2px);
    }

    .btn-insta {
      background: transparent;
      color: var(--warm-dark);
      padding: 16px 36px;
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      border: 1.5px solid rgba(44, 36, 32, 0.3);
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 52px;
    }

    .btn-insta:hover {
      background: var(--blush-light);
      border-color: var(--blush-mid);
      transform: translateY(-2px);
    }

    .contato-separator {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: var(--space-md) auto;
      max-width: 360px;
    }

    .contato-separator::before,
    .contato-separator::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(196, 151, 90, 0.3);
    }

    .contato-separator span {
      font-family: var(--font-body);
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--warm-soft);
      white-space: nowrap;
    }

    .contato-lojas {
      display: flex;
      gap: var(--space-sm);
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-loja {
      background: transparent;
      color: var(--warm-dark);
      padding: 12px 28px;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      border: 1.5px solid rgba(44, 36, 32, 0.25);
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 44px;
    }

    .btn-loja:hover {
      background: var(--blush-light);
      border-color: var(--blush-mid);
      transform: translateY(-2px);
    }

    /* ── FOOTER ── */
    footer {
      background: #1e1713;
      padding: var(--space-md) var(--space-sm);
      text-align: center;
    }

    .footer-logo {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--cream);
      letter-spacing: 0.08em;
      margin-bottom: var(--space-sm);
      display: block;
    }

    .footer-logo em {
      font-style: italic;
      color: var(--gold);
    }

    .footer-nav {
      list-style: none;
      display: flex;
      gap: var(--space-md);
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: var(--space-sm);
    }

    .footer-nav a {
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(250, 247, 242, 0.4);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-nav a:hover {
      color: var(--gold-light);
    }

    .footer-copy {
      font-size: 0.72rem;
      color: rgba(250, 247, 242, 0.25);
      letter-spacing: 0.08em;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

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

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    /* ── RESPONSIVE: TABLET ── */
    @media (min-width: 768px) {
      .sobre-grid {
        grid-template-columns: 1fr 1fr;
      }

      .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
      }

    }

    /* Desktop: nav já visível por padrão acima */
    @media (min-width: 1024px) {
      nav {
        padding: var(--space-sm) var(--space-xl);
      }

      section {
        padding: var(--space-2xl) var(--space-xl);
      }

      .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
      }

    }

    /* Mobile: nav já controlado pelas classes .site-nav acima */
    @media (max-width: 767px) {
      .hero-ctas {
        flex-direction: column;
        align-items: center;
      }

      .btn-primary,
      .btn-outline {
        width: 100%;
        text-align: center;
        max-width: 320px;
      }

      .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .contato-ctas,
      .contato-lojas {
        flex-direction: column;
        align-items: center;
      }

      .btn-whatsapp,
      .btn-insta,
      .btn-loja {
        width: 100%;
        max-width: 320px;
        justify-content: center;
      }
    }

    /* Desktop: mostra links, esconde hamburger */
    @media (min-width: 768px) {
      .nav-links {
        display: flex !important;
      }

      .hamburger-btn {
        display: none !important;
      }
    }

    /* ── FOCUS STATES (A11y) ── */
    :focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
      border-radius: 2px;
    }