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

  :root {
    --gold: #C8963E;
    --gold-light: #E8B96A;
    --gold-pale: #F5E6C8;
    --black: #0A0A08;
    --dark: #121210;
    --dark2: #1C1C18;
    --cream: #F7F2E8;
    --cream2: #EDE4D0;
    --text-muted: #8A8270;
    --wa: #25D366;
  }

  html { scroll-behavior: smooth; }

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

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 4rem;
    background: linear-gradient(to bottom, rgba(10,10,8,0.95) 0%, transparent 100%);
    backdrop-filter: blur(8px);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 900; letter-spacing: 0.08em;
    color: var(--gold);
    text-decoration: none;
  }
  .nav-logo span { color: var(--cream); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    color: var(--cream2); text-decoration: none;
    font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold); color: var(--black);
    border: none; padding: 0.65rem 1.5rem;
    font-family: 'DM Sans', sans-serif; font-size: 0.82rem;
    font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background 0.3s;
  }
  .nav-cta:hover { background: var(--gold-light); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 70% 50%, rgba(200,150,62,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200,150,62,0.06) 0%, transparent 50%);
  }
  .hero-pattern {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: repeating-linear-gradient(
      45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%
    );
    background-size: 20px 20px;
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 8rem 4rem 4rem 4rem; position: relative; z-index: 2;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 2rem;
  }
  .hero-tag::before {
    content: ''; width: 2rem; height: 1px; background: var(--gold);
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 900; line-height: 1;
    margin-bottom: 1.5rem;
  }
  .hero-title em {
    font-style: italic; color: var(--gold);
    display: block;
  }
  .hero-desc {
    font-size: 1.05rem; line-height: 1.8;
    color: var(--text-muted); max-width: 400px;
    margin-bottom: 3rem;
  }
  .hero-actions { display: flex; gap: 1rem; align-items: center; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--gold); color: var(--black);
    padding: 1rem 2rem; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
    font-weight: 600; letter-spacing: 0.05em;
    text-decoration: none;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: all 0.3s; white-space: nowrap;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-primary svg { width: 20px; height: 20px; flex-shrink: 0; }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: var(--cream2);
    padding: 1rem 1.5rem; border: 1px solid rgba(200,150,62,0.3);
    cursor: pointer; font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; text-decoration: none;
    transition: all 0.3s;
  }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
  .hero-right {
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-image-wrapper {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #1a1209 0%, #0d0d0a 100%);
  }
  .hero-image-art {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-svg-art {
    width: 100%; height: 100%;
    position: absolute; top: 0; left: 0;
  }
  .hero-overlay-text {
    position: absolute; bottom: 3rem; right: 3rem;
    text-align: right; z-index: 3;
  }
  .hero-overlay-text .big-num {
    font-family: 'Playfair Display', serif;
    font-size: 5rem; font-weight: 900;
    color: var(--gold); opacity: 0.2; line-height: 1;
  }
  .hero-overlay-text p {
    font-size: 0.75rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-muted);
  }
  .hero-stats {
    position: absolute; bottom: 3rem; left: 3rem;
    display: flex; gap: 2rem; z-index: 3;
  }
  .stat-item { text-align: left; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1;
  }
  .stat-label {
    font-size: 0.7rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--text-muted);
    margin-top: 0.25rem;
  }

  /* ── MARQUEE ── */
  .marquee-strip {
    background: var(--gold); padding: 0.85rem 0;
    overflow: hidden; white-space: nowrap;
  }
  .marquee-inner { display: inline-flex; animation: marquee 20s linear infinite; }
  .marquee-item {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem; font-style: italic;
    color: var(--black); margin: 0 2.5rem;
  }
  .marquee-dot { color: rgba(10,10,8,0.4); margin: 0 0.5rem; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── SERVICES ── */
  .services { padding: 8rem 4rem; background: var(--dark); }
  .section-header { text-align: center; margin-bottom: 5rem; }
  .section-tag {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
  }
  .section-tag::before, .section-tag::after {
    content: ''; width: 2rem; height: 1px; background: var(--gold);
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900; line-height: 1.1;
  }
  .section-title em { color: var(--gold); font-style: italic; }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5px; background: rgba(200,150,62,0.1);
  }
  .service-card {
    background: var(--dark2); padding: 3rem 2.5rem;
    position: relative; overflow: hidden;
    transition: all 0.4s; cursor: pointer; 
  }
  .service-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0); transition: transform 0.4s;
  }
  .service-card:hover { background: #1e1e1a; }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 48px; height: 48px; margin-bottom: 1.5rem;
    color: var(--gold); opacity: 0.8;
  }
  .service-num {
    position: absolute; top: 2rem; right: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; font-weight: 900;
    color: rgba(200,150,62,0.07); line-height: 1;
    pointer-events: none;
  }
  .service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700;
    margin-bottom: 0.75rem; color: var(--cream);
  }
  .service-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
  .service-price {
    font-size: 0.8rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--gold);
    display: flex; align-items: center; gap: 0.5rem;
  }
  .service-price strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 700;
  }
  .service-book {
    margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    border-bottom: 1px solid rgba(200,150,62,0.3);
    padding-bottom: 2px; transition: border-color 0.3s;
  }
  .service-book:hover { border-color: var(--gold); }

  /* ── ABOUT ── */
  .about {
    padding: 8rem 4rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
    background: var(--black);
  }
  .about-visual {
    position: relative; height: 600px;
  }
  .about-img-box {
    position: absolute;
    height: 120%; 
    margin-bottom: 2em;
    background: transparent;
    
  }
  .about-img-box.main { inset: 0 2rem 2rem 0; }
  .about-img-box.accent {
    width: 45%; height: 45%;
    bottom: -1rem; right: -1rem;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; text-align: center; padding: 2rem;
  }
  .about-accent-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; font-weight: 900; color: var(--black); line-height: 1;
  }
  .about-accent-text {
    font-size: 0.8rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(10,10,8,0.65);
  }
  .about-main-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }

  .about-main-inner img {
    width: 80%; height: auto;
    object-fit: cover; object-position: center;
    
  }


  .about-content .section-tag { justify-content: flex-start; }
  .about-content .section-tag::before { display: none; }
  .about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 3.5vw, 3.2rem);
    font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem;
  }
  .about-title em { color: var(--gold); font-style: italic; }
  .about-text { font-size: 1rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 2rem; }
  .about-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
  .about-feature { display: flex; align-items: flex-start; gap: 1rem; }
  .feature-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); margin-top: 0.45rem; flex-shrink: 0;
  }
  .feature-text { font-size: 0.95rem; color: var(--cream2); }

  /* ── GALLERY ── */
  .gallery { padding: 4rem 2rem; background: var(--dark); 
  overflow: hidden; /* ESSENCIAL: Esconde o excesso de fotos */
  width: 100%;}
  .gallery-grid {
    display: grid;
   display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
  }
  /* Suas classes de item */
.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 20px; /* Espaço entre as fotos */
  flex-shrink: 0;
}

/* Diferença entre normal e tall (opcional, ajustando a altura) */
.gallery-item.normal img {
  height: 500px;
  width: auto;
  object-fit: cover;
}

.gallery-item.tall img {
  height: 500px;
  width: auto;
  object-fit: cover;
}

/* Sua classe de legenda */
.gallery-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  padding: 10px;
  background-color: #C8963E;
  margin-top: 10px;
  color: #000;
  font-style: italic;
}

/* Animação que faz o truque do loop */
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-insta {
  width: 400px;
  text-align: center;
  margin: 26px;
  margin-left: 60px;
  
  text-decoration: none;
  padding: 10px;
  border-radius: 5px;
  background-color: #C8963E;
  transition: 0.5s;
}

.gallery-insta  a {
  color: #000;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.gallery-insta:hover {
  margin-top: 26px ;
  text-decoration: none;
  padding: 10px;
  border-radius: 5px;
  background-color: #886221;
}



  /* ── TESTIMONIALS ── */
  .testimonials { padding: 8rem 4rem; background: var(--black); }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 4rem;
  }
  .testimonial-card {
    background: var(--dark2); padding: 2.5rem;
    border: 1px solid rgba(200,150,62,0.1);
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
  }
  .testimonial-card:hover { border-color: rgba(200,150,62,0.3); transform: translateY(-4px); }
  .testimonial-stars {
    display: flex; gap: 0.3rem; margin-bottom: 1.5rem;
  }
  .star { color: var(--gold); font-size: 1rem; }
  .testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-style: italic;
    line-height: 1.7; color: var(--cream2); margin-bottom: 2rem;
  }
  .testimonial-author { display: flex; align-items: center; gap: 1rem; }
  .author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-weight: 700;
    color: var(--black); font-size: 0.9rem;
  }
  .author-name { font-weight: 600; font-size: 0.9rem; color: var(--cream); }
  .author-tag { font-size: 0.78rem; color: var(--text-muted); }
  .testimonial-quote {
    position: absolute; top: 2rem; right: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 4rem; color: rgba(200,150,62,0.08);
    line-height: 1; pointer-events: none;
  }

  /* ── BOOKING / CTA ── */
  .booking {
    padding: 8rem 4rem;
    background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
    position: relative; overflow: hidden;
    text-align: center;
  }
  .booking::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(200,150,62,0.08) 0%, transparent 70%);
  }
  .booking-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
  .booking-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900; line-height: 1; margin-bottom: 1.5rem;
  }
  .booking-title em { color: var(--gold); font-style: italic; display: block; }
  .booking-text { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 3rem; line-height: 1.8; }
  .booking-btn {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: var(--wa); color: #fff;
    padding: 1.2rem 3rem; font-family: 'DM Sans', sans-serif;
    font-size: 1rem; font-weight: 600; letter-spacing: 0.05em;
    text-decoration: none; border: none; cursor: pointer;
    clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
    transition: all 0.3s; box-shadow: 0 8px 32px rgba(37,211,102,0.25);
    font-family: 'DM Sans', sans-serif;
  }
  .booking-btn:hover {
    background: #20b856; transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.35);
  }
  .booking-btn svg { width: 24px; height: 24px; }
  .booking-note { margin-top: 1.5rem; font-size: 0.8rem; color: var(--text-muted); }

  /* ── FOOTER ── */
  footer {
    background: var(--black); padding: 4rem;
    border-top: 1px solid rgba(200,150,62,0.1);
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
  .footer-brand .nav-logo { font-size: 1.8rem; }
  .footer-brand p { font-size: 0.9rem; color: var(--text-muted); margin-top: 1rem; line-height: 1.7; }
  .footer-col h4 {
    font-size: 0.75rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.5rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
  .footer-col a {
    color: var(--text-muted); text-decoration: none;
    font-size: 0.9rem; transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    padding: 2rem 4rem;
    border-top: 1px solid rgba(200,150,62,0.05);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: var(--text-muted);
    background: var(--black);
  }
  .footer-bottom span { color: var(--gold); }

  /* ── FLOATING WA ── */
  .wa-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--wa); display: flex; align-items: center; justify-content: center;
    text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s; animation: pulse-wa 2s ease infinite;
  }
  .wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
  .wa-float svg { width: 28px; height: 28px; color: #fff; }
  @keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
  }

  /* ── ANIMATIONS ── */
  .fade-up {
    opacity: 0; transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
  }
  .fade-up:nth-child(1) { animation-delay: 0.1s; }
  .fade-up:nth-child(2) { animation-delay: 0.25s; }
  .fade-up:nth-child(3) { animation-delay: 0.4s; }
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 7rem 1.5rem 4rem; }
    .services { padding: 4rem 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .about { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
    .about-visual { height: 300px; }
    .gallery { padding: 4rem 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.tall { grid-row: auto; }
    .testimonials { padding: 4rem 1.5rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .booking { padding: 5rem 1.5rem; }
    footer { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
    .footer-bottom { padding: 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
  }
/* ===== RESPONSIVIDADE EXTRA SEM ALTERAR O ORIGINAL ===== */

/* Tablets grandes */
@media (max-width: 1200px) {
  .hero-left,
  .services,
  .about,
  .gallery,
  .testimonials,
  .booking {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-stats {
    position: static;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-overlay-text {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.normal,
  .gallery-item.tall {
    min-height: 240px;
  }
}

/* Celulares */
@media (max-width: 600px) {
  html, body {
    overflow-x: hidden;
  }

  nav {
    padding: 1rem;
  }

  .hero-left,
  .services,
  .about,
  .gallery,
  .testimonials,
  .booking,
  footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-title,
  .section-title,
  .about-title,
  .booking-title {
    line-height: 1.1;
    word-break: break-word;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .section-title,
  .about-title,
  .booking-title {
    font-size: 2rem;
  }

  .hero-tag,
  .section-tag {
    letter-spacing: 0.1em;
    font-size: 0.68rem;
  }

  .service-card,
  .testimonial-card {
    padding: 2rem 1.2rem;
  }

  .service-num {
    font-size: 2.5rem;
    top: 1rem;
    right: 1rem;
  }

  .booking-btn,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .wa-float {
    width: 52px;
    height: 52px;
    bottom: 1rem;
    right: 1rem;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}

/* Telas muito pequenas */
@media (max-width: 380px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title,
  .about-title,
  .booking-title {
    font-size: 1.7rem;
  }

  .nav-logo {
    font-size: 1.1rem;
  }
}