/* ------------------ RESET ------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #fff;
}

/* ------------------ HEADER ------------------ */
header {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #ffff00;
}

/* MENU DESKTOP */
.menu-desktop ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu-desktop ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.menu-desktop ul li a:hover {
  opacity: 0.7;
}

/* MENU MOBILE */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: fixed; /* fixa o ícone */
  top: 20px;       /* distância do topo */
  right: 20px;     /* distancia da direita */
  z-index: 1000;   /* acima de tudo */
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: #fff;
}

.menu-mobile {
  position: fixed;
  top: 60px;
  right: -220px;
  width: 150px;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  padding: 10px;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.menu-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-mobile ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.menu-mobile.show {
  right: 0;
}

/* ------------------ HERO SLIDER ------------------ */
.hero-slider {
  height: 90vh;
  background: url('../images/capa.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* escurece levemente a imagem */
}

.hero {
  position: relative;
  color: #fff;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
}

.hero {
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------ VÍDEOS ------------------ */
.videos-section {
  padding: 80px 20px;
  background: #292b2c;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-header p {
  color: #ffffff;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border-radius: 12px;
}

.video-card h3 {
  margin-top: 10px;
  font-size: 1rem;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
  .videos-grid {
    display: flex;            /* troca grid por flex no mobile */
    flex-direction: column;   /* empilha os vídeos */
    align-items: center;      /* centraliza horizontalmente */
    gap: 20px;                /* espaço entre vídeos */
  }

  .video-card {
    width: 90%;               /* ocupa quase toda a largura do mobile */
    max-width: 400px;         /* limita para não ficar gigante */
    text-align: center;       /* centraliza título */
  }

  .video-card iframe {
    height: 200px;            /* mantém altura proporcional */
  }
}

/* =============================
   SEÇÃO SOBRE O PROJETO
============================= */
/* Sessão Sobre Nós */
.sobre-nos {
    background-color: #fcfaf5; /* dourado clarinho suave */
    padding-top: 4rem; /* aumento do espaço em cima, antes era py-20 (5rem + 5rem), agora ajustado */
    padding-bottom: 5rem;
}

/* Container centralizado */
.sobre-nos .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Estrutura da sessão */
.sobre-nos-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media(min-width: 768px) {
    .sobre-nos-inner {
        flex-direction: row;
        align-items: center;
    }
}

/* Imagem */
.sobre-nos-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Texto */
.sobre-nos-texto {
    max-width: 600px;
}

.sobre-nos-texto h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111;
}

.sobre-nos-texto p {
     font-size: 1rem;
    line-height: 1.8;
    color: #4B5563; /* cinza escuro suave */
    text-align: justify;
}


/* ----------------- SESSÃO PARA IGREJAS E ESCOLAS ----------------- */
/* ----------------- SESSÃO PARA IGREJAS E ESCOLAS ----------------- */
.igrejas-escolas-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9f9f9 0%, #e0f7e0 100%);
  font-family: 'Awsone', sans-serif;
}

.igrejas-escolas-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Cabeçalho */
.header-igrejas {
  text-align: center;
  margin-bottom: 40px;
}

.header-igrejas h2 {
  font-size: 2em;
  color: #037720;
  margin-bottom: 10px;
}

.header-igrejas p {
  font-size: 1.05em;
  color: #131616;
}

/* Cards */
.cards-igrejas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.card {
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 20px;
  width: 200px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.card i {
  font-size: 2.2em;
  color: #037720;
  margin-bottom: 10px;
}

.card p {
  font-size: 1em;
  color: #131616;
  line-height: 1.4;
}

/* Botão */
.botao-igrejas {
  display: flex;
  justify-content: center;
}

.botao-igrejas a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #037720;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
}

.botao-igrejas a:hover {
  background: #025f1a;
  transform: scale(1.05);
}

/* ---------------- RESPONSIVIDADE ---------------- */
@media (max-width: 768px) {
  .cards-igrejas {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    height: auto;
    padding: 18px;
  }
}

/* ---------------- RESPONSIVIDADE ---------------- */
@media (max-width: 768px) {
  .igrejas-escolas-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .texto-lista {
    flex: 1 1 100%;
  }

  .botao-igrejas {
    flex: 1 1 100%;
    margin-top: 25px;
  }
}


/* =============================
   RESPONSIVO
============================= */
@media (max-width: 768px) {
  .sobre-content,
  .igrejas-content {
    flex-direction: column;
  }

  .sobre-img,
  .sobre-text {
    max-width: 90%;
  }

  .igrejas-content ul {
    max-width: 90%;
  }
}

/* ------------------ ANIMAÇÕES ------------------ */
.animate-on-scroll,
.fade-slide {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.active,
.fade-slide.active {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------ FOOTER ------------------ */
footer {
  background-color: #111;
  border-top: 2px solid #333;
  padding: 50px 20px 40px 20px;
  color: #fff;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #ffff00;
}

.footer-social a {
  margin: 0 10px;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #CB6CE6;
}

.footer-social i {
  width: 24px;
  height: 24px;
}

.footer-copy {
  font-size: 14px;
  color: #888;
}

/* ------------------ RESPONSIVO ------------------ */
@media (max-width: 1024px) {
  .video-card {
    width: 300px;
  }

  .video-card iframe {
    height: 180px;
  }
}

@media (max-width: 768px) {
  /* HEADER */
  .menu-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* HERO SLIDER */
  .hero-slider {
    height: 60vh;
  }

  .hero-slider .slide h1 {
    font-size: 1.8rem;
    padding: 0 15px;
  }

  /* VÍDEOS */
  .video-card {
    width: 280px;
  }

  .video-card iframe {
    height: 180px;
  }

  /* FOOTER */
  .footer-links,
  .footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ------------------ CTA PREMIUM ------------------ */
.cta-premium {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin: 50px auto;
  max-width: 1000px;
}

.cta-premium-content h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 20px;
}

.cta-premium-content p {
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 35px;
}

.cta-btn {
  display: inline-block;
  background-color: #2575fc; /* botão azul chamativo */
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 8px; /* quadrado arredondado */
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(37, 117, 252, 0.4);
}

.cta-btn:hover {
  background-color: #111; /* muda no hover */
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ------------------ RESPONSIVO ------------------ */
@media (max-width: 768px) {
  .cta-premium-content h2 {
    font-size: 2rem;
  }

  .cta-premium-content p {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

/* ----------------- SESSÃO DE CONTATO ----------------- */
.contato-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #378daf 0%, #378daf 100%);
  font-family: 'Awsone', sans-serif;
}

.contato-section .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contato-header h2 {
  font-size: 2em;
  color: #ffffff;
  margin-bottom: 10px;
}

.contato-header p {
  font-size: 1.05em;
  color: #dff0f0;
  margin-bottom: 40px;
}

.contato-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contato-item {
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 20px;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contato-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.contato-item i {
  font-size: 2.2em;
  color: #378daf;
  margin-bottom: 10px;
}

.contato-item p a {
  font-size: 1em;
  color: #131616;
  text-decoration: none;
  word-break: break-word;
}

.contato-item p a:hover {
  color: #378daf;
  text-decoration: underline;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .contato-content {
    flex-direction: column;
    align-items: center;
  }

  .contato-item {
    width: 90%;
    margin-bottom: 15px;
  }
}