/* =====================================================
       RESET E VARIÁVEIS GERAIS
    ===================================================== */
    :root {
      /* Tema claro e confortável: sem preto puro, ideal para melhor legibilidade */
      --bg: #f7f1e6;
      --bg-dark: #eee2ce;
      --bg-soft: #fffaf0;
      --gold: #cca045;
      --gold-light: #e5b95f;
      --white: #4a3b2a;
      --muted: #746958;
      --text-strong: #3f3326;
      --cream: #fffaf0;
      --border: rgba(184, 135, 47, 0.28);
      --shadow: 0 24px 70px rgba(103, 78, 42, 0.18);
      --header-height: 82px;
      --radius: 22px;
      --transition: 0.35s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: var(--header-height);
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
    }

    img {
      display: block;
      max-width: 100%;
    }

    /* =====================================================
       SPLASH SCREEN — VÍDEO DE ENTRADA
    ===================================================== */
    .splash-screen {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #0a0a0a;
      overflow: hidden;
      transition: opacity 0.8s ease, transform 0.8s ease;
      cursor: pointer;
    }

    .splash-screen.fade-out {
      opacity: 0;
      transform: scale(1.05);
      pointer-events: none;
    }

    .splash-screen.hidden {
      display: none;
    }

    .splash-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .splash-skip {
      position: absolute;
      bottom: 28px;
      right: 28px;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255, 250, 240, 0.3);
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(8px);
      color: #fffaf0;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      opacity: 0;
      animation: splash-skip-appear 0.6s ease forwards;
      animation-delay: 1.5s;
      transition: background 0.3s ease, border-color 0.3s ease;
    }

    .splash-skip:hover {
      background: rgba(184, 135, 47, 0.6);
      border-color: var(--gold);
    }

    @keyframes splash-skip-appear {
      0% { opacity: 0; transform: translateY(10px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Seção de Vídeos */
    .videos-section {
      background: var(--bg);
      padding: 60px 0 0;
    }

    .videos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .video-card {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(184, 135, 47, 0.22);
      background: var(--cream);
      box-shadow: var(--shadow);
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .video-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 60px rgba(103, 78, 42, 0.22);
    }

    .video-card video {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      display: block;
      background: #0a0a0a;
      border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
    }

    .video-card-caption {
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .video-card-caption strong {
      color: var(--text-strong);
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
    }

    .video-card-caption span {
      color: var(--muted);
      font-size: 0.88rem;
    }

    @media (max-width: 640px) {
      .videos-grid {
        grid-template-columns: 1fr;
      }

      .splash-logo {
        width: 150px;
        height: 150px;
      }

      .splash-title {
        font-size: 1.6rem;
      }
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    .container {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
    }

    .section {
      padding: 96px 0;
      position: relative;
    }

    .section-heading {
      max-width: 720px;
      margin-bottom: 40px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      color: var(--gold-light);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: '';
      width: 42px;
      height: 1px;
      background: var(--gold);
      display: inline-block;
    }

    h1,
    h2,
    h3 {
      font-family: 'Playfair Display', serif;
      line-height: 1.08;
      letter-spacing: -0.03em;
    }

    h2 {
      font-size: clamp(2.2rem, 5vw, 4.2rem);
      margin-bottom: 18px;
    }

    .section-heading p,
    .lead {
      color: var(--muted);
      font-size: 1.04rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid var(--gold);
      background: var(--gold);
      color: #fffaf0;
      min-height: 40px;
      padding: 0 28px;
      border-radius: 999px;
      font-size: 0.92rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
    }

    .btn:hover {
      transform: translateY(-4px) scale(1.02);
      background: var(--gold-light);
      color: #fffaf0;
      box-shadow: 0 18px 45px rgba(204, 160, 69, 0.35), 0 0 20px rgba(204, 160, 69, 0.2);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
    }

    .btn-outline:hover {
      background: var(--gold);
      color: #fffaf0;
    }

    /* =====================================================
       HEADER FIXO
    ===================================================== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      width: 100%;
      height: var(--header-height);
      background: rgba(255, 250, 240, 0.84);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(184, 135, 47, 0.18);
      transition: background var(--transition), height var(--transition), box-shadow var(--transition);
    }

    .header.scrolled {
      height: 72px;
      background: rgba(255, 250, 240, 0.85);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      box-shadow: 0 18px 45px rgba(103, 78, 42, 0.16);
    }

    .navbar {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }


    .logo-image {
      width: 60px;
      height: 60px;
      object-fit: contain;
      border-radius: 50%;
      background: #0a0a0a;
      box-shadow: 0 4px 16px rgba(103, 78, 42, 0.15);
      padding: 2px;
      border: 2px solid var(--gold);
    }

    .logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text-strong);
      line-height: 1.1;
    }

    .logo-text span {
      display: block;
      color: var(--gold-light);
      font-family: 'Inter', sans-serif;
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      font-weight: 700;
      margin-top: 2px;
      text-transform: uppercase;
    }

    .logo-mark {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border: 1px solid var(--gold);
      color: var(--gold-light);
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 20%, rgba(200, 160, 74, 0.34), transparent 58%);
    }

    .logo-text span {
      display: block;
      color: var(--gold-light);
      font-size: 0.68rem;
      letter-spacing: 0.27em;
      font-weight: 700;
      margin-top: -4px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .nav-link {
      position: relative;
      font-size: 0.9rem;
      font-weight: 700;
      color: rgba(74, 59, 42, 0.88);
      transition: color var(--transition);
    }

    .nav-link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width var(--transition);
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--white);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .hamburger {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(184, 135, 47, 0.24);
      background: rgba(255, 250, 240, 0.68);
      border-radius: 50%;
      cursor: pointer;
      z-index: 1001;
    }

    .hamburger span {
      display: block;
      width: 20px;
      height: 2px;
      margin: 5px auto;
      background: var(--white);
      transition: transform var(--transition), opacity var(--transition);
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* =====================================================
       HERO FULLSCREEN
    ===================================================== */
    .hero {
      min-height: 100vh;
      display: grid;
      place-items: center;
      text-align: center;
      padding: calc(var(--header-height) + 72px) 0 72px;
      background:
        linear-gradient(180deg, rgba(255, 250, 240, 0.82), rgba(247, 241, 230, 0.95)),
        url('wa-d1f4fe1b9f17 - Copia.jpg') center/cover no-repeat;
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: auto 0 0 0;
      height: 180px;
      background: linear-gradient(to bottom, transparent, var(--bg));
      pointer-events: none;
    }

    .hero-content {
      width: min(980px, calc(100% - 32px));
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--gold-light);
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-size: 0.78rem;
      margin-bottom: 20px;
    }

    .hero-kicker::before,
    .hero-kicker::after {
      content: '';
      width: 34px;
      height: 1px;
      background: var(--gold);
    }

    .hero h1 {
      font-size: clamp(3rem, 9vw, 7.5rem);
      margin-bottom: 24px;
      text-shadow: 0 14px 40px rgba(255, 250, 240, 0.55);
    }

    .hero p {
      width: min(720px, 100%);
      margin: 0 auto 36px;
      color: rgba(74, 59, 42, 0.82);
      font-size: clamp(1rem, 2vw, 1.22rem);
    }

    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* =====================================================
       SOBRE NÓS
    ===================================================== */
    .about {
      background: var(--bg);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: center;
      gap: 58px;
    }

    .about-text p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .about-list {
      display: grid;
      gap: 14px;
      margin: 30px 0 36px;
    }

    .about-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: rgba(74, 59, 42, 0.9);
      font-weight: 600;
    }

    .check-icon {
      flex: 0 0 26px;
      width: 26px;
      height: 26px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(200, 160, 74, 0.15);
      color: var(--gold-light);
      font-weight: 900;
    }

    .about-image {
      position: relative;
    }

    .about-image::before {
      content: '';
      position: absolute;
      inset: 26px -20px -20px 26px;
      border: 1px solid var(--gold);
      border-radius: var(--radius);
      z-index: 0;
    }

    .about-image img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 520px;
      object-fit: cover;
      object-position: center top;
      background: var(--cream);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      filter: saturate(0.9) contrast(1.08);
    }

    .experience-badge {
      position: absolute;
      z-index: 2;
      left: -22px;
      bottom: 34px;
      width: 154px;
      height: 154px;
      display: grid;
      place-items: center;
      text-align: center;
      border-radius: 50%;
      background: var(--gold);
      color: #fffaf0;
      box-shadow: 0 18px 45px rgba(103, 78, 42, 0.22);
    }

    .experience-badge strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      line-height: 0.9;
    }

    .experience-badge span {
      display: block;
      font-weight: 900;
      line-height: 1.15;
      text-transform: uppercase;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
    }

    /* =====================================================
       SERVIÇOS
    ===================================================== */
    .services {
      background:
        radial-gradient(circle at top right, rgba(200, 160, 74, 0.1), transparent 34%),
        var(--bg-dark);
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      padding: 34px;
      min-height: 310px;
      background: linear-gradient(180deg, rgba(255, 250, 240, 0.65), rgba(239, 228, 210, 0.45));
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 10px 30px rgba(103, 78, 42, 0.08);
      border-radius: var(--radius);
      transition: transform var(--transition), border-color var(--transition), background var(--transition);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(213, 168, 79, 0.18), transparent 45%);
      opacity: 0;
      transition: opacity var(--transition);
      pointer-events: none;
    }

    .service-card:hover {
      transform: translateY(-12px) scale(1.01);
      border-color: rgba(204, 160, 69, 0.4);
      background: linear-gradient(180deg, rgba(255, 250, 240, 0.85), rgba(239, 228, 210, 0.65));
      box-shadow: 0 25px 50px rgba(103, 78, 42, 0.15);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-icon {
      width: 64px;
      height: 64px;
      display: grid;
      place-items: center;
      margin-bottom: 26px;
      border-radius: 18px;
      background: rgba(200, 160, 74, 0.12);
      color: var(--gold-light);
      font-size: 2rem;
      position: relative;
      z-index: 1;
    }

    .service-card h3 {
      font-size: 1.55rem;
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }

    .service-card p {
      color: var(--muted);
      position: relative;
      z-index: 1;
    }



    .featured-banner-card {
      margin-bottom: 26px;
      padding: 0;
      border-radius: var(--radius);
      border: 1px solid rgba(184, 135, 47, 0.22);
      background: var(--cream);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .featured-banner-card img {
      width: 100%;
      height: auto;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .featured-banner-caption {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 24px;
      color: var(--muted);
      font-weight: 700;
    }

    .featured-banner-caption strong {
      color: var(--text-strong);
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
    }

    /* =====================================================
       FIGMA DESIGN: NOSSA EQUIPE & EVENTOS (CARDS GRID)
    ===================================================== */
    .projects {
      background: var(--bg);
      padding: 96px 0;
    }

    .cards-section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 44px;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cards-header-left {
      max-width: 650px;
    }

    .cards-main-title {
      font-size: clamp(2.4rem, 5vw, 4rem);
      color: var(--text-strong);
      line-height: 1.08;
      margin-top: 6px;
    }

    .cards-tagline {
      display: inline-block;
      font-size: 1.1rem;
      color: var(--gold-light);
      font-weight: 700;
      letter-spacing: 0.04em;
      padding-bottom: 6px;
      text-transform: uppercase;
    }

    .figma-cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .figma-card {
      background: #383533;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(184, 135, 47, 0.22);
      box-shadow: 0 14px 34px rgba(45, 34, 20, 0.12);
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
                  border-color 0.35s ease,
                  box-shadow 0.35s ease;
      cursor: pointer;
    }

    .figma-card:hover {
      transform: translateY(-8px);
      border-color: #cca045;
      box-shadow: 0 20px 42px rgba(45, 34, 20, 0.24), 0 0 24px rgba(204, 160, 69, 0.28);
    }

    .figma-card-img-wrap {
      width: 100%;
      height: 270px;
      overflow: hidden;
      background: #252321;
      position: relative;
    }

    .figma-card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 0.5s ease;
    }

    .figma-card-logo-wrap img {
      object-fit: contain;
      padding: 30px;
      background: #0f0f0e;
    }

    .figma-card:hover .figma-card-img-wrap img {
      transform: scale(1.05);
    }

    .figma-card-body {
      padding: 20px 22px 22px;
      background: #383533;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 12px;
      margin-top: auto;
      transition: background 0.35s ease;
    }

    .figma-card:hover .figma-card-body {
      background: #3f3c39;
    }

    .figma-card-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.22rem;
      color: #fffaf0;
      margin-bottom: 5px;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    .figma-card-tag {
      display: block;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #c89e47;
    }

    .figma-card-arrow {
      font-size: 1.35rem;
      line-height: 1;
      color: #cca045;
      opacity: 0;
      transform: translate(-5px, 5px);
      transition: opacity 0.35s ease, transform 0.35s ease;
      font-weight: 700;
    }

    .figma-card:hover .figma-card-arrow {
      opacity: 1;
      transform: translate(0, 0);
    }

    /* Card de Vídeo com tema escuro elegante do Figma */
    .figma-video-card {
      background: #23211f;
      border: 1px solid rgba(184, 135, 47, 0.28);
      min-height: 360px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .figma-video-card:hover {
      border-color: #e5b95f;
      box-shadow: 0 20px 42px rgba(45, 34, 20, 0.32), 0 0 30px rgba(229, 185, 95, 0.35);
    }

    .figma-video-play-area {
      height: 270px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at center, rgba(204, 160, 69, 0.12) 0%, transparent 68%);
      position: relative;
    }

    .play-btn-circle {
      width: 74px;
      height: 74px;
      border-radius: 50%;
      border: 2px solid #cca045;
      background: rgba(35, 33, 31, 0.85);
      backdrop-filter: blur(8px);
      color: #cca045;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                  background 0.35s ease,
                  color 0.35s ease,
                  box-shadow 0.35s ease;
    }

    .play-btn-circle svg {
      width: 34px;
      height: 34px;
      margin-left: 4px;
    }

    .figma-video-card:hover .play-btn-circle {
      transform: scale(1.15);
      background: #cca045;
      color: #1a1918;
      box-shadow: 0 0 30px rgba(204, 160, 69, 0.7), 0 0 60px rgba(204, 160, 69, 0.4);
    }

    .figma-card-divider {
      width: 85%;
      height: 1px;
      background: rgba(255, 255, 255, 0.08);
      margin: 0 auto;
    }

    .figma-video-card .figma-card-body {
      background: #23211f;
    }

    .figma-video-card:hover .figma-card-body {
      background: #2a2725;
    }

    .video-tag {
      color: #e5b95f;
    }

    /* Rodapé da seção estilizado como no Figma */
    .section-footer-banner {
      margin-top: 48px;
      padding: 22px 30px;
      border-radius: 16px;
      background: rgba(200, 160, 74, 0.12);
      border: 1px solid rgba(184, 135, 47, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      color: var(--text-strong);
      font-weight: 700;
      font-size: 0.95rem;
      text-align: center;
    }

    .bullet-gold {
      color: var(--gold);
      font-weight: 900;
    }

    /* Modal / Lightbox dos Vídeos */
    .video-modal {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }

    .video-modal.active {
      opacity: 1;
      pointer-events: auto;
    }

    .video-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 10, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    .video-modal-content {
      position: relative;
      z-index: 2;
      width: min(920px, 100%);
      background: #1e1c1a;
      border: 1px solid rgba(204, 160, 69, 0.4);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
      transform: scale(0.94);
      transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .video-modal.active .video-modal-content {
      transform: scale(1);
    }

    .video-modal-close {
      position: absolute;
      top: 14px;
      right: 16px;
      z-index: 3;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.25);
      background: rgba(0, 0, 0, 0.65);
      color: #fffaf0;
      font-size: 1.3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
    }

    .video-modal-close:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: #1a1918;
      transform: scale(1.08);
    }

    .video-modal-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: #fffaf0;
      padding: 20px 24px 16px;
      background: #252321;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .video-modal-player-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #0a0a0a;
    }

    .video-modal-player-wrap video {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
    }

    @media (max-width: 1200px) {
      .figma-cards-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 860px) {
      .figma-cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 560px) {
      .figma-cards-grid {
        grid-template-columns: 1fr;
      }
      .cards-section-header {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    .project-overlay p {
      color: rgba(74, 59, 42, 0.72);
      font-size: 0.92rem;
    }

    /* =====================================================
       TIPOGRAFIA COM SCROLL INFINITO — MARQUEE CSS
       Obrigatório: sem tag <marquee>, com @keyframes e pausa no hover.
    ===================================================== */
    .marquee-section {
      padding: 0;
      background: var(--gold-light);
      color: var(--text-strong);
      overflow: hidden;
      border-top: 1px solid rgba(255, 255, 255, 0.16);
      border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .marquee {
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
    }

    .marquee-track {
      display: inline-flex;
      width: max-content;
      align-items: center;
      animation: marquee-scroll 24s linear infinite;
      will-change: transform;
    }

    .marquee:hover .marquee-track {
      animation-play-state: paused;
    }

    .marquee-content {
      display: inline-flex;
      align-items: center;
      gap: 22px;
      padding: 26px 11px;
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 6vw, 4.9rem);
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.04em;
      text-transform: uppercase;
    }

    .marquee-symbol {
      font-family: 'Inter', sans-serif;
      font-size: 0.45em;
      opacity: 0.76;
      transform: translateY(0.02em);
    }

    @keyframes marquee-scroll {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-33.3333%);
      }
    }

    /* =====================================================
       ESTATÍSTICAS COM CONTADORES
    ===================================================== */
    .stats {
      background:
        linear-gradient(rgba(247, 241, 230, 0.86), rgba(247, 241, 230, 0.9)),
        url('images/estatisticas-evento-mil-garcons.jpg') center/cover fixed no-repeat;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .stat-card {
      padding: 34px 24px;
      text-align: center;
      border: 1px solid rgba(184, 135, 47, 0.2);
      border-radius: var(--radius);
      background: rgba(255, 250, 240, 0.72);
      backdrop-filter: blur(10px);
    }

    .stat-number {
      display: block;
      margin-bottom: 10px;
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.7rem, 6vw, 4.4rem);
      line-height: 1;
      color: var(--gold-light);
      font-weight: 900;
    }

    .stat-label {
      color: rgba(74, 59, 42, 0.82);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 0.78rem;
    }

    /* =====================================================
       DEPOIMENTOS EM CAROUSEL
    ===================================================== */
    .testimonials {
      background: var(--bg-dark);
    }

    .testimonial-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid rgba(184, 135, 47, 0.18);
      background: linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(239, 228, 210, 0.72));
    }

    .testimonial-track {
      display: flex;
      transition: transform 0.55s ease;
    }

    .testimonial-slide {
      min-width: 100%;
      padding: clamp(34px, 7vw, 70px);
      display: grid;
      grid-template-columns: 0.34fr 1fr;
      gap: 36px;
      align-items: center;
    }

    .client-photo {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--gold);
      box-shadow: 0 16px 45px rgba(103, 78, 42, 0.18);
    }

    .quote-mark {
      color: var(--gold-light);
      font-family: 'Playfair Display', serif;
      font-size: 5rem;
      line-height: 0.7;
      margin-bottom: 12px;
    }

    .testimonial-text p {
      color: rgba(74, 59, 42, 0.88);
      font-size: clamp(1.05rem, 2vw, 1.35rem);
      margin-bottom: 24px;
    }

    .client-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      margin-bottom: 4px;
    }

    .client-role {
      color: var(--gold-light);
      font-size: 0.88rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .slider-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 26px;
    }

    .slider-btn {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid var(--gold);
      background: transparent;
      color: var(--gold-light);
      cursor: pointer;
      font-size: 1.4rem;
      transition: background var(--transition), color var(--transition), transform var(--transition);
    }

    .slider-btn:hover {
      background: var(--gold);
      color: #fffaf0;
      transform: translateY(-2px);
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex: 1;
    }

    .dot {
      width: 10px;
      height: 10px;
      border: 0;
      border-radius: 999px;
      background: rgba(184, 135, 47, 0.28);
      cursor: pointer;
      transition: width var(--transition), background var(--transition);
    }

    .dot.active {
      width: 32px;
      background: var(--gold);
    }

    /* =====================================================
       CONTATO
    ===================================================== */
    .contact {
      background:
        radial-gradient(circle at bottom left, rgba(200, 160, 74, 0.12), transparent 34%),
        var(--bg);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 46px;
      align-items: start;
    }

    .contact-info {
      padding: 34px;
      border-radius: var(--radius);
      border: 1px solid rgba(184, 135, 47, 0.18);
      background: rgba(255, 250, 240, 0.76);
    }

    .contact-info h3 {
      font-size: 1.7rem;
      margin-bottom: 18px;
    }

    .contact-info p {
      color: var(--muted);
      margin-bottom: 28px;
    }

    .info-list {
      display: grid;
      gap: 18px;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      color: rgba(74, 59, 42, 0.88);
    }

    .info-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(200, 160, 74, 0.13);
      color: var(--gold-light);
      flex: 0 0 42px;
    }

    .contact-form {
      padding: 34px;
      border-radius: var(--radius);
      background: var(--cream);
      border: 1px solid rgba(184, 135, 47, 0.18);
      box-shadow: var(--shadow);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: rgba(74, 59, 42, 0.88);
      font-size: 0.88rem;
      font-weight: 800;
    }

    .form-control {
      width: 100%;
      min-height: 54px;
      border: 1px solid rgba(184, 135, 47, 0.24);
      border-radius: 14px;
      outline: none;
      background: rgba(255, 250, 240, 0.68);
      color: var(--white);
      padding: 14px 16px;
      transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }

    textarea.form-control {
      min-height: 140px;
      resize: vertical;
    }

    .form-control:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 4px rgba(200, 160, 74, 0.12);
      background: rgba(255, 250, 240, 0.84);
    }

    .form-control.error {
      border-color: #ff6b6b;
      box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.12);
    }

    .error-message {
      display: none;
      margin-top: 6px;
      color: #ff9a9a;
      font-size: 0.8rem;
    }

    .error-message.show {
      display: block;
    }

    .form-status {
      display: none;
      margin-top: 16px;
      padding: 13px 16px;
      border-radius: 12px;
      font-weight: 700;
    }

    .form-status.success {
      display: block;
      background: rgba(73, 190, 130, 0.14);
      color: #8ee5b5;
      border: 1px solid rgba(73, 190, 130, 0.28);
    }

    /* =====================================================
       FOOTER
    ===================================================== */
    .footer {
      padding: 64px 0 24px;
      background: #eadfcf;
      border-top: 1px solid rgba(184, 135, 47, 0.18);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
      gap: 34px;
      padding-bottom: 42px;
    }

    .footer-brand p {
      max-width: 340px;
      color: var(--muted);
      margin-top: 18px;
    }

    .footer h3 {
      font-family: 'Inter', sans-serif;
      font-size: 0.86rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--gold-light);
      margin-bottom: 18px;
    }

    .footer-links,
    .footer-contact {
      display: grid;
      gap: 10px;
      color: var(--muted);
    }

    .footer-links a {
      transition: color var(--transition), transform var(--transition);
    }

    .footer-links a:hover {
      color: var(--gold-light);
      transform: translateX(4px);
    }

    .socials {
      display: flex;
      gap: 12px;
      margin-top: 18px;
    }

    .social-link {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(184, 135, 47, 0.28);
      color: var(--white);
      transition: background var(--transition), color var(--transition), transform var(--transition);
    }

    .social-link svg {
      width: 20px;
      height: 20px;
    }

    .social-link:hover {
      background: var(--gold);
      color: #fffaf0;
      transform: translateY(-3px);
    }

    .copyright {
      padding-top: 22px;
      border-top: 1px solid rgba(184, 135, 47, 0.18);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: rgba(74, 59, 42, 0.64);
      font-size: 0.9rem;
    }

    /* =====================================================
       ANIMAÇÕES DE ENTRADA COM INTERSECTIONOBSERVER
    ===================================================== */
    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .delay-1 { transition-delay: 0.08s; }
    .delay-2 { transition-delay: 0.16s; }
    .delay-3 { transition-delay: 0.24s; }
    .delay-4 { transition-delay: 0.32s; }



    /* Botão discreto de WhatsApp */
    .whatsapp-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 999;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 11px 15px;
      border-radius: 999px;
      background: rgba(255, 250, 240, 0.94);
      color: var(--text-strong);
      border: 1px solid rgba(184, 135, 47, 0.28);
      box-shadow: 0 12px 34px rgba(103, 78, 42, 0.16);
      font-size: 0.86rem;
      font-weight: 800;
      letter-spacing: 0.01em;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
      animation: pulse-whatsapp 2s infinite;
    }

    @keyframes pulse-whatsapp {
      0% { box-shadow: 0 0 0 0 rgba(79, 143, 95, 0.6); }
      70% { box-shadow: 0 0 0 15px rgba(79, 143, 95, 0); }
      100% { box-shadow: 0 0 0 0 rgba(79, 143, 95, 0); }
    }

    .whatsapp-float:hover {
      transform: translateY(-3px);
      background: var(--cream);
      box-shadow: 0 16px 42px rgba(103, 78, 42, 0.22);
    }

    .whatsapp-float svg {
      width: 18px;
      height: 18px;
      color: #4f8f5f;
      flex: 0 0 auto;
    }

    .google-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--cream);
      padding: 8px 16px;
      border-radius: 999px;
      border: 1px solid rgba(184, 135, 47, 0.22);
      margin: 16px 0 24px;
      font-weight: 700;
      color: var(--text-strong);
      box-shadow: 0 4px 12px rgba(103, 78, 42, 0.08);
    }
    .google-badge .stars {
      color: #fbbc05;
      letter-spacing: 2px;
    }

    .renan-card {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 2px solid var(--gold);
      background: #1a1410;
    }
    .renan-photo {
      width: 100%;
      height: 400px;
      object-fit: cover;
      object-position: center top;
      display: block;
      image-rendering: -webkit-optimize-contrast;
      filter: contrast(1.08) brightness(1.02) saturate(1.1);
    }
    .renan-info-panel {
      padding: 24px;
      background: linear-gradient(135deg, #1a1410, #241c14);
      color: #fffaf0;
    }
    .renan-name-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold);
      color: #fffaf0;
      padding: 7px 18px;
      border-radius: 999px;
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 800;
      margin-bottom: 16px;
      box-shadow: 0 4px 18px rgba(184, 135, 47, 0.4);
    }
    .renan-name-badge svg {
      width: 16px;
      height: 16px;
    }
    .renan-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      color: var(--gold-light);
      margin-bottom: 12px;
      line-height: 1.25;
    }
    .renan-quals {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .renan-quals li {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 250, 240, 0.1);
      border: 1px solid rgba(213, 168, 79, 0.3);
      padding: 5px 13px;
      border-radius: 999px;
      font-size: 0.76rem;
      font-weight: 700;
      color: rgba(255, 250, 240, 0.92);
      letter-spacing: 0.02em;
    }
    .renan-quals li .qual-icon {
      font-size: 0.85rem;
      flex: 0 0 auto;
    }
    .renan-owner-line {
      margin-top: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--gold-light);
      font-weight: 800;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .renan-owner-line::before {
      content: '';
      width: 22px;
      height: 1px;
      background: var(--gold);
    }

    .featured-banner-card img {
      image-rendering: -webkit-optimize-contrast;
      filter: contrast(1.1) brightness(1.05) saturate(1.05);
    }

    /* =====================================================
       RESPONSIVIDADE
    ===================================================== */
    @media (max-width: 980px) {
      :root {
        --header-height: 74px;
      }

      .hamburger {
        display: block;
      }

      .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(330px, 82vw);
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 24px;
        padding: 84px 36px 36px;
        background: rgba(255, 250, 240, 0.98);
        border-left: 1px solid rgba(184, 135, 47, 0.18);
        transition: right var(--transition);
        box-shadow: -20px 0 60px rgba(103, 78, 42, 0.18);
      }

      .nav-menu.active {
        right: 0;
      }

      .nav-link {
        font-size: 1.05rem;
      }

      .about-grid,
      .contact-grid,
      .testimonial-slide {
        grid-template-columns: 1fr;
      }

      .about-image {
        max-width: 600px;
        margin: 0 auto;
      }

      .cards-grid,
      .projects-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 640px) {
      .section {
        padding: 72px 0;
      }

      .hero-actions,
      .slider-controls,
      .copyright {
        flex-direction: column;
      }

      .hero-actions .btn,
      .contact-form .btn {
        width: 100%;
      }

      .cards-grid,
      .projects-grid,
      .stats-grid,
      .footer-grid,
      .form-row {
        grid-template-columns: 1fr;
      }

      .service-card {
        min-height: auto;
      }

      .project-card {
        min-height: auto;
      }

      .project-card img {
        height: 260px;
      }

      .featured-banner-caption {
        align-items: flex-start;
        flex-direction: column;
      }

      .experience-badge {
        left: 16px;
        bottom: 18px;
        width: 128px;
        height: 128px;
      }

      .experience-badge strong {
        font-size: 2.35rem;
      }

      .testimonial-slide {
        text-align: center;
      }

      .client-photo {
        margin: 0 auto;
      }

      .slider-controls {
        align-items: stretch;
      }

      .slider-dots {
        order: -1;
      }

      .logo-image {
        width: 48px;
        height: 48px;
      }

      .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 10px 12px;
        font-size: 0.8rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }