/*
Theme Name: Igreja Louvores a Deus
Theme URI: https://igrejalouvoresadeus.com.br
Author: Igreja Louvores a Deus
Author URI: https://igrejalouvoresadeus.com.br
Description: Tema oficial da Igreja Louvores a Deus - Uma família abençoando a sua vida
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: igreja-louvores-a-deus
Tags: church, religious, responsive, modern
*/

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

header .logo img {
  height: 64px;
  width: auto;
}

nav.desktop-nav {
  display: none;
}

nav.desktop-nav a {
  margin-left: 1.5rem;
  color: #4b5563;
  font-weight: 500;
  transition: color 0.3s;
}

nav.desktop-nav a:hover {
  color: #eab308;
}

.menu-toggle {
  display: block;
  font-size: 1.75rem;
  color: #4b5563;
}

nav.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
}

nav.mobile-nav.active {
  display: flex;
}

nav.mobile-nav a {
  padding: 0.5rem 0;
  color: #4b5563;
  font-weight: 500;
  transition: color 0.3s;
}

nav.mobile-nav a:hover {
  color: #eab308;
}

@media (min-width: 768px) {
  nav.desktop-nav {
    display: flex;
    align-items: center;
  }
  
  .menu-toggle {
    display: none;
  }
}

/* Footer */
footer {
  background-color: #111827;
  color: #fff;
  padding: 3rem 0;
}

footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

footer h3 {
  color: #eab308;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

footer p, footer a {
  color: #d1d5db;
  font-size: 0.875rem;
}

footer a:hover {
  color: #eab308;
}

footer .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

footer .social-links a {
  color: #eab308;
  font-size: 1.75rem;
  transition: color 0.3s;
}

footer .social-links a:hover {
  color: #fbbf24;
}

footer .copyright {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

@media (min-width: 768px) {
  footer .container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-content .btn {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 4.5rem;
  }
  
  .hero-content p {
    font-size: 1.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 0.375rem;
  transition: all 0.3s;
}

.btn-primary {
  background-color: #eab308;
  color: #000;
}

.btn-primary:hover {
  background-color: #ca8a04;
}

.btn-secondary {
  background-color: #10b981;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #059669;
}

/* Sections */
section {
  padding: 4rem 0;
}

section.bg-gray {
  background-color: #f9fafb;
}

section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  color: #111827;
}

section h3 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #111827;
}

section p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

/* Cards */
.card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #111827;
}

.card-description {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #374151;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #eab308;
}

textarea {
  resize: vertical;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.max-w-3xl {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.max-w-4xl {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}




/* Força a logo a ser branca no rodapé */
footer .container > div:first-child img {
    filter: brightness(0) invert(1);
}

