:root {
  --bg: #fff4f7;
  --rose: #d41f6f;
  --rose-2: #ffccde;
  --rose-dark: #bc0c51;
  --nude: #fde1c8;
  --white: #ffffff;
  --gold: #e1b35c;
  --text-dark: #28141a;
  --whatsapp-green: #1ebf5f;
  --shadow-soft: 0 16px 30px rgba(40, 22, 27, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  padding: 2rem 1rem 3rem;
}

main {
  width: min(1200px, 100%);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

section {
  width: 100%;
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.95), transparent),
    linear-gradient(130deg, rgba(212, 31, 111, 0.95), rgba(241, 168, 132, 0.85));
  border-radius: 40px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero__portrait {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px rgba(63, 43, 47, 0.25);
}

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

.hero__content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin: 0;
}

.hero__eyebrow {
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  color: var(--rose-dark);
}

.hero__title {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin: 0.6rem 0;
  font-weight: 500;
}

.hero__subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero__urgency {
  margin-top: 0;
  font-weight: 500;
  color: rgba(63, 43, 47, 0.85);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--whatsapp-green);
  color: #fff;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.35);
}

.whatsapp-button--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--whatsapp-green);
  color: #fff;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 212, 226, 0.8));
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  padding-bottom: 2.5rem;
  border: 1px solid rgba(212, 31, 111, 0.2);
}

.section-header {
  margin-bottom: 1.8rem;
  text-align: center;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.4rem;
  font-size: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 24px;
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border: 3px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 30px rgba(212, 31, 111, 0.18);
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.gallery-grid img {
  cursor: pointer;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(19, 19, 19, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(4px);
  z-index: 20;
}

.gallery-modal.active {
  display: flex;
}

.gallery-modal img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.gallery-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  border: none;
  background: transparent;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.gallery-modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 10;
}

.gallery-modal__arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

.gallery-modal__arrow--left {
  left: 1rem;
}

.gallery-modal__arrow--right {
  right: 1rem;
}

.mid-cta {
  text-align: center;
  background: linear-gradient(120deg, rgba(212, 31, 111, 0.9), rgba(255, 212, 226, 0.95));
  border-radius: 32px;
  margin: 2rem 0;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.mid-cta p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.services {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(254, 226, 202, 0.9));
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 31, 111, 0.12);
}

.services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
  padding: 1.8rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(212, 31, 111, 0.1);
  box-shadow: 0 10px 24px rgba(212, 31, 111, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(212, 31, 111, 0.2);
}

.service-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.testimonials {
  margin-top: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.testimonial {
  background: rgba(255, 220, 229, 0.9);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  min-height: 180px;
  border: 1px solid rgba(212, 31, 111, 0.1);
}

.testimonial p {
  margin-top: 0;
  font-style: italic;
}

.testimonial span {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

.final-cta {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 171, 128, 0.85));
  border-radius: 40px;
  box-shadow: var(--shadow-soft);
  padding: 3rem;
  margin: 2rem 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  text-align: center;
}

.final-cta__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: 2px solid rgba(63, 43, 47, 0.3);
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(63, 43, 47, 0.25);
}

.footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
}

.footer__name {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin: 0;
}

.footer__tagline {
  margin: 0.4rem 0 0;
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 1.5rem;
  }

  .final-cta {
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  body {
    padding: 1.25rem 0.75rem 2rem;
  }

  main {
    gap: 1.25rem;
  }

  section {
    padding: 2.3rem 1rem;
    border-radius: 28px;
  }

  .hero {
    padding: 3rem 1.25rem;
    border-radius: 32px;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .gallery-grid,
  .services-grid,
  .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .gallery-grid img {
    border-radius: 18px;
  }

  .final-cta {
    padding: 2.25rem 1.25rem;
  }

  .final-cta__actions {
    flex-direction: column;
  }

  .mid-cta,
  .gallery-section,
  .services {
    padding: 2rem 1rem;
  }

  .whatsapp-button,
  .instagram-button {
    width: 100%;
    justify-content: center;
  }
}
