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

    :root {
      --wine: #722F37;
      --wine-dark: #4e1f25;
      --wine-light: #8a3a44;
      --yellow: #F0C929;
      --white: #ffffff;
      --off-white: #f8f5f0;
      --text: #1a1a1a;
      --text-muted: #555;

      --shadow-00: 1rem 1rem 0 rgba(0,0,0,0.25);
      --shadow-01: 0.2rem 0.2rem 0 rgba(0,0,0,0.25);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ─── HERO ─────────────────────────────────────────── */
    #hero {
      position: relative;
      height: 80vh;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }

    #hero-bg {
      position: absolute;
      inset: 0;
      background: url('images/office-workers-using-finance-graphs.webp') center/cover no-repeat;
      filter: brightness(0.35);
      transform: scale(1.25);
      transition: transform 0.025s linear;
    }

    .hero-nav {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      padding: 2rem 3rem;
      display: flex;
      justify-content: flex-end;
      gap: 3rem;
      z-index: 10;
    }

    .hero-nav a {
      color: var(--white);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.3px;
      transition: color 0.2s;
    }

    .hero-nav a:hover { color: var(--yellow); }

    .hero-logo {
      position: relative;
      z-index: 10;
      max-width: 100%;
      max-height: 100vh;
      width: auto;
      height: auto;
      animation: heroFadeIn 1s ease forwards;
    }

    @keyframes heroFadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .logo-symbol {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-dots {
      display: grid;
      grid-template-columns: repeat(4, 8px);
      gap: 4px;
    }

    .logo-dots span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--white);
      opacity: 0.85;
    }

    .logo-wordmark {
      font-family: 'Playfair Display', serif;
      font-size: clamp(64px, 10vw, 110px);
      font-weight: 900;
      color: var(--white);
      line-height: 1;
      letter-spacing: -2px;
    }

    .logo-sub {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(14px, 2vw, 20px);
      font-weight: 300;
      color: var(--white);
      letter-spacing: 6px;
      text-transform: lowercase;
      opacity: 0.9;
    }

    /* ─── STICKY NAVBAR ─────────────────────────────────── */
    #sticky-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: var(--white);
      padding: 0 4rem;
      height: 5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transform: translateY(-100%);
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }

    #sticky-nav.visible { transform: translateY(0); }

    .sticky-logo img {
      height: 3rem;
      width: auto;
    }

    .sticky-nav-links {
      display: flex;
      gap: 36px;
      align-items: center;
    }

    .sticky-nav-links a {
      color: var(--text);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    .sticky-nav-links a:hover { color: var(--wine); }
    .sticky-nav-links a.active { color: var(--yellow); font-weight: 600; }

    /* ─── SECTION COMMONS ───────────────────────────────── */
    section { padding: 96px 48px; }

    .container {
      max-width: 120vh;
      margin: 0 auto;
    }

    /* ─── SERVIÇOS ──────────────────────────────────────── */
    #servicos {
      background: var(--off-white);
    }

    .servicos-grid {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 64px;
      align-items: center;
    }

    .servicos-img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border-radius: 2rem 0px;
      box-shadow: var(--shadow-00);
    }

    .servicos-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 40px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 16px;
    }

    .servicos-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0px;
    }

    .servicos-list li {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 16px;
      font-weight: 400;
      color: var(--text-muted);
      padding: 8px 16px;
      margin: 4px;
      background: var(--white);
      border-radius: 8px;
      box-shadow: var(--shadow-01);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .servicos-list li::before {
      content: '';
      width: 10px;
      height: 10px;
      background-image: url('images/Ellipse2.svg');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      flex-shrink: 0;
      border-radius: 0;
    }

    /* ─── QUEM SOMOS ────────────────────────────────────── */

    #quem-somos {
      background-image: url("images/Rectangle.webp");
      background-size: 35%;
      background-position: center;
      position: relative;
    }

    #quem-somos::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(114, 47, 55, 0.95); /* vinho com 75% de opacidade */
      z-index: 0;
    }

    #quem-somos .container {
      position: relative;
      z-index: 1;
    }

    .quem-card {
      background: var(--off-white);
      border-radius: 8px;
      padding: 2rem;
      display: grid;
      grid-template-columns: 1fr 20rem;
      column-gap: 4rem;
      align-items: center;
      position: relative;
      box-shadow: var(--shadow-);

      border: 0.5rem solid var(--text);
      border-radius: 1rem;
    }

    .quem-card h2 {
      font-family: 'Playfair Display', serif;
      font-size: 38px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 24px;
    }

    .quem-card p {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-muted);
    }

    .quem-img-wrap {
      position: relative;
    }

    .quem-img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border-radius: 0 2rem;
      box-shadow: var(--shadow-00);
    }

    /* ─── FALE CONOSCO ──────────────────────────────────── */
    #fale-conosco {
      background: var(--white);
    }

    .fale-grid {
      display: grid;
      grid-template-columns: 1fr 280px;
      gap: 80px;
      align-items: center;
    }

    .fale-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 40px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 16px;
    }

    .fale-content p {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--wine);
      color: var(--white);
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      transition: background 0.2s, transform 0.2s;
    }

    .whatsapp-btn:hover {
      background: var(--wine-dark);
      transform: translateY(-2px);
    }

    .whatsapp-btn svg { width: 20px; height: 20px; fill: currentColor; }

    .qr-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .qr-placeholder {
      width: 200px;
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 0.5rem;
      overflow: hidden; /* impede escapar */
    }

    .address-text {
      font-size: 13px;
      color: var(--text-muted);
      text-align: center;
      line-height: 1.6;
    }

    .qr-code {
      width: 100%;
      height: 100%;
      object-fit: contain; /* se for img */
    }
    /* ─── FOOTER ────────────────────────────────────────── */
    footer {
      background: var(--wine-dark);
      padding: 1rem 2rem;
      text-align: center;
    }

    footer p {
      color: var(--yellow);
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.3px;
    }

    /* ─── RESPONSIVE ────────────────────────────────────── */
    @media (max-width: 768px) {
      section { padding: 64px 24px; }
      #sticky-nav { padding: 0 24px; }

      .servicos-grid,
      .quem-card,
      .fale-grid {
        grid-template-columns: 1fr;
      }

      .servicos-img { max-width: 260px; margin: 0 auto; display: block; }
      .quem-img { max-width: 240px; margin: 0 auto; display: block; }

      .hero-nav { gap: 20px; padding: 20px 24px; font-size: 13px; }
      .logo-wordmark { font-size: 56px; }

      .quem-card { padding: 32px 24px; }

      footer { padding: 20px 24px; }
    }