
:root {
  --bg: #f7f2ec;
  --surface: #fffaf4;
  --surface-alt: #f6f0ea;
  --sand: #efe6da;
  --rose: #d7b4b1;
  --rose-light: #F4E5E2;
  --champagne: #d8c1a3;
  --ink: #2d2a29;
  --ink-soft: #3C1C19;
  --muted: #6b625c;
  --line: rgba(45, 42, 41, 0.1);
  --white: #fff;
  --shadow-sm: 0 2px 8px rgba(45, 42, 41, 0.06);
  --shadow: 0 12px 40px rgba(45, 42, 41, 0.1);
  --shadow-lg: 0 20px 60px rgba(45, 42, 41, 0.14);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: "Lato", sans-serif;
  --font-heading: "Playfair Display", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
p { margin: 0; }
figure { margin: 0; }
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.2;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-pill);
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.section { padding: 4rem 0; }
.section-header { margin-bottom: 2.5rem; }
.section-header.centered { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: var(--radius-pill);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
  line-height: 1.3;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { box-shadow: var(--shadow-lg); }

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

.btn-ghost-hero {
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
}
.btn-ghost-hero:hover { background: rgba(255,255,255,0.5); }

.btn-header-cta {
  display: none;
  background: var(--ink);
  color: var(--white);
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  gap: 0.4rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-header-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(247, 242, 236, 0.88);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo { display: flex; align-items: center; }
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 0;
}

.nav {
  display: none;
  gap: 1.3rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.nav a { position: relative; transition: color var(--transition); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: var(--rose);
  transition: width 0.3s ease;
}
.nav a:hover, .nav a:focus { color: var(--ink); }
.nav a:hover::after, .nav a:focus::after { width: 100%; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 60;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.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); }

.nav.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  top: 0;
  background: rgba(247, 242, 236, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 55;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 1.2rem;
}

.hero {
  position: relative;
  padding: 5.5rem 0 4rem;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(244, 229, 226, 0.95), rgba(247, 242, 236, 0.8)),
              url('assets/bolo-de-casamento-le-malu-hero.png');
  background-size: cover;
  background-position: center;
  filter: saturate(0.85);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 640px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-image {
  display: block;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-tag {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.trust-badge {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.trust-badge strong {
  color: var(--ink);
  font-size: 1rem;
}

.proof-bar {
  background: var(--white);
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.proof-item i {
  font-size: 1.5rem;
  color: var(--rose);
  flex-shrink: 0;
}
.proof-item strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--ink);
}
.proof-item span {
  font-size: 0.78rem;
  color: var(--muted);
}

.testimonials-section {
  background: var(--surface);
}

.testimonials-carousel {
  position: relative;
}

.testimonials-track-wrap {
  overflow: hidden;
  padding: 0.5rem 0;
  margin: -0.5rem 0;
}

.testimonials-track {
  display: flex;
  gap: 0.75rem;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: none;
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  text-align: center;
  opacity: 0.4;
  transform: scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-stars {
  color: #e5a100;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

.testimonial-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonials-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--sand);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.testimonials-dots button.active {
  background: var(--ink);
  transform: scale(1.3);
}

.process-section {
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 1.8rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--ink-soft);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}

.process-step h3 { margin-bottom: 0.5rem; }
.process-step p { color: var(--muted); font-size: 0.95rem; }

.process-arrow { display: none; }

.process-cta {
  text-align: center;
  margin-top: 2rem;
}

.features-section {
  background: var(--surface);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--rose-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.feature-icon i {
  font-size: 1.4rem;
  color: var(--ink-soft);
}

.feature-card h3 { margin-bottom: 0.3rem; }
.feature-card p { color: var(--muted); font-size: 0.92rem; }

.gallery-section {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  aspect-ratio: 1/1;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item--featured {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.gallery-cta p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.about-section {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.about-text .eyebrow { margin-bottom: 0.6rem; }
.about-text h2 { margin-bottom: 1rem; }
.about-text > p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.about-highlights {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.6rem;
}
.about-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.about-highlights i {
  color: var(--rose);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-images {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 400px;
}
.about-images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.faq-section {
  background: var(--bg);
}

.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow-sm); }

.faq-item summary {
  padding: 1.1rem 1.4rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  color: var(--ink);
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--ink-soft); }

.faq-item > p {
  padding: 0 1.4rem 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item > p a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.final-cta {
  padding-bottom: 5rem;
}

.cta-box {
  background: var(--ink);
  color: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  display: grid;
  gap: 2rem;
}

.cta-box .eyebrow { color: rgba(255,255,255,0.55); }
.cta-box h2 { color: var(--white); margin-top: 0.4rem; }
.cta-box .cta-content > p {
  margin-top: 0.6rem;
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
}

.btn-cta-final {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  color: var(--ink);
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-cta-final:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-hint {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.6rem;
}

.site-footer {
  padding: 3rem 0 1.5rem;
  background: #f3ece4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2rem;
  margin-bottom: 1.2rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.3rem;
  font-weight: 600;
}
.footer-address {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.footer-address a { text-decoration: underline; text-underline-offset: 2px; }

.site-footer .logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
}

.footer-grid h3 { margin-bottom: 0.8rem; font-size: 0.95rem; }
.footer-grid p { margin: 0.2rem 0; color: var(--muted); font-size: 0.88rem; }
.footer-grid a { color: var(--muted); transition: color var(--transition); }
.footer-grid a:hover { color: var(--ink); }

.footer-links { display: grid; gap: 0.4rem; }
.footer-links a { padding: 0.15rem 0; font-size: 0.9rem; }

.social-links { display: flex; gap: 0.8rem; margin-top: 0.8rem; }
.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(45,42,41,0.06);
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}
.social-links i { font-size: 1.2rem; }

.footer-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}
.footer-note a { font-weight: 700; }
.footer-note a:hover { color: var(--ink); }

.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 5.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  z-index: 40;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}

.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  background: rgba(247, 242, 236, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 0.7rem 1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-cta-bar.visible { transform: translateY(0); }

.btn-mobile-cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white);
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.25);
  transition: background var(--transition);
}
.btn-mobile-cta:hover { background: #22c55e; transform: none; }

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.25s ease;
}
.modal.active { display: flex; }

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: scaleIn 0.25s ease;
}
.modal-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.modal-close {
  position: absolute;
  top: -2.2rem;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: opacity var(--transition);
}
.modal-close:hover { opacity: 0.6; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 600px) {
  .gallery-grid {
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-images {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 900px) {
  .hamburger { display: none; }

  .nav {
    display: inline-flex;
  }

  .btn-header-cta { display: inline-flex; }

  .hero {
    padding: 7rem 0 5rem;
    min-height: 90vh;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-item--featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .process-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0.8rem;
    align-items: stretch;
  }
  .process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose);
    font-size: 1.4rem;
  }

  .about-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .about-images {
    min-height: 100%;
  }

  .cta-box {
    grid-template-columns: 1.4fr 1fr;
    text-align: left;
    padding: 3.5rem;
    align-items: center;
  }
  .cta-action { text-align: center; }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
  }
  .mobile-cta-bar { display: none; }

  .whatsapp-float {
    bottom: 1.6rem;
    right: 1.6rem;
  }
}

@media (max-width: 599px) {
  .hero { min-height: auto; padding: 4rem 0 3rem; }
  .hero-trust { flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1rem; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 3rem 0; }

  .about-images { min-height: 280px; }

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

@media (max-width: 899px) {
  .whatsapp-float {
    bottom: 5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
