/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary: #F59E0B; /* Amber 500 */
  --primary-dark: #D97706;
  --primary-light: #FDE68A;
  --secondary: #1F2937;
  --text-dark: #374151;
  --text-light: #6B7280;
  --bg-color: #FAFAFA;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  color: var(--secondary);
}

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

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

/* Header/Nav */
header {
  background-color: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--secondary);
  text-decoration: none;
}

.brand-logo {
  height: 60px;
  width: auto;
  border-radius: 50%; /* Se quiser que as bordas da imagem fiquem cortadas em circulo */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.logo:hover .brand-logo {
  transform: scale(1.05);
}

.footer-logo .brand-logo {
  height: 70px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Hero Carousel */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background-color: #111827;
}

.carousel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroCrossfade 15s ease-in-out infinite;
}

@keyframes heroCrossfade {
  0% { opacity: 0; transform: scale(1.1); }
  10% { opacity: 1; }
  33% { opacity: 1; transform: scale(1); }
  43% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(31, 41, 55, 0.95) 0%, rgba(31, 41, 55, 0.7) 40%, rgba(31, 41, 55, 0.3) 100%);
  z-index: -1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(245, 158, 11, 0.4);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 700px;
  color: #fff;
}

.hero-title span {
  color: var(--primary);
}

.hero-text {
  font-size: 1.25rem;
  max-width: 550px;
  margin-bottom: 2.5rem;
  color: #E5E7EB;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
}

.btn i {
  margin-left: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.39);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.23);
  color: white;
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--secondary);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

/* About Section */
.section {
  padding: 6rem 2rem;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  border: 8px solid var(--primary);
  opacity: 0.3;
  pointer-events: none;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  line-height: 1.2;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.section-title.center {
  text-align: center;
}

.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.text-lead {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #E5E7EB;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-desc {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 0.5rem;
}

/* Features / Services */
.bg-light {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--white);
  border: 1px solid #F3F4F6;
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--primary-light) 0%, rgba(253,230,138,0) 100%);
  transition: height 0.4s ease;
  z-index: -1;
  opacity: 0.3;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--primary-light);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--bg-color);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(10deg);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-desc {
  color: var(--text-light);
  font-size: 1rem;
}

/* Quote/Impact Section */
.impact-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #111827 100%);
  color: var(--white);
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '\f10d'; /* FontAwesome quote-left */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

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

.impact-text {
  font-size: 2.25rem;
  font-weight: 300;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.impact-highlight {
  color: var(--primary);
  font-weight: 600;
}

/* Mural de Fotos / Photo Wall */
.gallery-section {
  padding: 4rem 2rem;
  background-color: var(--white);
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  column-count: 1; /* Mobile primeiro */
  column-gap: 1rem;
}

@media (min-width: 600px) {
  .gallery-grid { column-count: 2; }
}

@media (min-width: 900px) {
  .gallery-grid { column-count: 3; }
}

@media (min-width: 1200px) {
  .gallery-grid { column-count: 4; }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0px;
}

/* Footer */
footer {
  background-color: #111827;
  color: #9CA3AF;
  padding: 5rem 2rem 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1.5rem;
  display: inline-flex;
}

.footer-desc {
  max-width: 400px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a i {
  font-size: 0.8rem;
  color: var(--primary);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  max-width: 1200px;
  margin: 0 auto;
}

.heart-icon {
  color: #EF4444;
  margin: 0 0.25rem;
}

/* Page Headers */
.page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, #111827 100%);
  color: var(--white);
  padding: 6rem 2rem 4rem;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* Forms */
.form-container {
  background: var(--white);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Documents / Transparency List */
.doc-list {
  list-style: none;
  padding: 0;
}

.doc-item {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid #E5E7EB;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  background: var(--white);
  transition: all 0.3s;
}

.doc-item:hover {
  border-color: var(--primary-light);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transform: translateX(5px);
}

.doc-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-right: 1.5rem;
}

.doc-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--secondary);
}

.doc-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.doc-download {
  margin-left: auto;
  color: var(--text-light);
  font-size: 1.25rem;
  transition: color 0.3s;
}

.doc-item:hover .doc-download {
  color: var(--primary-dark);
}

/* Base Content */
.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  .about-grid {
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  

  
  .impact-text {
    font-size: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
