
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:       #0D1F3C;
      --navy-mid:   #0a1628;
      --navy-light: #122a52;
      --gold:       #c9a84c;
      --gold-light: #e6c97a;
      --cream:      #f5f0e8;
      --white:      #ffffff;
      --gray:       #8a98b0;
      --wa-green:   #25D366;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--navy);
      color: var(--cream);
      overflow-x: hidden;
    }

    /* ─── SCROLLBAR ─────────────────────────────── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--navy); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* --- Barra de navegação --- */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%;
      height: 72px;
      background: rgba(10, 22, 40, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,168,76,0.15);
      transition: background .3s;
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.4rem;
      color: var(--gold);
      letter-spacing: .08em;
      text-decoration: none;
    }

    .nav-logo span { color: var(--white); }

    .nav-links { display: flex; gap: 2rem; list-style: none; }

    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .85rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--gray);
      text-decoration: none;
      transition: color .2s;
    }

    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      background: var(--gold);
      color: var(--navy) !important;
      padding: .45rem 1.2rem;
      border-radius: 2px;
      font-weight: 700 !important;
      font-size: .82rem !important;
      letter-spacing: .12em;
    }

    .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

    /* ─── HERO ──────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 70vh;
      display: flex; align-items: center;
      padding: 0 5%;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(135deg, rgba(10,22,40,.65) 45%, rgba(12,26,52,.7) 100%),
        url('assets/banner.png') 80% 25% / 35% no-repeat; /* Ajustado de center para 80% */
    }

    /* diagonal stripe accent */
    .hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 60px,
        rgba(201,168,76,.025) 60px,
        rgba(201,168,76,.025) 61px
      );
    }

    .hero-content {
      position: relative; z-index: 2;
      max-width: 640px;
      animation: fadeUp .9s ease both;
    }


    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 7vw, 5.5rem);
      font-weight: 900;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--gold);
    }

    .hero p {
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--white);
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 2.5rem;
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: .7rem;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      padding: .9rem 3.5rem;
      border-radius: 2px;
      text-decoration: none;
      border: none; cursor: pointer;
      transition: background .2s, transform .15s;
      box-shadow: 0 4px 24px rgba(201,168,76,.35);
    }

    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

    .btn-outline {
      display: inline-flex; align-items: center; gap: .7rem;
      background: transparent;
      color: var(--cream);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: .9rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      padding: .85rem 2rem;
      border-radius: 2px;
      border: 1px solid rgba(201,168,76,.4);
      text-decoration: none;
      cursor: pointer;
      transition: border-color .2s, color .2s;
    }

    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

    /* floating badge */
    .hero-badge {
      position: absolute; right: 6%; bottom: 12%;
      width: 120px; height: 120px;
      border: 1px solid rgba(201,168,76,.4);
      border-radius: 50%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center;
      z-index: 2;
      animation: spin-slow 20s linear infinite;
    }

    .hero-badge-inner {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }

    .hero-badge-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .6rem;
      letter-spacing: .2em;
      color: var(--gray);
      text-transform: uppercase;
    }

    @keyframes spin-slow { to { transform: rotate(360deg); } }

    /* ─── SECTION COMMON ────────────────────────── */
    section { padding: 100px 5%; }

    .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .78rem;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .8rem;
      display: flex; align-items: center; gap: .6rem;
    }

    .section-label::before {
      content: '';
      display: inline-block;
      width: 28px; height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .section-desc {
      color: var(--white);
      font-weight: 300;
      line-height: 1.75;
      max-width: 520px;
      text-align: justify;
    }

    .divider {
      width: 48px; height: 3px;
      background: var(--gold);
      margin: 1.2rem 0 2rem;
    }

    /* ─── ABOUT ─────────────────────────────────── */
    .about {
      background: var(--navy-mid);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-img-wrap {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .about-img-wrap img {
      width: 90%;
      aspect-ratio: 1;
      object-fit: cover;
      border-radius: 2px;
      display: block;
    }

    .about-img-wrap::before {
      content: "";
      position: absolute;
      width: 90%;
      top: -16px;
      bottom: 16px;

      left: 46%;
      transform: translateX(-50%);

      border: 1px solid rgba(201,168,76,.25);
      border-radius: 2px;
      pointer-events: none;
    }

    /* ─── SERVICES ───────────────────────────────── */
    .services { background: var(--navy); }

    .services-header { text-align: center; margin-bottom: 4rem; }

    .services-header .section-label,
    .services-header .divider { margin-left: auto; margin-right: auto; }

    .services-header .section-label::before { display: none; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5px;
      background: rgba(201,168,76,.12);
      border: 1px solid rgba(201,168,76,.12);
    }

    .service-card {
      background: var(--navy);
      padding: 2.5rem 2rem;
      transition: background .25s;
      cursor: default;
    }

    .service-card:hover { background: var(--navy-light); }

    .service-icon {
      font-size: 1.8rem;
      margin-bottom: 1.2rem;
    }

    .service-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      color: var(--white);
      margin-bottom: .5rem;
    }

    .service-desc {
      font-size: .88rem;
      color: var(--gray);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .service-price {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: .05em;
    }

    /* ─── GALERIA ────────────────────────────────── */
    .gallery { background: #0D1F3C; }

    .gallery-header { margin-bottom: 3rem; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto auto;
      gap: 8px;
    }

    .gallery-item {
      overflow: hidden;
      border-radius: 2px;
      cursor: pointer;
    }

    .gallery-item:first-child {
      grid-column: span 1;
      grid-row: span 1;
    }

    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
      aspect-ratio: 4/3;
    }

    .gallery-item:first-child img { aspect-ratio: unset; height: 100%; }

    .gallery-item:hover img { transform: scale(1.05); }

    /* ─── WHATSAPP FLOATING ──────────────────────── */
    .wa-float {
      position: fixed;
      bottom: 2rem; right: 2rem;
      z-index: 200;
      display: flex; align-items: center; gap: .8rem;
      background: var(--wa-green);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .9rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .85rem 1.5rem;
      border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 6px 30px rgba(37,211,102,.4);
      transition: transform .2s, box-shadow .2s;
      animation: pulse-wa 2.5s ease infinite;
    }

    .wa-float:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 40px rgba(37,211,102,.55);
    }

    .wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }

    @keyframes pulse-wa {
      0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,.4); }
      50%       { box-shadow: 0 6px 40px rgba(37,211,102,.7); }
    }

    /* ─── CONTACT / MAP ──────────────────────────── */
    .contact {
      background: #0A1628;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: start;
    }

    .contact-info h2 { margin-bottom: .5rem; }

    .contact-list {
      list-style: none;
      margin-top: 2rem;
      display: flex; flex-direction: column; gap: 1.4rem;
    }

    .contact-list li {
      display: flex; align-items: flex-start; gap: 1rem;
    }

    .contact-list .icon {
      width: 40px; height: 40px;
      border: 1px solid rgba(201,168,76,.3);
      border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 1.1rem;
    }

    .contact-list .text strong {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .75rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .2rem;
    }

    .contact-list .text span {
      font-size: .95rem;
      color: var(--gray);
    }

    .map-wrap {
      position: relative;
      border-radius: 2px;
      overflow: hidden;
      border: 1px solid rgba(201,168,76,.2);
      box-shadow: 0 20px 60px rgba(0,0,0,.5);
    }

    .map-wrap iframe {
      display: block;
      width: 100%;
      height: 420px;
      border: 0;
      filter: grayscale(25%) contrast(1.05);
    }

    /* ─── FOOTER ─────────────────────────────────── */
    footer {
      background: #060e1c;
      padding: 3rem 5% 2rem;
      display: flex; flex-wrap: wrap;
      align-items: center; justify-content: space-between;
      gap: 1.5rem;
      border-top: 1px solid rgba(201,168,76,.1);
    }

    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.5rem;
      color: var(--gold);
    }

    .footer-logo span { color: var(--white); }

    footer p {
      font-size: .82rem;
      color: var(--gray);
    }

    .footer-info {
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: center;
    }

    .footer-dev {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .footer-dev a {
      color: var(--gold);
      text-decoration: none;
      font-size: .82rem;
    }

    .footer-dev a:hover {
      text-decoration: underline;
    }

    .footer-social { display: flex; gap: 1rem; }

    .social-link {
      width: 38px; height: 38px;
      border: 1px solid rgba(201,168,76,.25);
      border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      color: var(--gray);
      text-decoration: none;
      font-size: 1.1rem;
      transition: border-color .2s, color .2s;
    }

    .social-link:hover { border-color: var(--gold); color: var(--gold); }

    /* ─── ANIMATIONS ─────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── VIDEO ─────────────────────────────── */
    .video-container{
      display: flex;
      justify-content: center; /* Centraliza horizontalmente */
    }

    .video {
      width: 410px;
      height: 728px;
      aspect-ratio: 9 / 16;
      display: block;
      margin: 0 auto;
    }

    html,
    body {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
      overscroll-behavior-x: none;
      touch-action: pan-y;
    }

    /* ─── RESPONSIVE ─────────────────────────────── */
    @media (max-width: 900px) {
      .about, .contact { grid-template-columns: 1fr; gap: 3rem; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
      .nav-links { display: none; }
      .hero-badge { display: none; }
      .hero { min-height: 75vh; }
      .hero-bg {
        background:
          linear-gradient(135deg, rgba(10,22,40,.65) 45%, rgba(12,26,52,.7) 100%),
          url('assets/banner.png') 40% 17% / 85% no-repeat;
      }
      .video-section{ padding: 20px; }

      nav, footer {
        justify-content: center;
      }

      .hero-content{
        margin-top: 30%;
        text-align: center;
        width: fit-content;
      }

      .hero-text{
        margin-top: 4em;
      }
    
      .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-left: 0.4em}

      a.btn-primary{
        margin-top: 15%;
      }
    }

    @media (max-width: 500px) {
      .services-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:first-child { grid-column: span 1; }
    }

    