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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #1a0004;
  color: #fff5f7;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #ffb3c1;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Topbar */
.topbar {
  background: #2b0006;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mm {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #ffccd5, #ff002b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.logo-text span {
  display: block;
  font-size: 12px;
  opacity: 0.7;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-link {
  font-size: 14px;
  text-decoration: none;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ff002b, #ff4d6d);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(255, 0, 60, 0.5);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 0 26px rgba(255, 0, 60, 0.75);
}

.btn-small {
  padding: 8px 16px;
  font-size: 13px;
  box-shadow: 0 0 12px rgba(255, 0, 60, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid #ff6b81;
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 0, 60, 0.12);
}

.btn-whats {
  position: relative;
  padding-left: 42px;
}

.btn-whats::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: stretch;
  color: #fff0f3;
  background:
    linear-gradient(135deg, rgba(26, 0, 4, 0.95), rgba(121, 0, 30, 0.9)),
    url('assets/background.png') center/cover no-repeat fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.16), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 32px;
  padding: 56px 0 72px;
}

.hero-text h1 {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-text h1 span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
}

.hero-subtitle {
  font-size: 14px;
  opacity: 0.95;
  margin-bottom: 14px;
}

.hero-desc {
  font-size: 15px;
  max-width: 520px;
  margin-bottom: 18px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-selo {
  font-size: 13px;
  opacity: 0.92;
}

.hero-photo-card {
  align-self: center;
  background: rgba(11, 0, 5, 0.9);
  border-radius: 24px;
  padding: 10px;
  box-shadow: 0 0 34px rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 204, 213, 0.25);
}

.hero-photo-card img {
  border-radius: 18px;
}

.hero-photo-label {
  padding: 8px 6px 4px;
  font-size: 12px;
  opacity: 0.9;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-alt {
  background: radial-gradient(circle at top, #3b000b, #170006);
}

.section h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.section-intro {
  max-width: 640px;
  font-size: 15px;
  opacity: 0.95;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 32px;
  align-items: flex-start;
}

.section-text p {
  margin-bottom: 12px;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 14px;
}

.bullets li + li {
  margin-top: 4px;
}

.section-card {
  background: rgba(30, 0, 8, 0.95);
  border-radius: 20px;
  padding: 20px 18px;
  border: 1px solid rgba(255, 153, 178, 0.28);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.75);
  font-size: 14px;
}

.section-card h3 {
  margin-top: 0;
}

.frase {
  font-style: italic;
  color: #ffccd5;
}

/* Cards de serviços */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.card {
  background: radial-gradient(circle at top left, #3c000b, #1a0004);
  border-radius: 18px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(255, 153, 178, 0.3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
  font-size: 14px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 17px;
}

.card p {
  margin-bottom: 10px;
}

.card-list {
  padding-left: 18px;
  margin: 0 0 10px;
}

.card-cta {
  font-size: 13px;
  text-decoration: none;
  color: #ffb3c1;
}

/* Galeria de fotos */
.fotos-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.foto-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 153, 178, 0.35);
  background: #120005;
}

.foto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foto-item.grande {
  grid-row: span 2;
}

.foto-item.grande img {
  min-height: 260px;
}

.texto-fotos {
  max-width: 720px;
}

.texto-fotos p {
  margin-bottom: 12px;
}

/* Etapas / consulta */
.etapas {
  margin: 12px 0 0;
  padding-left: 18px;
  font-size: 14px;
}

.etapas li + li {
  margin-top: 4px;
}

.contato-destaque a {
  color: #ffdce5;
  text-decoration: none;
}

/* FAQ */
.faq details {
  margin-bottom: 8px;
  background: #220008;
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 153, 178, 0.28);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  font-size: 14px;
  margin-top: 6px;
}

/* CTA final */
.cta-final {
  background: linear-gradient(135deg, #4b000f, #140006);
  padding: 44px 0 50px;
  border-top: 1px solid rgba(255, 153, 178, 0.25);
}

.cta-final-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 22px;
  align-items: center;
}

.cta-text p {
  margin-bottom: 10px;
  font-size: 14px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.cta-legenda {
  font-size: 13px;
  opacity: 0.9;
}

/* Footer */
footer {
  text-align: center;
  padding: 16px 12px 22px;
  font-size: 13px;
  background: #130005;
  border-top: 1px solid rgba(255, 153, 178, 0.2);
}

footer a {
  color: #ffb3c1;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Floating WhatsApp */
.floating-whats {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.85);
  z-index: 99;
}

/* Responsivo */
@media (max-width: 880px) {
  .hero-content,
  .section-grid,
  .cards-grid,
  .fotos-grid,
  .cta-final-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content {
    padding-top: 40px;
  }

  .hero-photo-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .cards-grid {
    gap: 16px;
  }

  .fotos-grid {
    grid-auto-rows: 180px;
  }

  .foto-item.grande img {
    min-height: 180px;
  }

  .topbar-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 520px) {
  .topbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-small {
    width: 100%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .floating-whats {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}
