/* Paleta de Cores Personalizada para 15 Anos da Alicia */
:root {
  /* Cores Principais do Tema */
  --color-dark-purple: #4a0e6b;
  --color-main-purple: #7b24a6;
  --color-primary-gradient-start: #7b24a6;
  --color-primary-gradient-end: #4a0e6b;
  --color-text-dark: #2c3e50; /* Texto Escuro/Títulos */
  --color-text-light: #ffffff; /* Texto Claro */
  --color-background-light: #ffffff; /* Fundo de Cards Internos */
}

/* configurações gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--color-text-dark);
  overflow-x: hidden;
  /* Fundo ÚNICO e CONTÍNUO para toda a página */
  background: var(--color-dark-purple);
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* Aplicando o Fundo Contínuo e Compactando o Espaçamento Vertical */
.hero,
.about,
.details,
.gifts,
.gallery,
.confirmation {
  background: transparent;
  position: relative;
  overflow: hidden;
  color: var(--color-text-light);
  padding: 4rem 0; /* Padding padrão para desktop */
}

/* Efeito de Partículas aplicado a todas as seções */
.hero::before,
.about::before,
.details::before,
.gifts::before,
.gallery::before,
.confirmation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  animation: none;
  opacity: 0;
  z-index: 0;
}

/* Garantir que o conteúdo fique acima do fundo */
.hero > *,
.about > *,
.details > *,
.gifts > *,
.gallery > *,
.confirmation > *,
.container {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tipografia */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-text-light);
  position: relative;
  animation: fadeInUp 1s ease-out;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--color-main-purple);
  border-radius: 2px;
}

/* Cabeçalho */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 5px;
  border-radius: 10px;
  background: #ffffff;
  border: 1.5px solid var(--color-main-purple);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.08);
}

.logo img {
  height: 24px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--color-text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  position: relative;
}

.nav-menu a:hover {
  background: var(--color-main-purple);
  color: white;
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: var(--color-main-purple);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ======================================================= */
/* SEÇÃO PRINCIPAL - HERO - CONFIGURAÇÃO DESKTOP */
/* ======================================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--color-text-light);
}

.hero-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background:
    radial-gradient(
        circle at top left,
        rgba(123, 36, 166, 0.25),
        transparent 55%
      )
      no-repeat,
    linear-gradient(to bottom, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.55));
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  display: grid; /* Layout de Grid para o Desktop */
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  color: var(--color-text-light);
  animation: fadeInLeft 1s ease-out;
}

.hero-title {
  font-family: "Playfair Display", serif;
  margin-bottom: 2rem;
}

.title-line {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 0.5rem;
  animation: fadeIn 1s ease-out 0.5s both;
  text-shadow: none;
}

.title-main {
  display: block;
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.9;
  color: var(--color-text-light);
}

.title-subtitle {
  display: block;
  font-size: 2rem;
  font-weight: 200;
  opacity: 0.8;
  margin-top: 1rem;
  font-family: "Playfair Display", serif;
  animation: fadeIn 1s ease-out 1s both;
  text-shadow: none;
}

.hero-description {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  line-height: 1.8;
  animation: fadeIn 1s ease-out 1.2s both;
  color: var(--color-text-light);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 1.5s both;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-main-purple), #ff6bb0);
  color: white;
  box-shadow: 0 10px 30px rgba(180, 90, 180, 0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(180, 90, 180, 0.6);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--color-main-purple);
  transform: translateY(-3px);
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
}

/* === RECRIAÇÃO DOS ELEMENTOS DA IMAGEM CIRCULAR PARA O DESKTOP === */

/* Wrapper da Imagem (Para layout 1fr 1fr no desktop) */
.hero-content .hero-text + div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out;
}

/* O Placeholder que era o '.hero-image .image-placeholder' */
.hero-content .hero-text + div > div {
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  font-weight: 600;
  border: 3px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  animation: none;
}

/* A Imagem dentro do Placeholder */
.hero-content .hero-text + div > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  object-position: center center;
}
/* ======================================================= */

.image-placeholder.small {
  width: 200px;
  height: 140px;
  border-radius: 10px;
  background: var(--color-background-light);
  border: 1px solid #ddd;
}

.image-placeholder.gallery-img {
  width: 100%;
  height: 250px;
  border-radius: 15px;
}

/* Segunda Seção  */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.about-text.animate {
  opacity: 1;
  transform: translateX(0);
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  background: var(--color-background-light); /* Fundo branco para contraste */
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex: 1;
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-main-purple);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-dark);
  font-weight: 500;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.polaroid {
  background: var(
    --color-background-light
  ); /* Mantidas em branco para o efeito "foto" */
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: rotate(-5deg);
  transition: all 0.3s ease;
  opacity: 0;
  transform: rotate(-5deg) translateY(30px);
}

.polaroid.animate {
  opacity: 1;
  transform: rotate(-5deg) translateY(0);
}

.polaroid-2 {
  transform: rotate(8deg);
  margin-top: 2rem;
}

.polaroid-2.animate {
  transform: rotate(8deg) translateY(0);
}

.polaroid:hover {
  transform: rotate(0deg) translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.polaroid-text {
  text-align: center;
  margin-top: 1rem;
  font-family: "Playfair Display", serif;
  color: var(--color-text-dark);
  font-style: italic;
}

/* SEÇÃO DOS DETALHES DA FESTA */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.detail-card {
  background: var(--color-dark-purple);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  color: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.detail-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.detail-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.detail-card p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.detail-extra {
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: italic;
}

/* Seção de Lista de Presentes */
.gifts-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.gifts-intro p {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

.gift-store {
  background: var(--color-background-light); /* Card branco para destacar */
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gift-store:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--color-main-purple);
}

.store-logo {
  width: 80px;
  height: 80px;
  background: var(--color-main-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: white;
}

.gift-store h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

.gift-store p {
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.gift-examples {
  background: #f0f0f0;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.gift-examples h4 {
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.gift-examples ul {
  list-style: none;
  padding: 0;
}

.gift-examples li {
  padding: 0.3rem 0;
  color: #5a6c7d;
}

.gift-examples li::before {
  content: "";
  margin-right: 0;
  color: var(--color-primary-gradient-start);
}

.store-button {
  background: var(--color-main-purple);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  line-height: 1.2;
  max-width: 270px;
  width: auto;
  margin: 0.5rem auto 0;
}
/* ======================================================= */
/* AJUSTES PARA O NOVO LAYOUT PIX (ACIMA DA GRADE) */
/* ======================================================= */

.pix-block-container {
  display: flex; /* Permite centralizar o card */
  justify-content: center;
  /* AUMENTADO O ESPAÇAMENTO PARA SEPARAR DAS LOJAS ABAIXO */
  margin-bottom: 5rem;
}
/* ... restante do seu código CSS para .pix-card ... */
/* ======================================================= */
/* ESTILOS PARA QR CODE DENTRO DO CARTÃO PIX */
/* ======================================================= */

.pix-qrcode-area {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

.qrcode-placeholder {
  width: 180px; /* Tamanho fixo para o placeholder do QR Code */
  height: 180px;
  padding: 10px;
  background: white;
  border: 3px solid var(--color-main-purple);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex; /* Para centralizar a imagem dentro do placeholder */
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pix-qr-img {
  width: 100%; /* A imagem preenche o placeholder */
  height: 100%;
  object-fit: contain;
}

/* Ajuste nos dados para dar espaço ao QR Code */
.gift-store.pix-card .gift-examples {
  margin-top: 2rem; /* Adiciona espaço acima dos dados */
}

/* Seção Galeria de Fotos */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.9);
}

.gallery-item.animate {
  opacity: 1;
  transform: scale(1);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--color-text-light);
  font-size: 1.2rem;
  font-weight: bold;
}

/* Seção da Confirmação  */
.confirmation-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.confirmation-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--color-text-light);
}

.confirmation-form .form-group {
  margin-bottom: 1.5rem;
}

.confirmation-form input,
.confirmation-form select,
.confirmation-form textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid var(--color-main-purple);
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text-dark);
}

.confirmation-form input::placeholder,
.confirmation-form textarea::placeholder {
  color: var(--color-text-dark);
}

.confirmation-form input:focus,
.confirmation-form select:focus,
.confirmation-form textarea:focus {
  box-shadow: 0 0 0 3px var(--color-primary-gradient-start);
}

.confirmation-form textarea {
  border-radius: 20px;
  resize: vertical;
}

.important-info-box {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid var(--color-main-purple);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 3rem; /* Adiciona espaçamento acima do bloco */
  margin-bottom: 4rem;
  color: var(--color-text-light);
  box-shadow: none;
}

.important-info-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}

.important-info-box ul {
  list-style: none;
  padding: 0;
  text-align: center;
  font-size: 1.15rem;
  line-height: 2.2;
}

.important-info-box li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 500;
}

.important-info-box li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-main-purple);
  font-size: 0.9em;
}

/* Estilo para a seção Dúvidas */
.contact-info {
  margin-top: 4rem;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
  font-weight: 600;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  /* Espaço para o botão WhatsApp que fica centralizado */
  margin-bottom: 2rem;
}

/* Estilo para os botões de Telefone e E-mail (o formato pílula) */
.btn-contact-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  /* Fundo discreto e borda de destaque */
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-main-purple);
  color: var(--color-text-light);
}

.btn-contact-pill i {
  margin-right: 0.5rem;
  color: var(--color-text-light);
}

.btn-contact-pill:hover {
  background: var(--color-main-purple);
  color: white;
  transform: translateY(-3px);
  box-shadow: none;
}

/* Monograma decorativo na Hero */
.monogram-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  padding: 3px 5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(123, 36, 166, 0.6);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);
}

.monogram-badge img {
  width: 96px;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .monogram-badge img {
    width: 84px;
    height: auto;
  }
}

/* Estilo específico para o botão WhatsApp que fica sozinho */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  /* Cor verde WhatsApp para autenticidade */
  background: #25d366;
  color: white;
  margin-top: 1rem;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

/* Footer (Fundo de cor tema) */
.footer {
  background: var(--color-dark-purple);
  padding: 3rem 0;
  color: var(--color-text-light);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
}

.footer-text h3 {
  color: var(--color-text-light);
  font-size: 1.8rem;
}

.footer-text p {
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  color: white;
  background: var(--color-main-purple);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes sparkleMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-20px) translateY(-20px);
  }
}

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

@keyframes glow {
  from {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
  to {
    text-shadow:
      0 0 50px rgba(255, 107, 157, 0.8),
      0 0 80px rgba(255, 154, 86, 0.6);
    transform: scale(1.02);
  }
}

/* Media Queries */
@media (max-width: 992px) {
  /* Layout para tablets/telas médias */
  .hero-content,
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Oculta a imagem circular no layout de 1 coluna em telas médias/pequenas */
  .hero-content .hero-text + div {
    display: none;
  }

  .about-image {
    flex-direction: column;
    align-items: center;
  }
  .polaroid-2 {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  /* CORREÇÕES PARA MOBILE */

  /* Container e Navegação */
  .container {
    padding: 0 1rem;
  }
  .nav {
    padding: 1rem 1rem;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid #ddd;
    padding: 1rem 0;
  }
  .nav-menu.active {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }

  /* ======================================================= */
  /* NOVO LAYOUT DE CAPA (IMAGEM DE FUNDO) */
  /* ======================================================= */

  .hero {
    min-height: 100vh;
    /* IMAGEM DE FUNDO - OCUPA A TELA TODA */
    background: url("WhatsApp\ Image\ 2025-10-06\ at\ 17.52.51.jpeg") no-repeat
      center center / cover;
    background-attachment: scroll;
    /* REMOÇÃO DA DIVISÓRIA */
    padding: 0; /* Zera todo o padding */

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero::before {
    opacity: 0.65;
    background:
      radial-gradient(circle at top, rgba(0, 0, 0, 0.35) 0%, transparent 45%),
      linear-gradient(
        to bottom,
        rgba(74, 14, 107, 0.85) 0%,
        rgba(74, 14, 107, 0.95) 60%,
        rgba(74, 14, 107, 1) 100%
      );
  }

  .hero-overlay {
    display: block;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      var(--color-dark-purple) 100%
    );
  }

  .hero-content {
    /* Layout Flex para centralizar VERTICAL E HORIZONTALMENTE */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding: 0 1.5rem;
    gap: 1.5rem;
  }

  /* Oculta o wrapper da imagem circular (que é o segundo item do grid no desktop) */
  .hero-content .hero-text + div {
    display: none;
  }

  /* Títulos Menores e com Sombra para Legibilidade */
  /* Títulos Maiores e com Sombra para Legibilidade */
  .title-line {
    /* Aumentado de 1.2rem para 1.5rem (Destaque para "Você está convidado para") */
    font-size: 1.5rem;
    text-shadow: none;
  }

  .title-main {
    /* Mantido o tamanho grande para o nome */
    font-size: 4rem;
  }

  .title-subtitle {
    /* (Destaque para "15 Anos") */
    font-size: 2rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  }

  .hero-description {
    margin-bottom: 2rem;
    text-shadow: none;
  }
  .hero-buttons {
    justify-content: center;
  }

  /* Outras Seções: GARANTINDO A FUSÃO DEGRADÊ */
  /* Todas as seções devem ter o background final do degradê */
  .about,
  .details,
  .gifts,
  .gallery,
  .confirmation {
    background: var(--color-dark-purple); /* Cor sólida para fusão perfeita */
    padding-top: 0; /* Remove padding superior para encaixe */
  }

  .about-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .polaroid {
    transform: rotate(0deg) !important;
  }

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

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
