    /* ══════════════════════════════════════
       TOKENS
    ══════════════════════════════════════ */
    :root {
      --navy:        #1C2A3A;
      --navy-deep:   #111E2B;
      --navy-mid:    #243347;
      --beige:       #F3EBE0;
      --beige-light: #FAF6F1;
      --beige-mid:   #EDE3D6;
      --brown:       #8A6040;
      --brown-dark:  #5E3F22;
      --gold:        #C9A86C;
      --gold-light:  #E8D5A8;
      --gold-pale:   #F5EDD8;
      --cream:       #FDF9F4;
      --text-dark:   #1C2A3A;
      --text-body:   #3A3028;
      --text-muted:  #7A6E65;
      --white:       #ffffff;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text-body);
      overflow-x: hidden;
    }

    /* ══════════════════════════════════════
       TOPBAR
    ══════════════════════════════════════ */
    .topbar {
      background: var(--navy-deep);
      color: var(--gold-light);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-align: center;
      padding: 9px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0;
      flex-wrap: wrap;
    }
    .topbar a {
      color: var(--gold-light);
      text-decoration: none;
      opacity: 0.85;
      transition: opacity 0.2s;
    }
    .topbar a:hover { opacity: 1; }
    .topbar .sep { margin: 0 16px; opacity: 0.35; }

    /* ══════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════ */
    nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 100px;
      box-shadow: 0 2px 24px rgba(0,0,0,0.28);
    }

    .nav-logo img {
      height: 200px;
      width: auto;
      display: block;
      filter: brightness(0) invert(1);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.25s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: var(--gold);
      color: var(--navy-deep) !important;
      font-weight: 600 !important;
      padding: 10px 22px;
      border-radius: 2px;
      letter-spacing: 0.06em !important;
      transition: background 0.2s, transform 0.15s !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--gold-light);
      border-radius: 2px;
      transition: all 0.25s;
    }

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .hero {
      background: var(--navy);
      position: relative;
      overflow: hidden;
      min-height: 92vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
    }

    /* diagonal pattern overlay */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(
          -55deg,
          transparent, transparent 50px,
          rgba(201,168,108,0.022) 50px, rgba(201,168,108,0.022) 51px
        );
      pointer-events: none;
      z-index: 1;
    }

    /* decorative § */
    .hero-deco {
      position: absolute;
      left: -2%;
      top: 50%;
      transform: translateY(-50%);
      font-family: 'Cinzel', serif;
      font-size: 32rem;
      color: rgba(201,168,108,0.035);
      pointer-events: none;
      line-height: 1;
      z-index: 1;
      user-select: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 100px 6% 80px 7%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(201,168,108,0.1);
      border: 1px solid rgba(201,168,108,0.28);
      border-radius: 2px;
      padding: 6px 14px;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      color: var(--gold);
      text-transform: uppercase;
      width: fit-content;
      margin-bottom: 30px;
    }
    .hero-tag-dot {
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      animation: blink 2.2s ease-in-out infinite;
    }
    @keyframes blink {
      0%,100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    .hero h1 {
      font-family: 'Cinzel', serif;
      font-size: clamp(2rem, 3.8vw, 3.2rem);
      font-weight: 700;
      line-height: 1.16;
      color: #fff;
      margin-bottom: 12px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--gold);
    }

    .hero-lead {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 1.8vw, 1.4rem);
      font-weight: 300;
      font-style: italic;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
      margin-bottom: 38px;
      max-width: 480px;
    }

    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 44px;
    }
    .pill {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      padding: 7px 14px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.75);
      letter-spacing: 0.03em;
    }
    .pill-dot {
      width: 5px; height: 5px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: var(--navy-deep);
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      text-decoration: none;
      padding: 15px 28px;
      border-radius: 2px;
      transition: all 0.2s;
      box-shadow: 0 4px 22px rgba(201,168,108,0.32);
    }
    .btn-gold:hover {
      background: #d9bb80;
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(201,168,108,0.42);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(255,255,255,0.25);
      color: rgba(255,255,255,0.7);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      text-decoration: none;
      padding: 14px 22px;
      border-radius: 2px;
      transition: all 0.2s;
    }
    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* HERO PHOTO */
    .hero-photo {
      position: relative;
      z-index: 2;
      overflow: hidden;
    }
    .hero-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    /* gradient overlay left edge */
    .hero-photo::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 120px; height: 100%;
      background: linear-gradient(to right, var(--navy), transparent);
      z-index: 3;
    }
    /* gold accent bar */
    .hero-photo::after {
      content: '';
      position: absolute;
      top: 10%; right: 0;
      width: 4px;
      height: 60%;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      z-index: 4;
    }

    /* floating credential card */
    .hero-credential {
      position: absolute;
      bottom: 10px;
      left: 10px;
      z-index: 5;
      background: var(--beige);
      border-radius: 3px;
      padding: 18px 22px;
      box-shadow: 0 16px 48px rgba(0,0,0,0.35);
      min-width: 220px;
    }
    .hero-credential p {
      font-family: 'Cinzel', serif;
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .hero-credential span {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.9rem;
      font-style: italic;
      color: var(--brown);
    }
    .cred-oab {
      display: inline-block;
      margin-top: 8px;
      background: var(--navy);
      color: var(--gold);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      padding: 4px 10px;
      border-radius: 2px;
    }

    /* hero bottom bar */
    .hero-bottom {
      position: absolute;
      bottom: 0; left: 0; right: 50%;
      z-index: 3;
      background: var(--brown-dark);
      padding: 16px 7%;
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .hero-bottom-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--gold-light);
      font-size: 0.75rem;
      letter-spacing: 0.07em;
      white-space: nowrap;
    }
    .hero-bottom-item span { font-size: 0.95rem; }

    /* ══════════════════════════════════════
       AREAS DE ATUAÇÃO
    ══════════════════════════════════════ */
    .areas-section {
      background: var(--beige-light);
      padding: 90px 7%;
      border-top: 1px solid rgba(138,96,64,0.12);
    }

    .section-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--brown);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .section-label::after {
      content: '';
      flex: 1;
      max-width: 48px;
      height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .section-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 560px;
      margin-bottom: 54px;
    }

    .areas-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .area-card {
      background: var(--white);
      border-radius: 3px;
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
      border: 1px solid rgba(138,96,64,0.1);
      cursor: default;
    }
    .area-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 44px rgba(28,42,58,0.1);
    }
    .area-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--brown), var(--gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    .area-card:hover::before { transform: scaleX(1); }

    .area-num {
      font-family: 'Cinzel', serif;
      font-size: 2.5rem;
      font-weight: 900;
      color: rgba(28,42,58,0.06);
      line-height: 1;
      margin-bottom: 16px;
    }
    .area-icon {
      font-size: 1.8rem;
      margin-bottom: 16px;
      display: block;
    }
    .area-card h3 {
      font-family: 'Cinzel', serif;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: 0.05em;
      margin-bottom: 10px;
    }
    .area-card p {
      font-size: 0.84rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .areas-footer {
      margin-top: 32px;
      background: var(--navy);
      border-radius: 3px;
      padding: 28px 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .areas-footer p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-style: italic;
      color: rgba(255,255,255,0.75);
    }
    .areas-footer p strong {
      color: var(--gold);
      font-style: normal;
    }

    /* ══════════════════════════════════════
       SOBRE
    ══════════════════════════════════════ */
    .sobre-section {
      background: var(--cream);
      padding: 90px 7%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .sobre-img-wrap {
      position: relative;
    }
    .sobre-img-wrap img {
      width: 100%;
      height: 560px;
      object-fit: cover;
      /* object-position: center top; */
      border-radius: 3px;
      display: block;
    }
    /* gold frame offset */
    .sobre-img-wrap::before {
      content: '';
      position: absolute;
      top: -16px; left: -16px;
      right: 16px; bottom: 16px;
      border: 1px solid rgba(201,168,108,0.35);
      border-radius: 3px;
      z-index: 0;
    }
    .sobre-img-wrap img { position: relative; z-index: 1; }

    /* floating OAB chip */
    .oab-chip {
      position: absolute;
      bottom: -20px;
      right: -20px;
      z-index: 2;
      background: var(--gold);
      color: var(--navy-deep);
      border-radius: 3px;
      padding: 16px 22px;
      box-shadow: 0 10px 32px rgba(0,0,0,0.2);
    }
    .oab-chip strong {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 2px;
    }
    .oab-chip span {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem;
      opacity: 0.8;
    }

    .sobre-text .section-sub {
      margin-bottom: 28px;
      max-width: 100%;
    }

    .sobre-body p {
      font-size: 0.9rem;
      color: var(--text-body);
      line-height: 1.8;
      margin-bottom: 18px;
    }

    .sobre-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 28px;
    }

    .value-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px;
      background: var(--beige-light);
      border-radius: 3px;
      border-left: 2px solid var(--gold);
    }

    .value-item p {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--navy);
      line-height: 1.4;
      margin: 0;
    }

    .sobre-cta {
      margin-top: 36px;
      display: flex;
      justify-content: center;
      gap: 14px;
      /* flex-wrap: wrap; */
    }

    /* ══════════════════════════════════════
       DEPOIMENTOS
    ══════════════════════════════════════ */
    .depo-section {
      background: var(--navy);
      padding: 90px 7%;
      position: relative;
      overflow: hidden;
    }
    .depo-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 20%, rgba(201,168,108,0.06) 0%, transparent 55%);
      pointer-events: none;
    }

    .depo-section .section-label { color: var(--gold); }
    .depo-section .section-label::after { background: rgba(201,168,108,0.4); }
    .depo-section .section-title { color: var(--white); }
    .depo-section .section-sub { color: rgba(255,255,255,0.5); }

    /* google rating */
    .google-badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      padding: 10px 20px;
      margin-bottom: 50px;
    }
    .google-badge img { height: 20px; width: auto; }
    .google-badge .score {
      font-family: 'Cinzel', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--gold);
    }
    .google-badge .stars { color: #FBBF24; font-size: 0.85rem; letter-spacing: 2px; }
    .google-badge .label {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.06em;
    }

    .depo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 36px;
    }

    .depo-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 3px;
      padding: 32px 28px;
      transition: background 0.25s, transform 0.25s;
    }
    .depo-card:hover {
      background: rgba(255,255,255,0.08);
      transform: translateY(-3px);
    }

    .depo-stars { color: #FBBF24; font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 18px; }

    .depo-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-style: italic;
      color: rgba(255,255,255,0.75);
      line-height: 1.7;
      margin-bottom: 24px;
      display: -webkit-box;
      -webkit-line-clamp: 6;
      line-clamp: 6;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .depo-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .depo-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(201,168,108,0.35);
    }
    .depo-name {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--gold-light);
    }
    .depo-via {
      font-size: 0.7rem;
      color: rgba(255,255,255,0.35);
      letter-spacing: 0.06em;
    }

    .depo-link {
      display: flex;
      justify-content: center;
      margin-top: 10px;
    }
    .depo-link a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold-light);
      font-size: 0.82rem;
      font-weight: 500;
      text-decoration: none;
      border-bottom: 1px solid rgba(201,168,108,0.3);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }
    .depo-link a:hover { color: var(--gold); border-color: var(--gold); }

 /* ══════════════════════════════════════
       INSTAGRAM
    ══════════════════════════════════════ */
    .insta-section {
      background: var(--cream);
      padding: 90px 7%;
      border-top: 1px solid rgba(138,96,64,0.1);
    }

    .insta-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 44px;
      flex-wrap: wrap;
    }

    .insta-handle {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      margin-top: 14px;
    }
    .insta-handle-icon {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: #fff;
      flex-shrink: 0;
    }
    .insta-handle-text strong {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--navy);
    }
    .insta-handle-text span {
      font-size: 0.72rem;
      color: var(--text-muted);
    }

    .insta-follow-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.05em;
      text-decoration: none;
      padding: 11px 22px;
      border-radius: 2px;
      flex-shrink: 0;
      transition: opacity 0.2s, transform 0.2s;
      box-shadow: 0 4px 16px rgba(220,39,67,0.25);
    }
    .insta-follow-btn:hover { opacity: 0.9; transform: translateY(-1px); }

    /* ── Widget container ── */
    .insta-widget-wrap {
      width: 100%;
      min-height: 380px;
      position: relative;
    }

    
    /* ══════════════════════════════════════
       CTA BAND
    ══════════════════════════════════════ */
    .cta-band {
      background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
      padding: 60px 7%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    .cta-band-text h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.3rem, 2.5vw, 2rem);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }
    .cta-band-text p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-style: italic;
      color: rgba(255,255,255,0.7);
    }
    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      color: var(--brown-dark);
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.04em;
      text-decoration: none;
      padding: 15px 28px;
      border-radius: 2px;
      flex-shrink: 0;
      transition: all 0.2s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }
    .btn-white:hover {
      background: var(--gold-pale);
      transform: translateY(-2px);
    }

    /* ══════════════════════════════════════
       CONTATO
    ══════════════════════════════════════ */
    .contato-section {
      background: var(--beige-light);
      padding: 90px 7%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: start;
      border-top: 1px solid rgba(138,96,64,0.12);
    }

    .contato-items {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-top: 38px;
      margin-bottom: 40px;
    }
    .contato-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px;
      background: var(--white);
      border-radius: 3px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
      border-left: 3px solid var(--gold);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .contato-item:hover {
      transform: translateX(4px);
      box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    }
    .contato-item-icon {
      width: 42px; height: 42px;
      background: var(--navy);
      color: var(--cream);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .contato-item-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brown);
      margin-bottom: 3px;
    }
    .contato-item-value {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--navy);
    }

    .social-row {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .social-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border: 1px solid rgba(138,96,64,0.25);
      border-radius: 2px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--navy);
      text-decoration: none;
      transition: all 0.2s;
      background: var(--white);
    }
    .social-btn:hover {
      background: var(--navy);
      color: var(--gold-light);
      border-color: var(--navy);
    }
    .social-btn span { font-size: 1.05rem; }

    /* Map */
    .contato-map {
      border-radius: 3px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    }
    .contato-map iframe {
      width: 100%;
      height: 420px;
      border: none;
      display: block;
    }
    .map-label {
      background: var(--navy);
      color: rgba(255,255,255,0.65);
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      padding: 12px 18px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .map-label span { color: var(--gold); }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    footer {
      background: var(--navy-deep);
      padding: 50px 7% 28px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 50px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      margin-bottom: 28px;
    }

    .footer-brand img {
      height: 200px;
      width: auto;
      filter: brightness(0) invert(1);
      opacity: 0.9;
      margin-bottom: 18px;
    }
    .footer-brand p {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.38);
      line-height: 1.7;
      max-width: 280px;
    }

    .footer-col h4 {
      font-family: 'Cinzel', serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s;
      letter-spacing: 0.03em;
    }
    .footer-col ul li a:hover { color: var(--gold-light); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p {
      font-size: 0.7rem;
      color: rgba(255,255,255,0.22);
      line-height: 1.6;
      letter-spacing: 0.04em;
    }
    .footer-oab {
      font-family: 'Cinzel', serif;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      color: var(--gold);
      opacity: 0.6;
    }

    /* ══════════════════════════════════════
       FLOATING WHATSAPP
    ══════════════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 58px; height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 22px rgba(37,211,102,0.42);
      transition: transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
    }
    .wa-float:hover {
      transform: scale(1.08);
      box-shadow: 0 8px 32px rgba(37,211,102,0.52);
    }
    .wa-float svg { fill: #fff; }

    /* ══════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-content > * {
      opacity: 0;
      animation: fadeUp 0.7s ease forwards;
    }
    .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
    .hero-content > *:nth-child(2) { animation-delay: 0.22s; }
    .hero-content > *:nth-child(3) { animation-delay: 0.34s; }
    .hero-content > *:nth-child(4) { animation-delay: 0.44s; }
    .hero-content > *:nth-child(5) { animation-delay: 0.54s; }
    .hero-photo {
      opacity: 0;
      animation: fadeUp 0.9s ease 0.3s forwards;
    }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 1100px) {
      .areas-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-photo { height: 420px; }
      .hero-photo::before { display: none; }
      .hero-bottom { left: 0; right: 0; bottom: 0; flex-wrap: wrap; gap: 16px; }
      .hero-credential { left: 20px; bottom: 80px; }
      .sobre-section { grid-template-columns: 1fr; gap: 40px; }
      .sobre-img-wrap img { height: 400px; }
      .contato-section { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1/-1; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .depo-grid { grid-template-columns: 1fr 1fr; }
      .insta-placeholder { grid-template-columns: repeat(3, 1fr); }
      .oab-chip { right: 20px; }
    }

    @media (max-width: 640px) {
      .areas-grid { grid-template-columns: 1fr; }
      .depo-grid { grid-template-columns: 1fr; }
      .insta-placeholder { grid-template-columns: repeat(2, 1fr); }
      .insta-header { flex-direction: column; align-items: flex-start; }
      .sobre-values { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .cta-band { flex-direction: column; text-align: center; }
      .hero-bottom { display: none; }
    }

    /* WA SVG inline reuse */
    .wa-icon { fill: currentColor; }