* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}


.frame-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url('ASSETS/rocha.png'); 
  background-size: cover;
  background-position: center;
  z-index: 100;
  pointer-events: none; 
}


.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}


.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('ASSETS/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1; /* Camada base */
}


.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 100%;
  max-width: 450px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(0,0,0,0.8));
}

.date-text {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 6px;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.9);
  text-transform: uppercase;
}


.scroll-wrapper {
  margin-top: 40px;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-dot 1.5s infinite;
}

@keyframes scroll-dot {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 18px); opacity: 0; }
}


.jornada-section {
  background-color: #f9f9f9;
  color: #1a1a1a;
  padding: 120px 10%;
  position: relative;
  z-index: 5;
}

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

.jornada-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

.jornada-text {
  flex: 1.4;
}


.main-statement {
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #111;
  font-weight: 300;
}


.highlight {
  font-weight: 800;
  color: #000;
  border-bottom: 5px solid #0056b3;
}


.jornada-description {
  margin-bottom: 40px;
}

.jornada-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
  max-width: 90%;
}


.btn-baixar {
  display: inline-block;
  background-color: #824ded;
  color: #ffffff;
  padding: 18px 40px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.2s ease, background 0.3s ease;
}

.btn-baixar:hover {
  background-color: #6a3bc9;
  transform: translateY(-3px);
}


.jornada-image {
  flex: 0.8;
}

.jornada-image img {
  width: 100%;
  height: auto;
  display: block;
}


@media (max-width: 1024px) {
  .jornada-content {
    flex-direction: column;
    text-align: center;
  }
  
  .main-statement {
    font-size: 1.8rem;
  }

  .jornada-description p {
    margin: 0 auto 15px auto;
  }
}


.acompanhe-section {
  background-color: #6a3bc9;
  color: #ffffff;
  padding: 120px 10%;
  position: relative;
  z-index: 5;
}

.acompanhe-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}


.acompanhe-image {
  flex: 1;
}

.acompanhe-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  display: block;
}


.acompanhe-text {
  flex: 1.2;
}

.headline-grande {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.description-light {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0.9;
  max-width: 500px;
}

.btn-branco {
  display: inline-block;
  background-color: #ffffff;
  color: #6a3bc9; 
  padding: 18px 40px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
  transition: transform 0.2s ease, background 0.3s ease;
}

.btn-branco:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


@media (max-width: 1024px) {
  .acompanhe-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .headline-grande {
    font-size: 2.5rem;
  }

  .description-light {
    margin: 0 auto;
  }
}


.batismo-section {
  background-color: #005ed1; 
  color: #ffffff;
  padding: 120px 10%;
  position: relative;
  z-index: 5;
  text-align: center;
  overflow: hidden;
}


.batismo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('ASSETS/batismo.png'); 
  background-size: cover;
  background-position: center;
  

  background-attachment: fixed; 
  
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}

.batismo-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.batismo-image {
  width: 100%;
  margin-bottom: 50px;
}

.batismo-image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.headline-batismo {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.batismo-description p {
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}


@media (max-width: 768px) {
  .headline-batismo { font-size: 2.5rem; }
  .batismo-section { padding: 80px 5%; }
  

  .batismo-section::before {
    background-attachment: scroll;
  }
}


.rodape-simples {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 0; 
  position: relative;
  z-index: 10; 
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-content p {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 25px;
}

.social-icons a {
  color: #ffffff;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}


.social-icons a:hover {
  transform: translateY(-5px);
}


.social-icons a[aria-label="Instagram"]:hover { color: #E1306C; }

.social-icons a[aria-label="Facebook"]:hover { color: #4267B2; }

.social-icons a[aria-label="Youtube"]:hover { color: #FF0000; }

.social-icons svg {
  width: 28px;
  height: 28px;
}


@media (max-width: 600px) {
  .rodape-simples {
      padding: 30px 20px;
  }
}