/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f3f0;
  color: #222;
  line-height: 1.6;
  margin: 0;
}

/* TIPOGRAFIA */
h1, h2, h3, .logo a {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  backdrop-filter: blur(6px);
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

nav {
  max-width: 1100px;
  margin: auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #708e48;
  font-weight: 600;
}

.menu a {
  margin-left: 1rem;
  text-decoration: none;
  color: #444;
  transition: .3s;
}
.menu a:hover { color:#708e48; }

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* MOBILE MENU */
@media (max-width:768px){
  .menu {
    
    display:none;
    position:absolute;
    right:1rem;
    top:70px;
    background:#fff;
    flex-direction:column;
    padding:1rem;
    border-radius:8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
  }
  .menu.active { display:flex; }
  .menu-toggle { display:block; }
}



/* HERO */
.hero {
  width: 100%;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  position: relative;

  background-image: url("../imagens/foto de casamento.jpg");
  background-size: cover;
  background-position: center 20%;

  /* ESSAS LINHAS RESOLVEM */
  max-width: none;
  padding: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.25)
  );

  z-index: 1;
}

.hero-text {
  opacity: 0;
  transform: translateY(40px);

  animation: heroReveal 1.4s ease forwards;
  animation-delay: 0.5s;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: white;
  line-height: 1.2;

  text-align: center;
  max-width: 900px;

  text-shadow: 0 10px 30px rgba(0,0,0,.5);
}

.hero-text h1::after {
  content: "";
  display: block;

  width: 0;
  height: 2px;

  background: white;

  margin: 25px auto 0;

  animation: lineReveal 1s ease forwards;
  animation-delay: 1.5s;
}

@keyframes lineReveal {
  to {
    width: 150px;
  }
}


.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);

  color: #fff;
  line-height: 1.2;

  max-width: 900px;
  padding: 0 1rem;

  position: relative;
  z-index: 2;

  text-shadow: 0 10px 30px rgba(0,0,0,.5);
}

/* SEÇÕES */

section {
  max-width:1100px;
  margin:auto;
  padding:4rem 1rem;
}

section h2 {
  text-align:center;
  font-size: 35px;
  color:#708e48;
  margin-bottom:1.5rem;
}

/* LISTAS */
ul {
  list-style:none;
  text-align:center;
  font-size:1.1rem;
}
ul li { margin:.5rem 0; }

/* CONTATO */
.contact p {
  text-align: center;
  margin-top: 10px;
}

.contact a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.contact a:hover {
  color: #708e48;
}

.contact form {
  max-width:500px;
  margin:auto;
  display:flex;
  flex-direction:column;
}

.contact input, .contact textarea {
  padding:.8rem;
  margin:.5rem 0;
  border-radius:6px;
  border:1px solid #ccc;
}

.contact button {
  margin-top:1rem;
  font-size: 14px;
  padding:18px;
  border:none;
  background:#333;
  color:#fff;
  cursor:pointer;
  border-radius:6px;
  transition: 0.3s;
}
.contact button:hover { background:#708e48; 
  transform: translateY(-3px);}

/* FOOTER */
footer {
  background:#222;
  color:#fff;
  text-align:center;
  padding:1.5rem;
}
/* =========================
   SEÇÃO SOBRE
========================= */

.about {
  padding: 5rem 1rem;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 40px;
  color: #708e48;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* RESPONSIVIDADE - SEÇÃO SOBRE */

@media (max-width:768px){

  .about-container{
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .about-image img{
    max-width: 250px;
  }

  .about-text{
    padding: 0 15px;
  }

  .about-text p{
    font-size: 1rem;
    line-height: 1.7;
  }

}

/* BOTÃO WHATSAPP */

.whatsapp-button {
  position: fixed;

  bottom: 25px;
  right: 25px;

  width: 60px;
  height: 60px;

  background: #25D366;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);

  z-index: 999;

  transition: transform .3s ease;
  animation: whatsappPulse 2s infinite;
}
@keyframes whatsappPulse {

  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37,211,102,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }

}

.whatsapp-button img{
  width: 32px;
}

.whatsapp-button:hover{
  transform: scale(1.1);
}

/*fundo da seção sobre (GRID DAS IMAGENS)*/

.servicos {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;
}
.servicos h2 {font-size: 80px;
text-shadow: #222 1px 2px 1px;}
.servicos-bg {

  position: absolute;
  inset: 0;

  display: grid;

  grid-template-columns: repeat(6, 1fr);

  z-index: 1;
}

.servicos-bg div{
  background-size: cover;
  background-position: center;
  
}

.servicos::before{

  content:"";
  position:absolute;
  inset:0;

  background:rgba(255,255,255,0.55);

  z-index:2;
}
/*conteúdo acima das fotos*/
.servicos-content{

  position:relative;
  z-index:3;

}

.servicos{
  max-width: none;
  width: 100%;
  padding:120px 0;
}


