/* Global Styles */
    :root {
      --primary-color: #673AB7;
      --secondary-color: #FFD700;
      --accent-color: #FF5722;
      --text-color: #333333;
      --text-light: #777777;
      --background-light: #f8f8f8;
      --white: #ffffff;
      --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
    }

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

    body {
      font-family: 'Montserrat', sans-serif;
      color: var(--text-color);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 48px;
      color: var(--primary-color);
      position: relative;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: var(--secondary-color);
      margin: 16px auto 0;
    }

    .bg-light {
      background-color: var(--background-light);
    }

    /* Buttons */
    .btn {
      display: inline-block;
      padding: 12px 32px;
      border-radius: 30px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: var(--transition);
      font-size: 16px;
      box-shadow: var(--shadow);
    }

    .btn-primary {
      background-color: var(--primary-color);
      color: var(--white);
    }

    .btn-primary:hover {
      background-color: #5e35b1;
      transform: translateY(-3px);
    }

    .btn-secondary {
      background-color: var(--secondary-color);
      color: var(--text-color);
    }

    .btn-secondary:hover {
      background-color: #ffc107;
      transform: translateY(-3px);
    }

    /* Popup */
    .popup {
      display: flex;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }

    .popup.active {
      opacity: 1;
      visibility: visible;
    }

    .popup-content {
      background-color: var(--white);
      padding: 32px;
      border-radius: 8px;
      max-width: 500px;
      width: 90%;
      position: relative;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      transform: scale(0.9);
      transition: transform 0.3s;
    }

    .popup.active .popup-content {
      transform: scale(1);
    }

    .popup-content h2 {
      color: var(--primary-color);
      margin-bottom: 16px;
      font-size: 1.8rem;
    }

    .popup-content p {
      margin-bottom: 12px;
      font-size: 1rem;
    }

    .close-btn {
      position: absolute;
      top: 16px;
      right: 16px;
      font-size: 28px;
      cursor: pointer;
      color: var(--text-light);
      transition: color 0.3s;
    }

    .close-btn:hover {
      color: var(--accent-color);
    }

    /* Header & Banner */
    header {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    }

   nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5); /* preto com 50% de transparência */
}


    .logo {
      z-index: 10;
    }

    .logo img {
      height: 60px;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }

    .menu {
      display: flex;
    }

    .menu li {
      margin-left: 32px;
    }

    .menu a {
      color: var(--white);
      font-weight: 600;
      position: relative;
      padding-bottom: 4px;
      transition: var(--transition);
    }

    .menu a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--secondary-color);
      transition: width 0.3s;
    }

    .menu a:hover::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      z-index: 10;
    }

    .bar {
      width: 30px;
      height: 3px;
      background-color: var(--white);
      margin: 3px 0;
      transition: var(--transition);
    }

    .banner-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 16px;
      position: relative;
      z-index: 5;
      color: var(--white);
    }

    .banner-content h1 {
      font-size: 3.5rem;
      margin-bottom: 16px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .banner-content h2 {
      font-size: 1.8rem;
      margin-bottom: 32px;
      font-weight: 400;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    .banner-buttons {
      display: flex;
      gap: 16px;
    }

    /* Devocionais Section */
    .devocional-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 32px;
    }

    .devocional-card {
      background-color: var(--white);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.3s;
    }

    .devocional-card:hover {
      transform: translateY(-8px);
    }

    .card-image {
      height: 200px;
      background-size: cover;
      background-position: center;
    }

    .card-content {
      padding: 24px;
    }

    .card-content h3 {
      margin-bottom: 8px;
      color: var(--primary-color);
    }

    .date {
      font-size: 0.9rem;
      color: var(--text-light);
      margin-bottom: 16px;
    }

    .read-more {
      display: inline-block;
      margin-top: 16px;
      color: var(--primary-color);
      font-weight: 600;
      transition: var(--transition);
    }

    .read-more:hover {
      color: var(--accent-color);
    }

    /* A Igreja Section */
    .igreja-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .igreja-image img {
      width: 100%;
      border-radius: 8px;
      box-shadow: var(--shadow);
    }

    .igreja-text h3 {
      color: var(--primary-color);
      margin: 24px 0 16px;
      font-size: 1.5rem;
    }

    .igreja-text h3:first-child {
      margin-top: 0;
    }

    .igreja-text ul {
      padding-left: 24px;
      list-style-type: disc;
    }

    .igreja-text li {
      margin-bottom: 8px;
    }

    /* Galeria Section */
    .galeria-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
    }

    .galeria-item {
  text-align: center;
  margin-bottom: 20px;
}

.galeria-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.galeria-info {
  margin-top: 10px;
}

.galeria-titulo {
  font-size: 18px;
  margin: 5px 0;
  color: #333;
}

.galeria-data {
  font-size: 14px;
  color: #777;
}


    .galeria-item:hover img {
      transform: scale(1.05);
    }

    /* Missões Section */
    .missoes-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .missoes-text {
      order: 1;
    }

    .missoes-image {
      order: 2;
    }

    .missoes-image img {
      width: 100%;
      border-radius: 8px;
      box-shadow: var(--shadow);
    }

    .missoes-text h3 {
      color: var(--primary-color);
      margin-bottom: 16px;
      font-size: 1.5rem;
    }

    .missoes-text ul {
      padding-left: 24px;
      list-style-type: disc;
      margin: 16px 0 24px;
    }

    .missoes-text li {
      margin-bottom: 8px;
    }

    /* Transmissão ao Vivo Section */
    .transmissao-content {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 48px;
    }

    .video-container {
      background-color: #000;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow);
      position: relative;
    }

    .video-placeholder {
      width: 100%;
      padding-bottom: 56.25%;
      background-image: url('https://images.pexels.com/photos/164879/pexels-photo-164879.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .video-placeholder::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
    }

    .play-button {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.2);
      color: var(--white);
      transition: background-color 0.3s;
    }

    .play-button:hover {
      background-color: rgba(255, 255, 255, 0.3);
    }

    .video-placeholder p {
      position: absolute;
      bottom: 24px;
      color: var(--white);
      font-weight: 600;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .horarios h3 {
      color: var(--primary-color);
      margin-bottom: 16px;
      font-size: 1.5rem;
    }

    .horarios ul {
      margin-bottom: 24px;
    }

    .horarios li {
      margin-bottom: 8px;
    }

    .social-links {
      display: flex;
      gap: 16px;
      margin-top: 24px;
    }

    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background-color: var(--primary-color);
      color: var(--white);
      transition: var(--transition);
    }

    .social-link:hover {
      background-color: var(--accent-color);
      transform: translateY(-3px);
    }

    /* Pedido de Oração Section */
    .oracao-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .oracao-text h3 {
      color: var(--primary-color);
      margin-bottom: 16px;
      font-size: 1.5rem;
    }

    .oracao-text p {
      margin-bottom: 16px;
    }

    .form-group {
      margin-bottom: 24px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-family: inherit;
      font-size: 16px;
      transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--primary-color);
      outline: none;
    }

    /* Footer */
    footer {
      background-color: #333;
      color: var(--white);
      padding: 64px 0 24px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-logo img {
      height: 60px;
      margin-bottom: 16px;
    }

    .footer-logo p {
      font-style: italic;
    }

    .footer-contact h3,
    .footer-links h3 {
      font-size: 1.3rem;
      margin-bottom: 24px;
      color: var(--secondary-color);
    }

    .footer-contact p {
      margin-bottom: 8px;
    }

    .footer-links ul li {
      margin-bottom: 12px;
    }

    .footer-links a {
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: var(--secondary-color);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.7);
    }
    
    /* Remove a imagem de fundo fixa e ajusta a altura total */
.banner {
  height: 100vh;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Slider ocupa a tela inteira */
.slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%; /* 2 slides */
  height: 100%;
  transition: transform 1s ease;
}

.slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  max-width: 90%;
}

.banner-buttons .btn {
  margin: 10px;
  padding: 10px 20px;
  border: none;
  text-decoration: none;
  color: white;
  background-color: #007bff;
  border-radius: 5px;
  display: inline-block;
}

.banner-buttons .btn-secondary {
  background-color: #6c757d;
}





    /* Responsive Styles */
    @media (max-width: 992px) {
      .igreja-content,
      .missoes-content,
      .transmissao-content,
      .oracao-content {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      
      .missoes-text,
      .missoes-image {
        order: unset;
      }
      
      .banner-content h1 {
        font-size: 2.8rem;
      }
      
      .banner-content h2 {
        font-size: 1.4rem;
      }
    }

    @media (max-width: 768px) {
      nav {
        padding: 16px 24px;
      }
      
      .menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 9;
      }
      
      .menu.active {
        right: 0;
      }
      
      .menu li {
        margin: 16px 0;
      }
      
      .menu-toggle {
        display: flex;
      }
      
      .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
      }
      
      .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
      }
      
      .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
      }
      
      .banner-content h1 {
        font-size: 2.2rem;
      }
      
      .banner-content h2 {
        font-size: 1.2rem;
      }
      
      .banner-buttons {
        flex-direction: column;
        gap: 12px;
      }
      
      .section {
        padding: 60px 0;
      }
      
      .section-title {
        font-size: 2rem;
        margin-bottom: 32px;
      }
    }

    @media (max-width: 576px) {
      .banner-content h1 {
        font-size: 1.8rem;
      }
      
      .logo img {
        height: 40px;
      }
      
      .popup-content {
        padding: 24px;
      }
      
      .popup-content h2 {
        font-size: 1.5rem;
      }
    }