/* --- Import Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,400&display=swap');

/* --- Reset básico --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'RockTwo';
  src: url('NoteraRegular.OTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body, html {
  font-family: 'Lato', sans-serif;
  color: #626C4A;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* --- Estilos do site original (mantidos para contexto) --- */

/* Navbar e Menu */
header {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 1400px;
  left: 0; 
  right: 0;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  z-index: 1000;
  height: 60px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1001;
}

.logo-img {
  height: 60px;
  width: auto;
}

.menu-toggle {
 display: block;
 font-size: 20px;
 background: none;
 border: none;
 color: #626C4A;
 cursor: pointer;
 z-index: 1002;
 transition: transform 0.3s ease, color 0.3s ease;
 margin: 0; 
 padding: 0; 
 line-height: 1;
}

.menu-toggle.active {
 color: white;
 transform: rotate(90deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(98, 108, 74, 0.95);
  display: flex;
  justify-content: center;
  align-items: flex-start; 
  padding-top: 130px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 999;
}

.nav-menu.active {
  transform: translateX(0);
}

/* Garante que o ícone do menu fique branco quando o menu está aberto */
header .menu-toggle.active {
  color: white;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.nav-menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 32px;
  transition: color 0.3s;
  display: block;
}

.nav-menu ul li a:hover {
  color: #d4af37;
}

body.menu-open {
  overflow: hidden;
}

/* Hero fixa */
.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url('hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 0;
}

.hero-background-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('fitas.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s linear;
}

.hero-text {
  position: relative;
  z-index: 1;
  color: #626C4A;
  text-align: center;
  opacity: 1;
  top: -300px;
  transition: none;
}

.hero-text h1 {
  font-family: 'RockTwo', serif;
  font-size: 90px;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-text p {
  font-family: 'Lato', sans-serif;
  font-size: 40px;
  color: #626C4A;
  margin-top: 0;
  letter-spacing: 2px;
  font-weight: 300;
}

/* Papel rasgado */
.papel-rasgado {
  position: relative;
  width: 100%;
  height: 150px;
  margin-top: 100vh;
  z-index: 2;
  transform: translateY(50px);
  opacity: 0;
  will-change: transform, opacity;
}

.papel-rasgado img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.5; /* Opacidade do papel rasgado */
}

/* ========================================
   EVENTO ROMÂNTICO SOFISTICADO (V2 FINAL)
   ======================================== */

.evento-romantico-v2 {
  min-height: 100vh;
  padding: 100px 20px;
  /* Fundo com opacidade do papel rasgado */
  background-color: rgba(255, 255, 255, 0.5); 
  position: relative;
  z-index: 1;
}

.evento-container-v2 {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* --- Header com Título --- */
.evento-header-v2 {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.decorative-line-v2 {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  max-width: 200px;
}

.evento-titulo-v2 {
  font-family: 'RockTwo', serif;
  font-size: 60px;
  color: #626C4A;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.3;
  max-width: 700px;
  text-align: center;
  position: relative;
}

/* --- Grid Principal (Fotos + Texto) --- */
.evento-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  /* Inverte a ordem visual para Fotos (esquerda) e Texto (direita) */
  direction: rtl; 
}

/* --- Coluna de Texto e CTA --- */
.evento-info-col {
  padding: 40px;
  background: rgba(255, 255, 255, 0.8); /* Fundo mais sólido para o texto */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  /* Remove o sticky */
  position: relative; 
  top: auto;
  /* Garante que o texto fique à direita */
  direction: ltr; 
}

.evento-mensagem-v2 {
  margin-bottom: 40px;
}

.evento-mensagem-v2 p {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #4a4a4a;
  font-weight: 400;
}

/* --- Grid de Informações (Cards) --- */
.info-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.info-card-v2 {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #d4af37;
  background-color: #fff;
  transition: all 0.3s ease;
}

.info-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.info-icon-v2 {
  color: #626C4A; /* Cor principal do tema */
  margin-bottom: 10px;
  display: inline-block;
}

.info-card-v2 h3 {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: #d4af37; /* Dourado para destaque */
  margin-bottom: 5px;
  font-weight: 700;
}

.info-card-v2 p {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.4;
  font-weight: 400;
}

.local-cidade-v2 {
  font-size: 14px;
  color: #888;
}

/* --- Citação Romântica --- */
.evento-citacao-v2 {
  text-align: center;
  margin: 40px auto;
  max-width: 600px;
}

.evento-citacao-v2 p {
  font-family: 'RockTwo', serif;
  font-size: 32px;
  font-style: italic;
  color: #4a5238;
  line-height: 1.8;
  position: relative;
  padding: 0 40px;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.evento-citacao-v2 p::before,
.evento-citacao-v2 p::after {
  content: '"';
  font-size: 60px;
  color: #d4af37;
  position: absolute;
  font-family: Georgia, serif;
  opacity: 0.7;
}

.evento-citacao-v2 p::before {
  content: '"';
  left: 0;
  top: -10px;
}

.evento-citacao-v2 p::after {
  right: 0;
  bottom: -30px;
}

/* --- Botão CTA Melhorado --- */
.evento-cta-v2 {
  text-align: center;
  margin-top: 30px;
}

.botao-romantico-v2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #626C4A 0%, #4a5238 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(98, 108, 74, 0.3);
  position: relative;
  overflow: hidden;
}

.botao-romantico-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.botao-romantico-v2 svg {
  position: relative;
  z-index: 1;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10%, 30% { transform: scale(1.1); }
  20%, 40% { transform: scale(1); }
}

/* --- Coluna de Fotos (Staggered Grid) --- */
.evento-galeria-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-top: 50px; /* Para alinhar visualmente com o texto */
  /* Garante que as fotos fiquem à esquerda */
  direction: ltr; 
}

.imagem-card-v2 {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.imagem-card-v2:nth-child(odd) {
  transform: translateY(30px); /* Efeito escalonado */
}

.imagem-card-v2:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.imagem-card-v2 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ========================================
   MEDIA QUERIES (Responsividade)
   ======================================== */

@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 70px;
  }
  .evento-container-v2 {
    max-width: 960px;
  }
  .evento-titulo-v2 {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 55px;
  }
  .evento-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
  .evento-info-col {
    position: static;
    top: auto;
    padding: 30px;
  }
  .evento-galeria-col {
    padding-top: 0;
  }
  .imagem-card-v2:nth-child(odd) {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 45px;
  }
  .evento-romantico-v2 {
    padding: 60px 15px;
  }
  .evento-titulo-v2 {
    font-size: 32px;
  }
  .decorative-line-v2 {
    max-width: 50px;
  }
  .evento-mensagem-v2 p {
    font-size: 16px;
  }
  .info-grid-v2 {
    grid-template-columns: 1fr;
  }
  .evento-citacao-v2 p {
    font-size: 22px;
  }
  .botao-romantico-v2 {
    font-size: 16px;
    padding: 14px 30px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 35px;
  }
  .hero-text p {
    font-size: 20px;
  }
  .evento-titulo-v2 {
    font-size: 26px;
  }
  .evento-citacao-v2 p {
    font-size: 18px;
  }
}

@media (max-width: 375px) {
  .hero-text h1 {
    font-size: 28px;
  }
  .hero-text p {
    font-size: 16px;
  }
  .evento-titulo-v2 {
    font-size: 22px;
  }
}
