/* Font Family */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

/* Variáveis de cores atualizadas */
:root {
  /* Cores principais */
  --primary-color: #FF007A; /* Rosa pink original da logo */
  --secondary-color: #F9CB31; /* Amarelo original da logo */
  
  /* Variações de rosa */
  --primary-dark: #CC0062; /* Rosa mais escuro para contraste */
  --primary-light: #FF4D9E; /* Rosa mais claro para elementos sutis */
  --primary-fade: rgba(255, 0, 122, 0.1); /* Rosa transparente para backgrounds */
  
  /* Variações de amarelo */
  --secondary-dark: #E5B71D;
  --secondary-light: #FFD654;
  --secondary-fade: rgba(249, 203, 49, 0.1);
  
  /* Cores de texto e background */
  --bg-white: #FFFFFF;
  --text-dark: #2C2C2C;
  --text-light: #4A4A4A;
  
  /* Gradientes refinados combinando rosa e amarelo */
  --gradient-primary: linear-gradient(135deg, #FF007A 0%, #FF4D9E 100%);
  --gradient-secondary: linear-gradient(135deg, #F9CB31 0%, #FFD654 100%);
  /* Gradiente misturando as duas cores principais */
  --gradient-mix: linear-gradient(135deg, #FF007A 0%, #F9CB31 100%);
}

/* Default Css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #363940;
  overflow-x: hidden;
  padding-top: 0;
  background: var(--bg-white);
  background-attachment: fixed;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: var(--primary-color);
}
img {
  width: 100%;
}
.container {
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
}
.btn:hover,
.btn:focus,
.btn {
  outline: none;
  box-shadow: none;
}
.heading1 {
  color: #f27649;
  font-family: Poppins;
  font-size: 96px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heading2 {
  color: #000;
  font-family: Poppins;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 59px;
}
.heading3 {
  color: #333;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.font-20-popins {
  color: #000;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 39.3px;
  letter-spacing: 0.8px;
}
.font-22-popins {
  color: #000;
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
}

/* ===================================================================
                            Header Area CSS Start
====================================================================*/
/* Header simples e limpo */
.header-area {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: transparent;
}

.header-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 30px;
  transition: all 0.3s ease;
}

.header-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

.header-nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #2C2C2C;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 122, 0.2);
}

/* Mobile */
@media (max-width: 767px) {
  .header-main {
    max-width: 100%;
    padding: 12px 20px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .header-menu {
    justify-content: center; /* Centralizar logo */
    align-items: center;
  }

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

  /* Esconder completamente a navegação em mobile */
  .header-nav {
    display: none !important;
  }

  /* Remover qualquer vestígio do menu mobile */
  .mobile-menu,
  .menu-toggle,
  .header-nav nav {
    display: none !important;
  }
}

/* Desktop */
@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

/* Efeito de gradiente no background */
.header-main::after {
  content: none; /* Alterado de '' para 'none' */
}

/* Efeito de borda dupla */
.header-main::before {
  content: none; /* Alterado de '' para 'none' */
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.header-logo {
  flex: 0 0 auto;
}

.header-logo a img {
  max-width: 40px;
  height: auto;
}

.header-nav {
  flex: 0 1 auto;
}

.header-nav nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-nav nav ul li a {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  transition: all 0.3s ease;
}

/* Botão especial para Doações */
.header-nav nav ul li a.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
}

.header-nav nav ul li a.btn-primary:hover {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

/* Remover completamente o mobile-menu no desktop */
.mobile-menu {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-nav nav.show {
  animation: slideDown 0.3s ease forwards;
}

/* Banner Area Styles - Base */
.banner-area {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF6F2 100%);
    display: flex;
    align-items: center;
}

/* Garantir que o conteúdo fique acima do background */
.banner_content {
  padding-top: 0px;
  display: flex;
  align-items: center;
  gap: 0px;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

/* Left Side Styles */
.banner_content_left {
  flex: 0.55;
  max-width: 600px;
  padding-right: 20px;
}

/* Melhorias no Badge */
.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 24px;
  border-radius: 100px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(242, 118, 73, 0.1);
  border: 1px solid var(--primary-fade);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.banner-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(242, 118, 73, 0.15);
}

.pre-title {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
}

.badge-year {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
}

.banner-titles {
  margin-bottom: 24px;
}

/* Título Principal Aprimorado */
.heading1 {
  font-size: 82px;
  line-height: 1.1;
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -2px;
  position: relative;
}

.heading2 {
  font-size: 72px;
  line-height: 1.1;
  color: #F27649;
  font-weight: 700;
}

/* Descrição Refinada */
.banner-description {
  font-size: 18px;
  line-height: 1.6;
  margin: 20px 0;
  color: var(--text-light);
}

/* Cards de Estatísticas Aprimorados */
.banner-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.banner-stats:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.stat-value {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.3px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
}

/* Right Side Styles */
.banner_content_right {
  flex: 0.45;
  position: relative;
}

/* Imagem e Card Flutuante */
.banner-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  background: linear-gradient(135deg, 
    rgba(242, 118, 73, 0.1) 0%,
    rgba(242, 183, 73, 0.1) 100%
  );
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  animation: pulse 6s ease-in-out infinite;
}

.main-image {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
}

.floating-card {
  position: absolute;
  bottom: 40px;
  right: -20px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--primary-fade);
  transform: translateY(0);
  transition: all 0.4s ease;
  z-index: 10;
}

.floating-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 30px 60px rgba(242, 118, 73, 0.15);
}

.card-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: #363940;
  margin-bottom: 2px;
}

.card-content p {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}

.card-link {
  font-size: 13px;
  color: #F27649;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
  }
}

/* Decorative elements */
.banner-area::before,
.banner-area::after {
  display: none;
}

/* Botões Aprimorados */
.banner-btns {
  display: flex;
  gap: 24px;
  margin: 40px 0;
}

/* Estilos dos botões atualizados */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
  text-align: center;
  justify-content: center;
}

.btn i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.btn:hover i {
  transform: translateX(3px);
}

/* Botão Primário mais discreto */
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border: 1px solid var(--primary-color);
  box-shadow: 0 2px 4px rgba(242, 118, 73, 0.1);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 4px 8px rgba(242, 118, 73, 0.15);
  color: white;
}

/* Botão Outline mais elegante */
.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 1.5px solid #e0e0e0;
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: rgba(242, 118, 73, 0.02);
}

/* Botão Secundário */
.btn-secondary {
  background-color: white;
  color: var(--text-dark);
  border: 1.5px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  border-color: #d0d0d0;
  background-color: #f8f8f8;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

/* Botão pequeno */
.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

/* Botão grande */
.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* Estados do botão */
.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Botão com ícone */
.btn-icon {
  padding: 12px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
}

/* Music Area Styles */
.music-area {
  padding: 50px 0;
  background: linear-gradient(
    135deg,
    #FFF6F2 0%,
    #FFF9F6 100%
  );
}

.music_top_wrapper {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 35px;
}

.section-title .subtitle {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.section-title h2 {
  color: var(--text-dark);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title .title-shape {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 0 auto 20px;
  position: relative;
}

.section-title .title-shape::before,
.section-title .title-shape::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
  top: 50%;
  transform: translateY(-50%);
}

.section-title .title-shape::before {
  left: -10px;
}

.section-title .title-shape::after {
  right: -10px;
}

.section-title .section-description {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 700px;
}

.title-shape {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  margin: 0 auto;
  border-radius: 2px;
}

.section-description {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 20px auto 0;
  text-align: center;
  line-height: 1.8;
}

.courses_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 30px auto;
  padding: 0 20px;
}

.course_card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.course_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--primary-fade);
  border-color: var(--primary-color);
}

.course_image {
  height: 200px;
  overflow: hidden;
}

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

.course_content {
  padding: 20px;
}

.course_title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.course_description {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.course_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  gap: 10px;
}

.course_duration {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 14px;
  min-width: fit-content;
}

.course_level {
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-left: auto;
}

.course_status {
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-left: auto;
}

.status-open {
  background: var(--primary-fade);
  color: var(--primary-color);
}

.status-closed {
  background: rgba(235, 87, 87, 0.1);
  color: #EB5757;
}

/* Start Institution Area  */
.institution_area {
  padding-top: 40px;
  padding-bottom: 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.institution_tittle {
  max-width: 743px;
}

.institution_tittle::after {
  background: url("../images/Institution-shape.png") no-repeat center center /
    cover;
  bottom: -40%;
  right: 0px;
}

.institution_body {
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.institution_img {
  position: relative;
}
.institution_img img {
  max-width: 543px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 509px;
}

.institution_content {
  background: #f6f6f6;
  padding: 73px 58px 55px 274px;
  margin-left: -240px;
}

.institution_content .institument_content_tittle {
  color: #000;
  font-weight: 600;
  line-height: 118.5%;
  text-transform: uppercase;
}

.institution_content .institument_text {
  max-width: 526px;
  color: #000;
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 193.5%;
  padding: 30px 0;
}

.institution_content .institution_btn {
  float: right;
}
/* End Institution Area  */
/* Start Contribute Area */
.contribute_area {
  padding: 80px 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
}

.contribute-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

/* Título da seção de doação */
.donation-title {
  text-align: center;
  margin-bottom: 40px;
}

.donation-title h3 {
  font-size: 24px;
  color: var(--text-dark);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.donation-title h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Benefícios de Doar - Versão Elegante */
.contribute-benefits {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.contribute-benefits h3 {
  font-size: 24px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.contribute-benefits h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-item {
  background: white;
  padding: 35px 25px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(242, 118, 73, 0.1);
  border-color: rgba(242, 118, 73, 0.1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: rgba(242, 118, 73, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 26px;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.benefit-item h4 {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.benefit-item p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Layout dos cards lado a lado */
.donation-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  justify-content: center;
  align-items: center;
}

/* Estilos do card de doação */
.donation-options {
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(242, 118, 73, 0.08);
  border: 1px solid rgba(242, 118, 73, 0.1);
  width: 800px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.donation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  height: 100%;
}

/* QR Code */
.qr-code-section {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.qr-code-wrapper {
  width: 200px;
  height: 200px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-code-section h3 {
  color: var(--text-dark);
  font-size: 24px;
  margin-bottom: 20px;
}

.qr-code-section p {
  color: var(--text-light);
  margin: 15px 0;
}

.qr-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 15px;
  color: var(--text-light);
  font-size: 14px;
}

/* Métodos de Pagamento */
.payment-options {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.payment-options h3 {
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}

.payment-buttons {
  margin: 30px 0;
}

.method-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border: 1px solid rgba(242, 118, 73, 0.1);
  border-radius: 12px;
  background: white;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.method-option i {
  font-size: 18px;
  color: var(--primary-color);
  opacity: 0.8;
}

.method-option:hover,
.method-option.active {
  background: rgba(242, 118, 73, 0.03);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.payment-info {
  color: var(--text-light);
  font-size: 13px;
  text-align: center;
}

/* Responsividade ajustada */
@media (max-width: 1400px) {
  .donation-options {
    width: 700px;
  }

  .adopt-student-section {
    width: 380px;
  }
}

@media (max-width: 1200px) {
  .donation-wrapper {
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
  }

  .donation-options {
    width: auto;
  }

  .adopt-student-section {
    width: auto;
  }
}

@media (max-width: 991px) {
  .donation-wrapper {
    grid-template-columns: 1fr;
  }

  .donation-options,
  .adopt-student-section {
    width: 100%;
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .donation-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .qr-code-section {
    padding-right: 0;
    padding-bottom: 30px;
    border-right: none;
    border-bottom: 1px solid rgba(242, 118, 73, 0.1);
  }

  .payment-options {
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .donation-wrapper {
    padding: 0 15px;
  }
  
  .donation-options,
  .adopt-student-section {
    padding: 25px;
  }
}

/* Footer - Versão Harmonizada */
.footer-area {
  background-color: #FAFAFA;
  color: var(--text-light);
  padding: 80px 0 30px;
  border-top: 1px solid #f0f0f0;
  background: linear-gradient(135deg, var(--primary-fade) 0%, var(--secondary-fade) 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* Coluna Principal */
.footer-main {
  max-width: 300px;
}

.footer-logo {
  display: block;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-description {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: white;
  color: var(--text-light);
  border: 1px solid #eee;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
}

/* Colunas de Links */
.footer-nav h4,
.footer-programs h4,
.footer-contact h4 {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-programs ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav ul li a,
.footer-programs ul li a {
  color: var(--text-light);
  font-size: 14px;
  transition: all 0.2s ease;
}

.footer-nav ul li a:hover,
.footer-programs ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

/* Contato */
.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-contact ul li i {
  color: var(--primary-color);
  font-size: 16px;
  margin-top: 3px;
}

/* Copyright */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: var(--text-light);
}

/* Responsividade */
@media (max-width: 991px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-main {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-contact ul li {
    justify-content: center;
  }
}

/* Responsividade */
@media (max-width: 1200px) {
  .banner_content {
    gap: 10px;
  }

  .banner-image-wrapper {
    max-width: 450px;
  }

  .image-background {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 991px) {
  .banner_content {
    flex-direction: column;
    padding-top: 100px;
    text-align: center;
  }

  .banner_content_left, 
  .banner_content_right {
    flex: 1;
    max-width: 100%;
    padding: 0;
  }

  .banner-image-wrapper {
    max-width: 400px;
    margin: 40px auto 0;
  }

  .floating-card {
    position: relative;
    bottom: 0;
    right: 0;
    margin: 30px auto 0;
  }

  .courses_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .banner-btns {
    justify-content: center;
  }

  .banner-stats {
    justify-content: center;
  }

  .heading1 {
    font-size: 48px;
    line-height: 1.2;
  }

  .heading2 {
    font-size: 36px;
    line-height: 1.3;
  }

  .heading3 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .courses_grid {
    grid-template-columns: 1fr;
  }
}

/* Ajuste responsivo */
@media (max-height: 800px) {
  .banner-area {
    padding: 30px 0 20px;
  }

  .banner-badge {
    margin-bottom: 20px;
  }

  .heading1 {
    font-size: 64px;
    margin-bottom: 15px;
  }

  .banner-description {
    margin-bottom: 25px;
  }

  .banner-stats {
    margin-top: 30px;
    padding: 25px;
  }

  .stat-value {
    font-size: 36px;
  }
}

@media (max-height: 700px) {
  .banner-area {
    padding: 0px;
  }

  .heading1 {
    font-size: 56px;
  }

  .banner-stats {
    padding: 20px;
  }

  .stat-value {
    font-size: 32px;
  }
}

/* História Area - Versão mais discreta */
.history-area {
  padding: 50px 0;
  background: #FAFAFA;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.history-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.history-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.history-icon {
  width: 50px;
  height: 50px;
  background: rgba(242, 118, 73, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--primary-color);
  font-size: 20px;
}

.history-card h3 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.history-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Ajuste dos números de impacto */
.impact-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.impact-item {
  text-align: center;
}

.impact-icon {
  width: 40px;
  height: 40px;
  background: rgba(242, 118, 73, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--primary-color);
  font-size: 16px;
}

.impact-value {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.impact-label {
  color: var(--text-light);
  font-size: 13px;
}

/* Responsividade */
@media (max-width: 991px) {
  .history-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .impact-numbers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .history-grid {
    grid-template-columns: 1fr;
  }
}

/* Partners Area Styles */
.partners-area {
  padding: 100px 0;
  background: linear-gradient(135deg, #FFF6F2 0%, #FFF9F6 100%);
  position: relative;
}

.section-description {
  font-size: 15px;
  color: var(--text-light);
  max-width: 600px;
  margin: 18px auto 0;
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 35px auto;
  padding: 0 20px;
}

.partner-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.partner-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-info h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.partner-info p {
  font-size: 14px;
  color: var(--text-light);
}

.partners-cta {
  text-align: center;
  margin-top: 25px;
}

.partners-cta p {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

/* Responsividade */
@media (max-width: 1200px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .partner-card {
    padding: 20px;
  }
}

/* Botão de Scroll */
.scroll-button {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(242, 118, 73, 0.3);
  z-index: 9999;
}

.scroll-button i {
  color: white;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.scroll-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(242, 118, 73, 0.4);
}

.scroll-button.down i {
  transform: rotate(180deg);
}

/* ODS Area Styles */
.ods-area {
  padding: 100px 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF6F2 100%);
  position: relative;
  overflow: hidden;
}

.ods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 35px auto;
}

.ods-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 15px;
}

.ods-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.ods-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.ods-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.ods-number {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-width: 2px;
  border-style: solid;
  transition: all 0.3s ease;
}

.ods-content h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.ods-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.ods-actions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ods-actions li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
}

.ods-actions li i {
  color: var(--primary-color);
  font-size: 12px;
  padding: 4px;
  background: rgba(242, 118, 73, 0.1);
  border-radius: 50%;
}

.ods-footer {
  text-align: center;
  margin-top: 20px;
}

/* Responsividade */
@media (max-width: 1200px) {
  .ods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ods-grid {
    grid-template-columns: 1fr;
  }

  .ods-card {
    padding: 30px;
  }
}

/* Success Stories Area Styles */
.success-stories-area {
  padding: 100px 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF6F2 100%);
  position: relative;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 35px auto;
  padding: 0 20px;
}

.story-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.story-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
}

.story-content {
  padding: 20px;
}

.story-content h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.story-year {
  display: block;
  font-size: 14px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 500;
}

.story-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.story-achievements {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.achievement {
  display: flex;
  align-items: center;
  gap: 12px;
}

.achievement i {
  width: 32px;
  height: 32px;
  background: rgba(242, 118, 73, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 14px;
}

.achievement span {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.stories-cta {
  text-align: center;
  margin-top: 25px;
}

/* Responsividade */
@media (max-width: 1200px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Ajuste geral dos espaçamentos entre seções */
.music-area,
.success-stories-area,
.ods-area,
.history-area,
.partners-area,
.contribute_area {
  padding: 50px 0;
}

/* Ajuste dos espaçamentos internos */
.section-title {
  margin-bottom: 35px;
}

.section-description {
  margin: 18px auto 0;
}

/* Ajuste dos grids */
.stories-grid,
.ods-grid,
.partners-grid,
.courses_grid {
  margin: 35px auto;
  gap: 25px;
}

/* Ajuste dos CTAs */
.stories-cta,
.ods-footer,
.partners-cta {
  margin-top: 25px;
}

/* Ajuste do padding interno dos cards */
.course_content,
.story-content,
.ods-card,
.partner-card {
  padding: 25px;
}

/* Ajuste do espaçamento da seção de história */
.history-content {
  gap: 35px;
  margin-top: 25px;
}

/* Ajuste do espaçamento entre seções específicas */
.music-area + .success-stories-area,
.success-stories-area + .ods-area,
.ods-area + .history-area,
.history-area + .partners-area,
.partners-area + .contribute_area {
  padding-top: 30px;
}

/* Ajustes específicos para a seção de música */
.music-area {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF6F2 100%);
  padding: 80px 0;
  position: relative;
}

.music-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 118, 73, 0.2), transparent);
}

/* Responsividade */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 32px;
  }
  
  .section-title .section-description {
    font-size: 15px;
    padding: 0 20px;
  }
}

/* Ajuste específico para a transição entre doação e parceiros */
.contribute_area {
  padding-bottom: 70px;
}

.partners-area {
  padding-top: 50px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF6F2 100%);
}

/* Ajuste específico para a transição entre história e parceiros */
.history-area {
  padding-bottom: 70px;
}

.partners-area {
  padding-bottom: 70px;
}

.contribute_area {
  padding-top: 50px;
}

/* História Highlight */
.history-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 0 20px;
  align-items: center;
}

.history-text h3 {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.history-text p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.history-text p:last-child {
  margin-bottom: 0;
}

.history-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.history-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.history-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

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

/* Responsividade */
@media (max-width: 991px) {
  .history-highlight {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .history-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .history-text h3 {
    font-size: 20px;
  }

  .history-text p {
    font-size: 14px;
  }
}

/* Contato Area */
.contact-area {
  padding: 80px 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 50px auto 0;
  padding: 0 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(242, 118, 73, 0.1);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(242, 118, 73, 0.1);
}

.contact-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(242, 118, 73, 0.1);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-role {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-details a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 14px;
  transition: color 0.2s ease;
}

.contact-details a i {
  color: var(--primary-color);
  font-size: 14px;
  opacity: 0.8;
}

.contact-details a:hover {
  color: var(--primary-color);
}

/* Responsividade */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .contact-card {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .contact-details {
    align-items: center;
  }
}

.ods-visual {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Cores específicas das ODS com gradientes mais suaves */
.ods-4 {
  background: var(--primary-color);
  box-shadow: 0 8px 24px var(--primary-fade);
}

.ods-10 {
  background: var(--gradient-mix);
  box-shadow: 0 8px 24px var(--primary-fade);
}

.ods-11 {
  background: var(--gradient-secondary);
  box-shadow: 0 8px 24px var(--secondary-fade);
}

.ods-visual i {
  font-size: 32px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  transition: all 0.3s ease;
}

/* Animação hover mais suave */
.ods-card:hover .ods-visual {
  transform: scale(1.05);
}

.ods-card:hover .ods-visual i {
  transform: scale(1.1);
}

/* Estilo do Card Adote um Aluno */
.adopt-student-section {
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(242, 118, 73, 0.08);
  border: 1px solid rgba(242, 118, 73, 0.1);
  transition: all 0.3s ease;
  width: 420px;
  margin: 0 auto;
}

.adopt-student-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(242, 118, 73, 0.12);
}

.adopt-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.adopt-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 8px 20px rgba(242, 118, 73, 0.15);
}

.adopt-icon i {
  font-size: 28px;
  color: white;
}

.adopt-student-section h3 {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
}

.adopt-content p {
  text-align: center;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.adopt-benefits {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 10px 0;
}

.adopt-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 15px;
}

.adopt-benefits li i {
  color: var(--primary-color);
  font-size: 14px;
  padding: 6px;
  background: rgba(242, 118, 73, 0.1);
  border-radius: 50%;
}

.adopt-button {
  width: 100%;
  max-width: 300px;
  margin-top: 20px;
  padding: 15px 30px;
  font-size: 16px;
}

/* Responsividade */
@media (max-width: 991px) {
  .adopt-card {
    padding: 0 15px;
  }
  
  .adopt-student-section {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .adopt-student-section {
    padding: 25px;
  }
  
  .adopt-student-section h3 {
    font-size: 20px;
  }
  
  .adopt-content p {
    font-size: 15px;
  }
  
  .adopt-benefits li {
    font-size: 14px;
  }
}

/* Preloader mais elegante */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.loader {
  width: 50px;
  height: 50px;
}

.loader svg {
  width: 100%;
  height: 100%;
}

.loader circle {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 4;
  stroke-dasharray: 150, 200;
  stroke-dashoffset: -10;
  animation: loader 1.5s ease-in-out infinite;
}

@keyframes loader {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}

/* Script para remover o preloader */

/* Ajuste das seções para ter espaço para a navbar */
#programas, #parceiros, #historia, #contato, #doar {
  margin-top: 0;
  padding-top: 0;
}

/* Ajuste do scroll suave com offset maior */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 200px; /* Aumentado para dar mais espaço */
}

/* Ajuste das seções */
.section-title {
  position: relative;
  z-index: 1;
  padding-top: 40px; /* Pequeno espaço para melhorar visual */
}

/* Estilização da barra de rolagem */
::-webkit-scrollbar {
  width: 8px; /* Diminuído para ficar mais elegante */
  background: transparent;
}

::-webkit-scrollbar-track {
  background: rgba(242, 118, 73, 0.05);
  border-radius: 100px; /* Aumentado para ficar bem redondo */
  margin: 5px 0; /* Adiciona espaço nas extremidades */
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 100px; /* Aumentado para ficar bem redondo */
  border: 2px solid white;
  transition: all 0.3s ease;
  min-height: 40px; /* Altura mínima do thumb */
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-mix);
}

/* Suporte para Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) rgba(242, 118, 73, 0.05);
}

/* Comportamento suave do scroll */
html {
  scroll-behavior: smooth;
}

/* Ajustes de responsividade existentes e novos */
@media (max-width: 991px) {
  .header-main {
    max-width: 95%;
    padding: 10px 20px;
  }

  .header-nav nav ul {
    gap: 15px;
  }

  .header-nav nav ul li a {
    font-size: 13px;
  }

  .banner_content {
    flex-direction: column;
    padding-top: 100px;
    text-align: center;
  }

  .banner_content_left, 
  .banner_content_right {
    flex: 1;
    max-width: 100%;
    padding: 0;
  }

  .banner-btns {
    justify-content: center;
  }

  .banner-stats {
    justify-content: center;
  }

  .heading1 {
    font-size: 48px;
    line-height: 1.2;
  }

  .heading2 {
    font-size: 36px;
    line-height: 1.3;
  }

  .heading3 {
    font-size: 32px;
  }
}

/* Ajustes específicos para smartphones */
@media (max-width: 767px) {
    .banner-area {
        padding-top: 120px; /* Aumentado para dar espaço ao header fixo */
    }
    
    .banner_content {
        flex-direction: column;
        gap: 30px;
    }

    .banner_content_left {
        text-align: center;
        padding: 0 15px;
    }

    /* Garantir que as fontes e estilos sejam mantidos */
    .heading1 {
        font-family: "Poppins", sans-serif;
        font-size: 36px;
        line-height: 1.2;
        font-weight: 700;
        background: var(--gradient-mix);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 15px;
    }

    .banner-description {
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        line-height: 1.5;
        color: var(--text-light);
        margin-bottom: 25px;
    }

    .banner-badge {
        font-family: "Poppins", sans-serif;
        margin-bottom: 20px;
    }

    .pre-title, .badge-year {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
    }
}

/* Adicionar estas regras */
.mobile-only {
  display: none;
}

/* Ajuste para mobile */
@media (max-width: 767px) {
  .banner_content_right {
    display: none; /* Esconde a versão desktop em mobile */
  }
  
  .mobile-only {
    display: block; /* Mostra a versão mobile quando necessário */
    margin: 20px auto;
    max-width: 80%;
  }
}

@media (max-width: 767px) {
  /* Reset dos estilos anteriores */
  .banner-stats,
  .banner-btns {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 20px 0;
  }

  /* Novo estilo para os KPIs */
  .banner-stats {
    background: transparent;
    box-shadow: none;
    padding: 0;
    justify-content: space-between;
    gap: 10px;
  }

  .stat-item {
    flex: 0 0 calc(33.333% - 10px);
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  .stat-value {
    font-size: 24px;
    font-weight: 700;
  }

  .stat-label {
    font-size: 12px;
    line-height: 1.3;
  }

  /* Remover divisores em mobile */
  .stat-divider {
    display: none;
  }

  /* Novo estilo para os botões */
  .banner-btns {
    gap: 10px;
    justify-content: center;
  }

  .btn {
    flex: 0 0 auto;
    width: auto;
    min-width: 140px;
    max-width: none;
    padding: 10px 20px;
    font-size: 14px;
  }

  .btn i {
    font-size: 12px;
  }

  /* Ajustes gerais do banner */
  .banner_content_left {
    padding: 0 15px;
  }

  .banner-description {
    font-size: 14px;
    line-height: 1.5;
    margin: 15px auto;
  }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
  .banner-stats {
    flex-direction: column;
    gap: 8px;
  }

  .stat-item {
    flex: 0 0 100%;
  }

  .banner-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

/* Ajustes do header e navbar */
@media (max-width: 767px) {
  .header-main {
    max-width: 100%;
    border-radius: 0;
    padding: 10px 15px;
    background: white;
  }

  .header-menu {
    justify-content: space-between;
    align-items: center;
  }

  /* Esconder todos os itens do menu exceto "Doe Agora" */
  .header-nav nav ul li {
    display: none;
  }

  /* Mostrar apenas o botão "Doe Agora" */
  .header-nav nav ul li:last-child {
    display: block;
  }

  /* Ajustes do logo */
  .header-logo img {
    max-height: 35px;
    width: auto;
  }

  /* Remover menu toggle */
  .menu-toggle {
    display: none;
  }

  /* Ajustes do botão Doe Agora */
  .header-nav nav ul li a.btn-primary {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* Garantir que o nav esteja sempre visível */
  .header-nav {
    display: block !important;
  }

  /* Remover qualquer animação ou transição */
  .header-nav nav {
    display: block !important;
  }
}

/* Efeito de scroll */
.header-area.scrolled .header-main {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

/* Cores dos ícones ODS */
.ods-4 {
  background: var(--primary-color); /* Rosa - já existente */
}

.ods-10 {
  background: var(--secondary-color); /* Amarelo - já existente */
}

.ods-16 {
  background: #00689D; /* Azul escuro - cor oficial do ODS 16 */
}

.ods-17 {
  background: #19486A; /* Azul marinho - cor oficial do ODS 17 */
}

.ods-visual {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.ods-visual i {
  color: white;
  font-size: 24px;
}

/* Hover effect */
.ods-card:hover .ods-visual {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Estilo dos Depoimentos */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
  padding: 0 20px;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 15px;
}

.testimonial-author h4 {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
}

/* Responsividade */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-content p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 15px;
  }
}

/* Formulário de Inscrição */
.form-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.form-label {
  display: block;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-fade);
  outline: none;
}

.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 15px;
  background-color: white;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.btn-submit {
  background: var(--primary-color);
  color: white;
  padding: 12px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 122, 0.2);
}

/* Responsividade do formulário */
@media (max-width: 768px) {
  .form-container {
    padding: 20px;
    margin: 0 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-control,
  .form-select {
    padding: 10px 14px;
    font-size: 14px;
  }

  .btn-submit {
    width: 100%;
    padding: 12px 20px;
  }
}

/* Mensagens de feedback */
.form-message {
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.form-message.success {
  background: rgba(0, 200, 83, 0.1);
  color: #00C853;
  border: 1px solid rgba(0, 200, 83, 0.2);
}

.form-message.error {
  background: rgba(244, 67, 54, 0.1);
  color: #F44336;
  border: 1px solid rgba(244, 67, 54, 0.2);
}

/* Campo obrigatório */
.required::after {
  content: "*";
  color: var(--primary-color);
  margin-left: 4px;
}

/* Modal de Inscrição */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 40px;
  width: 90%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.modal h2 {
  color: var(--text-dark);
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: bold;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-modal:hover {
  color: var(--primary-color);
}

/* Estilo do Formulário */
.modal .form-group {
  margin-bottom: 20px;
}

.modal label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
}

.modal input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: #fff;
}

.modal input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-fade);
  outline: none;
}

.modal button[type="submit"] {
  width: 100%;
  padding: 14px 20px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 122, 0.2);
}

.modal button[type="submit"] i {
  font-size: 16px;
}

/* Responsividade do Modal */
@media (max-width: 768px) {
  .modal-content {
    margin: 10% auto;
    padding: 25px;
    width: 95%;
  }

  .modal h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .modal input {
    padding: 10px 14px;
    font-size: 14px;
  }

  .modal button[type="submit"] {
    padding: 12px 16px;
    font-size: 15px;
  }
}

/* Animação do Modal */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-content {
  animation: modalFadeIn 0.3s ease-out;
}

/* Estilo para o ano destacado */
.highlight-year {
  font-size: 32px; /* Mesmo tamanho dos outros números */
  font-weight: 600;
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Ajuste do layout do stat-item */
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat-item .stat-label {
  color: var(--text-light);
  font-size: 14px;
  font-weight: normal;
}

/* Responsividade */
@media (max-width: 768px) {
  .stat-value,
  .highlight-year {
    font-size: 28px;
  }
  
  .stat-item .stat-label {
    font-size: 13px;
  }
}

/* Estilos para destacar palavras */
.highlight-primary {
  color: var(--primary-color);
  font-weight: 600;
}

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

.highlight-mix {
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Adicionar ao final do arquivo */
.adopt-benefits-container,
.adopt-engagement {
  width: 100%;
  margin: 20px 0;
  text-align: left;
}

.adopt-benefits-container h4,
.adopt-engagement h4 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.adopt-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.adopt-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-light);
}

.adopt-benefits li i {
  color: var(--primary-color);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.adopt-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

.adopt-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.adopt-content > p {
  font-size: 16px;
  color: var(--text-light);
  margin: 15px 0;
  max-width: 400px;
}

.adopt-button {
  margin-top: 20px;
  width: 100%;
  max-width: 300px;
}

@media (max-width: 768px) {
  .adopt-card {
    padding: 20px;
  }

  .adopt-benefits-container h4,
  .adopt-engagement h4 {
    font-size: 15px;
  }

  .adopt-benefits li {
    font-size: 14px;
  }
}
