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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #1a237e, #3949ab);
  color: white;
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3); }
  50% { box-shadow: 0 6px 25px rgba(26, 35, 126, 0.5); }
  100% { box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3); }
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn:hover .btn-shine {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid #fbc02d;
}

.btn-secondary:hover {
  background: #fbc02d;
  color: #1a237e;
}

.btn-outline {
  background: transparent;
  color: #1a237e;
  border: 2px solid #1a237e;
}

.btn-outline:hover {
  background: #1a237e;
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Header Melhorado com Logo Mai/* Header Desktop Corrigido */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 35, 126, 0.95);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: none;
}

.logo {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(251, 192, 45, 0.3));
}

.school-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  line-height: 1.1;
  white-space: nowrap;
  color: white;
}

.name-part {
  font-size: 0.9rem;
  opacity: 0.9;
}

.name-highlight {
  color: #fbc02d;
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(251, 192, 45, 0.4);
}

.school-subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
  margin: 2px 0 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
  max-width: 600px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 15px;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 6px 12px;
  font-size: 0.85rem;
  white-space: nowrap;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
  color: #1a237e;
  background: #fbc02d;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(251, 192, 45, 0.3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: none;
}

.social-header {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
}

.btn {
  padding: 8px 16px;
  font-size: 0.8rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #fbc02d, #f57f17);
  color: #1a237e;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(251, 192, 45, 0.4);
}ine-height: 1.1;
  white-space: nowrap;
}

.name-part {
  font-size: 1.1rem;
  opacity: 0.9;
}

.name-highlight {
  color: #fbc02d;
  font-size: 1.5rem;
  text-shadow: 0 0 15px rgba(251, 192, 45, 0.4);
}

.school-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin: 8px 0 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.school-subtitle i {
  color: #fbc02d;
  font-size: 1.1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  margin: 0 10px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 15px; /* Reduzindo o gap */
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.05); /* Fundo sutil */
  padding: 8px 15px; /* Padding ajustado */
  border-radius: 25px; /* Bordas mais arredondadas */
  backdrop-filter: blur(10px); /* Efeito blur */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Borda sutil */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra leve */
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 10px; /* Padding reduzido */
  font-size: 0.8rem; /* Fonte menor */
  white-space: nowrap;
  border-radius: 20px; /* Bordas mais arredondadas */
  background: transparent; /* Fundo transparente */
  border: none; /* Sem borda inicial */
  overflow: hidden;
}

.nav-link::before {
  content: \'\';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #fbc02d, #f57f17); /* Gradiente de hover */
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.9); /* Escala menor no hover */
  transition: all 0.3s ease;
  z-index: -1;
}

.nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.nav-link:hover {
  color: #1a237e; /* Cor do texto no hover */
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(251, 192, 45, 0.3); /* Sombra no hover */
}

.nav-link::after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px; /* Reduzindo o gap */
  flex: 0 0 auto;
}

.social-header {
  display: flex;
  gap: 8px; /* Reduzindo o gap */
  background: none;
  padding: 0;
  border-radius: 0;
  backdrop-filter: none;
  border: none;
}

.social-link {
  width: 30px; /* Tamanho menor */
  height: 30px; /* Tamanho menor */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem; /* Fonte menor */
  background: rgba(255, 255, 255, 0.1); /* Fundo sutil */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Borda sutil */
}

.social-link::before {
  content: \'\';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link.facebook {
  color: #1877f2;
}

.social-link.facebook::before {
  background: #1877f2;
}

.social-link.facebook:hover {
  color: white;
  transform: translateY(-1px);
}

.social-link.instagram {
  color: #e1306c;
}

.social-link.instagram::before {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.instagram:hover {
  color: white;
  transform: translateY(-1px);
}

.header-actions .btn {
  white-space: nowrap;
  padding: 8px 15px; /* Padding reduzido */
  font-size: 0.8rem; /* Fonte menor */
  border-radius: 20px;
  background: linear-gradient(135deg, #fbc02d, #f57f17);
  color: #1a237e;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(251, 192, 45, 0.3); /* Sombra ajustada */
  border: none;
  position: relative;
  overflow: hidden;
}

.header-actions .btn::before {
  content: \'\';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.header-actions .btn:hover::before {
  left: 100%;
}

.header-actions .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(251, 192, 45, 0.4); /* Sombra ajustada */
}

.header-actions .btn span {
  display: inline;
  position: relative;
  z-index: 1;
}


.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link.facebook {
  background: rgba(24, 119, 242, 0.2);
  color: #1877f2;
  border: 1px solid rgba(24, 119, 242, 0.3);
}

.social-link.facebook::before {
  background: #1877f2;
}

.social-link.facebook:hover {
  color: white;
  transform: translateY(-2px);
}

.social-link.instagram {
  background: rgba(225, 48, 108, 0.2);
  color: #e1306c;
  border: 1px solid rgba(225, 48, 108, 0.3);
}

.social-link.instagram::before {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.instagram:hover {
  color: white;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle Melhorado */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  position: relative;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-text {
  font-size: 0.7rem;
  color: white;
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay Melhorado */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 35, 126, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
  position: relative;
  overflow: hidden;
}

.mobile-menu-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mobilePattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23fbc02d" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23mobilePattern)"/></svg>');
  opacity: 0.3;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 3px solid rgba(251, 192, 45, 0.4);
  position: relative;
  z-index: 2;
  background: rgba(26, 35, 126, 0.8);
  margin: -30px -30px 30px -30px;
  padding: 25px 30px 25px 30px;
  backdrop-filter: blur(10px);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.mobile-logo img {
  height: 50px;
}

.mobile-logo span {
  font-weight: 700;
  color: #fbc02d;
  font-size: 1.2rem;
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(251, 192, 45, 0.2);
  border-color: #fbc02d;
  transform: rotate(90deg);
}

.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 192, 45, 0.2);
}

.mobile-nav-link {
  color: #fbc02d;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(251, 192, 45, 0.2);
  white-space: nowrap;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #fbc02d, #f57f17);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.mobile-nav-link:hover {
  color: #1a237e;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(251, 192, 45, 0.4);
}

.mobile-nav-link:hover::before {
  opacity: 1;
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  padding: 25px 20px 20px;
  border-top: 3px solid rgba(251, 192, 45, 0.4);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.mobile-social {
  text-align: center;
  color: white;
}

.mobile-social span {
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.1rem;
}

.mobile-social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.mobile-social-link {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.mobile-social-link.facebook {
  background: #1877f2;
  color: white;
}

.mobile-social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.mobile-social-link:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Hero Section com Melhor Espaçamento */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  overflow: hidden;
  margin-top: 0;
  padding-top: 120px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('./hero_banner.png') center/cover no-repeat;
  opacity: 0.3;
  animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(1deg); }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('./hero_banner.png') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.8), rgba(57, 73, 171, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 50px 0;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.highlight {
  color: #fbc02d;
  display: block;
  margin-top: 10px;
  text-shadow: 0 0 20px rgba(251, 192, 45, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 20px rgba(251, 192, 45, 0.5); }
  to { text-shadow: 0 0 30px rgba(251, 192, 45, 0.8); }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.8;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: #fbc02d;
  opacity: 0;
  animation: statLine 1s ease 1.5s forwards;
}

@keyframes statLine {
  to { opacity: 1; }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fbc02d;
  display: block;
  animation: countUp 2s ease 1s;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Seções com Animações */
section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin: 0;
  border: none;
}

section:not(.hero):not(.map-section) {
  margin-top: 0;
}

/* Hero Section com Melhor Espaçamento */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  overflow: hidden;
  margin: 0;
  padding-top: 120px;
  border-bottom: none;
}

/* About Section */
.about-section {
  background: #f8f9fa;
  margin: 0;
  padding: 80px 0;
  border-top: none;
  border-bottom: none;
}

/* Methodology Section */
.methodology-section {
  background: white;
  margin: 0;
  padding: 80px 0;
  border-top: none;
  border-bottom: none;
}

/* Proposal Section */
.proposal-section {
  background: #f8f9fa;
  margin: 0;
  padding: 80px 0;
  border-top: none;
  border-bottom: none;
}

/* Help Section */
.help-section {
  background: white;
  margin: 0;
  padding: 80px 0;
  border-top: none;
  border-bottom: none;
}

/* FAQ Section */
.faq-section {
  background: #f8f9fa;
  margin: 0;
  padding: 80px 0;
  border-top: none;
  border-bottom: none;
}

/* Contact Section */
.contact-section {
  background: white;
  margin: 0;
  padding: 80px 0;
  border-top: none;
  border-bottom: none;
}

/* Map Section */
.map-section {
  background: linear-gradient(135deg, #1a237e, #3949ab);
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
  color: white;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 60px 0 20px;
  border-top: none;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.section-header.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  color: #1a237e;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #fbc02d, #f57f17);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.text-content {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.text-content.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.text-content h3 {
  color: #1a237e;
  margin-bottom: 1rem;
  position: relative;
}

.text-content h3::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: #fbc02d;
  border-radius: 2px;
}

.mission-points {
  margin-top: 2rem;
}

.point {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.point.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.point:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.point i {
  color: #1a237e;
  font-size: 1.2rem;
  min-width: 20px;
}

.about-image {
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.about-image.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.main-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.main-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(26, 35, 126, 0.9);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(10px);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.about-image:hover .image-overlay {
  transform: translateY(0);
  opacity: 1;
}

.overlay-content h4 {
  margin-bottom: 0.5rem;
  color: #fbc02d;
}

/* Cards com Animações */
.methodology-grid,
.proposal-pillars,
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.method-card,
.pillar,
.help-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #1a237e;
  opacity: 0;
  transform: translateY(30px);
}

.method-card.animate-in,
.pillar.animate-in,
.help-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.method-card:hover,
.pillar:hover,
.help-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-icon,
.pillar-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1a237e, #3949ab);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}

.card-icon::before,
.pillar-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.method-card:hover .card-icon::before,
.pillar:hover .pillar-icon::before {
  left: 100%;
}

.card-icon i,
.pillar-icon i {
  font-size: 2rem;
  color: white;
}

.help-card .card-icon {
  background: linear-gradient(135deg, #fbc02d, #f57f17);
}

.pillar-icon {
  background: linear-gradient(135deg, #fbc02d, #f57f17);
}

/* Social Actions Vertical */
.social-actions-vertical {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-btn.facebook {
  background: #1877f2;
  color: white;
}

.social-btn.facebook:hover {
  background: #166fe5;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.social-btn.instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.social-btn.whatsapp {
  background: #25d366;
  color: white;
}

.social-btn.whatsapp:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* FAQ com Animações */
.faq-section {
  background: #f8f9fa;
}

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

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.faq-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a237e;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(251, 192, 45, 0.1), transparent);
  transition: width 0.3s ease;
}

.faq-question:hover::before {
  width: 100%;
}

.faq-question:hover {
  background: #f8f9fa;
  padding-left: 30px;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8f9fa;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-info {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.contact-info.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.contact-info h3 {
  color: #1a237e;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.info-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1a237e, #3949ab);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.info-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fbc02d;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.info-item:hover .info-icon::before {
  transform: scale(1);
}

.info-icon i {
  color: white;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.info-content h4 {
  color: #1a237e;
  margin-bottom: 0.5rem;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.contact-form.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.contact-form h3 {
  color: #1a237e;
  margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a237e;
  box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
  transform: translateY(-2px);
}

/* Footer com Logo Maior */
.site-footer {
  background: linear-gradient(135deg, #1a237e, #3949ab);
  color: white;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fbc02d, transparent);
}

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

.footer-section h3,
.footer-section h4 {
  color: #fbc02d;
  margin-bottom: 1rem;
}

.footer-description {
  opacity: 0.9;
  line-height: 1.6;
}

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

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

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #fbc02d;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: #fbc02d;
  padding-left: 15px;
}

.footer-links a:hover::before {
  width: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.social-icon:hover::before {
  transform: scale(1);
}

.social-icon.facebook {
  background: rgba(24, 119, 242, 0.2);
  color: #1877f2;
  border: 1px solid rgba(24, 119, 242, 0.3);
}

.social-icon.facebook::before {
  background: #1877f2;
}

.social-icon.facebook:hover {
  color: white;
  transform: translateY(-3px);
}

.social-icon.instagram {
  background: rgba(225, 48, 108, 0.2);
  color: #e1306c;
  border: 1px solid rgba(225, 48, 108, 0.3);
}

.social-icon.instagram::before {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.instagram:hover {
  color: white;
  transform: translateY(-3px);
}

.social-icon.whatsapp {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.social-icon.whatsapp::before {
  background: #25d366;
}

.social-icon.whatsapp:hover {
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo img {
  height: 60px;
  filter: drop-shadow(0 0 10px rgba(251, 192, 45, 0.3));
}

.footer-logo-text {
  color: #fbc02d;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a237e, #3949ab);
  color: white;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
}

/* Animações Globais */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsividade Mobile Completamente Refatorada */
@media (max-width: 768px) {
  /* Reset e configurações básicas */
  * {
    box-sizing: border-box !important;
    max-width: 100% !important;
  }
  
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    margin: 0 auto !important;
    overflow-x: hidden !important;
  }
  
  /* Tipografia mobile */
  h1 { 
    font-size: 1.4rem !important; 
    line-height: 1.2 !important; 
    margin: 0.5rem 0 !important;
    word-wrap: break-word !important;
  }
  
  h2 { 
    font-size: 1.3rem !important; 
    line-height: 1.2 !important; 
    margin: 0.5rem 0 !important;
    word-wrap: break-word !important;
  }
  
  h3 { 
    font-size: 1.1rem !important; 
    line-height: 1.2 !important; 
    margin: 0.4rem 0 !important;
    word-wrap: break-word !important;
  }
  
  h4 { 
    font-size: 1rem !important; 
    line-height: 1.2 !important; 
    margin: 0.3rem 0 !important;
    word-wrap: break-word !important;
  }
  
  p, li, span {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    word-wrap: break-word !important;
  }
  
  /* Header Mobile */
  .site-header {
    padding: 8px 0 !important;
    position: fixed !important;
    width: 100% !important;
    z-index: 1000 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }
  
  .header-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 5px !important;
    flex-wrap: nowrap !important;
  }
  
  .logo-area {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex: 1 !important;
    min-width: 0 !important;
    max-width: calc(100% - 50px) !important;
    overflow: hidden !important;
  }
  
  .logo {
    height: 30px !important;
    width: auto !important;
    flex-shrink: 0 !important;
  }
  
  .school-info {
    flex: 1 !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }
  
  .school-name {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1px !important;
    line-height: 1 !important;
    margin: 0 !important;
  }
  
  .name-part {
    font-size: 0.65rem !important;
    opacity: 0.9 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
    margin: 0 !important;
  }
  
  .name-highlight {
    font-size: 0.7rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
    margin: 0 !important;
  }
  
  .school-subtitle {
    font-size: 0.55rem !important;
    margin-top: 1px !important;
    gap: 2px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
  }
  
  .school-subtitle i {
    font-size: 0.6rem !important;
    flex-shrink: 0 !important;
  }
  
  /* Menu mobile toggle */
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    padding: 6px !important;
    flex-shrink: 0 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
  }
  
  .hamburger-line {
    width: 18px !important;
    height: 2px !important;
    background: white !important;
    margin: 1px 0 !important;
    transition: all 0.3s ease !important;
  }
  
  .menu-text {
    font-size: 0.5rem !important;
    margin-top: 1px !important;
    color: white !important;
    text-align: center !important;
  }
  
  /* Esconder elementos desktop no mobile */
  .main-nav,
  .social-header,
  .header-actions {
    display: none !important;
  }
  
  /* Hero Section Mobile */
  .hero {
    padding-top: 70px !important;
    min-height: 70vh !important;
    padding-bottom: 20px !important;
    background-attachment: scroll !important;
  }
  
  .hero-content {
    padding: 15px 0 !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .hero-title {
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.6rem !important;
    word-wrap: break-word !important;
    padding: 0 5px !important;
  }
  
  .hero-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3 !important;
    padding: 0 5px !important;
  }
  
  .hero-description {
    font-size: 0.8rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
    padding: 0 8px !important;
  }
  
  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 1.2rem !important;
    padding: 0 10px !important;
  }
  
  .hero-actions .btn {
    width: 100% !important;
    max-width: 250px !important;
    padding: 10px 15px !important;
    font-size: 0.85rem !important;
    border-radius: 15px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  .hero-stats {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 12px !important;
    padding: 0 10px !important;
  }
  
  .stat-item {
    padding: 10px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    backdrop-filter: blur(10px) !important;
    margin: 0 5px !important;
    text-align: center !important;
  }
  
  .stat-number {
    font-size: 1.5rem !important;
    margin-bottom: 3px !important;
    line-height: 1 !important;
  }
  
  .stat-label {
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
  }
  
  /* Seções gerais mobile */
  section {
    padding: 30px 0 !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .section-title {
    font-size: 1.3rem !important;
    margin-bottom: 0.5rem !important;
    text-align: center !important;
    padding: 0 8px !important;
    word-wrap: break-word !important;
  }
  
  .section-subtitle {
    font-size: 0.85rem !important;
    text-align: center !important;
    padding: 0 8px !important;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
  }
  
  /* About section mobile */
  .about-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 10px !important;
  }
  
  .about-text h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .about-text p {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.8rem !important;
  }
  
  .about-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 10px !important;
    margin: 0 !important;
  }
  
  /* Methodology grid mobile */
  .methodology-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 10px !important;
    margin-top: 20px !important;
  }
  
  .method-card {
    padding: 15px 12px !important;
    margin-bottom: 10px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .card-icon {
    width: 40px !important;
    height: 40px !important;
    margin: 0 auto 10px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .card-icon i {
    font-size: 1.1rem !important;
  }
  
  .method-card h4 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
    color: #1a237e !important;
  }
  
  .method-card p {
    font-size: 0.75rem !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
    color: #555 !important;
  }
  
  .method-card ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .method-card li {
    font-size: 0.7rem !important;
    padding: 3px 0 !important;
    color: #666 !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
  }
  
  .method-card li::before {
    content: '✓' !important;
    color: #1a237e !important;
    font-weight: bold !important;
    font-size: 0.8rem !important;
    flex-shrink: 0 !important;
  }
  
  
  .material-section {
    padding: 20px 0 !important;
    background: #f8f9fa !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  
  .material-section .container {
    width: 100% !important;
    max-width: 100vw !important;
    padding: 0 10px !important;
    margin: 0 auto !important;
    overflow-x: hidden !important;
  }
  
  .material-section .section-title {
    font-size: 1.3rem !important;
    margin-bottom: 0.5rem !important;
    text-align: center !important;
    padding: 0 5px !important;
    word-wrap: break-word !important;
    line-height: 1.2 !important;
  }
  
  .material-section .section-subtitle {
    font-size: 0.85rem !important;
    text-align: center !important;
    padding: 0 5px !important;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
  }
  
  .material-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    margin-top: 20px !important;
    padding: 0 5px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  
  .material-card {
    padding: 15px 10px !important;
    margin-bottom: 10px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(26, 35, 126, 0.1) !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .material-card h4 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
    color: #1a237e !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
  }
  
  .material-card p {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
    color: #555 !important;
    word-wrap: break-word !important;
  }
  
  .material-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .material-features li {
    padding: 5px 0 !important;
    font-size: 0.7rem !important;
    color: #666 !important;
    border-bottom: 1px solid rgba(26, 35, 126, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow: hidden !important;
  }
  
  .material-features li:last-child {
    border-bottom: none !important;
  }
  
  .material-features li::before {
    content: '✓' !important;
    color: #1a237e !important;
    font-weight: bold !important;
    font-size: 0.8rem !important;
    flex-shrink: 0 !important;
    width: 15px !important;
    text-align: center !important;
  }
  
  .benefits-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  
  .benefit-item {
    background: rgba(26, 35, 126, 0.05) !important;
    padding: 10px 8px !important;
    border-radius: 8px !important;
    text-align: center !important;
    border: 1px solid rgba(26, 35, 126, 0.1) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .benefit-item h5 {
    font-size: 0.8rem !important;
    color: #1a237e !important;
    margin-bottom: 5px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    word-wrap: break-word !important;
  }
  
  .benefit-icon {
    width: 30px !important;
    height: 30px !important;
    background: linear-gradient(135deg, #1a237e, #3949ab) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 8px !important;
    color: white !important;
    font-size: 0.9rem !important;
    flex-shrink: 0 !important;
  }
  .material-section {
    padding: 20px 0 !important;
    background: #f8f9fa !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  
  .material-section .container {
    width: 100% !important;
    max-width: 100vw !important;
    padding: 0 10px !important; /* Ajustar padding para 10px */
    margin: 0 auto !important;
    overflow-x: hidden !important;
  }
  
  .material-section .section-title {
    font-size: 1.3rem !important; /* Ajustar tamanho da fonte */
    margin-bottom: 0.5rem !important;
    text-align: center !important;
    padding: 0 5px !important;
    word-wrap: break-word !important;
    line-height: 1.2 !important;
  }
  
  .material-section .section-subtitle {
    font-size: 0.85rem !important; /* Ajustar tamanho da fonte */
    text-align: center !important;
    padding: 0 5px !important;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
  }
  
  .material-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 15px !important; /* Aumentar o gap entre os cards */
    margin-top: 20px !important;
    padding: 0 5px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  
  .material-card {
    padding: 15px 10px !important; /* Ajustar padding */
    margin-bottom: 10px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(26, 35, 126, 0.1) !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .material-card h4 {
    font-size: 1rem !important; /* Ajustar tamanho da fonte */
    margin-bottom: 8px !important;
    color: #1a237e !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
  }
  
  .material-card p {
    font-size: 0.75rem !important; /* Ajustar tamanho da fonte */
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
    color: #555 !important;
    word-wrap: break-word !important;
  }
  
  .material-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .material-features li {
    padding: 5px 0 !important;
    font-size: 0.7rem !important; /* Ajustar tamanho da fonte */
    color: #666 !important;
    border-bottom: 1px solid rgba(26, 35, 126, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important; /* Ajustar gap */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow: hidden !important;
  }
  
  .material-features li:last-child {
    border-bottom: none !important;
  }
  
  .material-features li::before {
    content: '✓' !important;
    color: #1a237e !important;
    font-weight: bold !important;
    font-size: 0.8rem !important; /* Ajustar tamanho da fonte */
    flex-shrink: 0 !important;
    width: 15px !important; /* Ajustar largura do ícone */
    text-align: center !important;
  }
  
  .benefits-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important; /* Ajustar gap */
    margin-top: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  
  .benefit-item {
    background: rgba(26, 35, 126, 0.05) !important;
    padding: 10px 8px !important; /* Ajustar padding */
    border-radius: 8px !important;
    text-align: center !important;
    border: 1px solid rgba(26, 35, 126, 0.1) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .benefit-item h5 {
    font-size: 0.8rem !important; /* Ajustar tamanho da fonte */
    color: #1a237e !important;
    margin-bottom: 5px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    word-wrap: break-word !important;
  }
  
  .benefit-icon {
    width: 30px !important;
    height: 30px !important;
    background: linear-gradient(135deg, #1a237e, #3949ab) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 8px !important;
    color: white !important;
    font-size: 0.9rem !important; /* Ajustar tamanho da fonte */
    flex-shrink: 0 !important;
  }
  
  /* Proposal pillars mobile */
  .proposal-pillars {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 10px !important;
    margin-top: 20px !important;
  }
  
  .pillar {
    padding: 15px 12px !important;
    margin-bottom: 10px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .pillar-icon {
    width: 40px !important;
    height: 40px !important;
    margin: 0 auto 10px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .pillar-icon i {
    font-size: 1.1rem !important;
  }
  
  .pillar h4 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
    color: #1a237e !important;
  }
  
  .pillar p {
    font-size: 0.75rem !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
    color: #555 !important;
  }
  
  .pillar ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .pillar li {
    font-size: 0.7rem !important;
    padding: 3px 0 !important;
    color: #666 !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
  }
  
  .pillar li::before {
    content: '✓' !important;
    color: #1a237e !important;
    font-weight: bold !important;
    font-size: 0.8rem !important;
    flex-shrink: 0 !important;
  }
  
  /* Help grid mobile */
  .help-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 10px !important;
    margin-top: 20px !important;
  }
  
  .help-card {
    padding: 15px 12px !important;
    margin-bottom: 10px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .help-card h4 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
    color: #1a237e !important;
  }
  
  .help-card p {
    font-size: 0.75rem !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
    color: #555 !important;
  }
  
  /* FAQ mobile */
  .faq-item {
    margin-bottom: 10px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  }
  
  .faq-question {
    padding: 12px 10px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    background: #1a237e !important;
    color: white !important;
    border: none !important;
    width: 100% !important;
    text-align: left !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  .faq-answer {
    padding: 10px !important;
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
    color: #555 !important;
    display: none !important;
  }
  
  .faq-answer.active {
    display: block !important;
  }
  
  /* Contact section mobile */
  .contact-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 10px !important;
  }
  
  .contact-form {
    padding: 15px 12px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  }
  
  .form-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
  }
  
  .form-group {
    margin-bottom: 10px !important;
  }
  
  .form-group label {
    font-size: 0.8rem !important;
    margin-bottom: 5px !important;
    display: block !important;
    color: #1a237e !important;
    font-weight: 600 !important;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100% !important;
    padding: 8px 10px !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    font-size: 0.8rem !important;
    background: white !important;
    box-sizing: border-box !important;
  }
  
  .form-group textarea {
    height: 80px !important;
    resize: vertical !important;
  }
  
  .contact-info {
    padding: 15px 12px !important;
  }
  
  .info-item {
    margin-bottom: 1rem !important;
    gap: 8px !important;
    display: flex !important;
    align-items: flex-start !important;
  }
  
  .info-icon {
    width: 30px !important;
    height: 30px !important;
    flex-shrink: 0 !important;
    border-radius: 50% !important;
    background: #1a237e !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .info-icon i {
    font-size: 0.8rem !important;
  }
  
  .info-content h4 {
    font-size: 0.9rem !important;
    margin-bottom: 3px !important;
    color: #1a237e !important;
  }
  
  .info-content p {
    font-size: 0.75rem !important;
    line-height: 1.3 !important;
    color: #555 !important;
    margin: 0 !important;
  }
  
  /* Footer Mobile */
  .footer {
    padding: 20px 0 15px !important;
    overflow-x: hidden !important;
    background: #1a237e !important;
    color: white !important;
  }
  
  .footer-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 20px !important;
    padding: 0 10px !important;
  }
  
  .footer-section {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .footer-section h3 {
    font-size: 1rem !important;
    margin-bottom: 10px !important;
    color: #fbc02d !important;
  }
  
  .footer-section p,
  .footer-section li {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
    margin-bottom: 5px !important;
  }
  
  .footer-section ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .footer-section a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    font-size: 0.75rem !important;
  }
  
  .footer-section a:hover {
    color: #fbc02d !important;
  }
  
  .footer-bottom {
    margin-top: 20px !important;
    padding-top: 15px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  
  .footer-bottom-content {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 10px !important;
    padding: 0 10px !important;
  }
  
  .footer-bottom p {
    font-size: 0.7rem !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.7) !important;
  }
  
  .footer-social {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 10px !important;
  }
  
  .footer-social a {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
  }
  
  .footer-social a:hover {
    background: #fbc02d !important;
    color: #1a237e !important;
  }
  
  /* Mobile Menu */
  .mobile-menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(26, 35, 126, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
  }
  
  .mobile-menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .mobile-menu-content {
    height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 10px !important;
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%) !important;
    position: relative !important;
    overflow-y: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .mobile-menu-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 0 15px !important;
    border-bottom: 2px solid rgba(251, 192, 45, 0.3) !important;
    margin-bottom: 15px !important;
  }
  
  .mobile-logo {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: white !important;
  }
  
  .mobile-logo img {
    height: 30px !important;
    width: auto !important;
  }
  
  .mobile-logo span {
    font-weight: 700 !important;
    color: #fbc02d !important;
    font-size: 0.9rem !important;
  }
  
  .mobile-menu-close {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    padding: 6px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .mobile-nav {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 15px !important;
  }
  
  .mobile-nav-menu {
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .mobile-nav-link {
    color: white !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(251, 192, 45, 0.2) !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .mobile-nav-link:hover {
    background: #fbc02d !important;
    color: #1a237e !important;
    transform: translateY(-1px) !important;
  }
  
  .mobile-actions {
    margin-top: auto !important;
    padding: 15px 0 !important;
    border-top: 2px solid rgba(251, 192, 45, 0.3) !important;
  }
  
  .mobile-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    margin-bottom: 10px !important;
    padding: 10px 15px !important;
    font-size: 0.85rem !important;
    border-radius: 15px !important;
    box-sizing: border-box !important;
  }
  
  .mobile-social {
    text-align: center !important;
    color: white !important;
    margin-top: 12px !important;
  }
  
  .mobile-social span {
    display: block !important;
    margin-bottom: 10px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
  }
  
  .mobile-social-links {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
  }
  
  .mobile-social-link {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 0.9rem !important;
  }
  
  .mobile-social-link.facebook {
    background: #1877f2 !important;
    color: white !important;
  }
  
  .mobile-social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
    color: white !important;
  }
  
  .mobile-social-link:hover {
    transform: scale(1.05) translateY(-1px) !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3) !important;
  }
  
  /* Botões mobile */
  .btn {
    padding: 10px 15px !important;
    font-size: 0.85rem !important;
    border-radius: 15px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #fbc02d, #f57f17) !important;
    color: #1a237e !important;
  }
  
  .btn-secondary {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
  }
  
  .btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2) !important;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.2rem !important;
  }
  
  .hero-subtitle {
    font-size: 0.85rem !important;
  }
  
  .hero-description {
    font-size: 0.75rem !important;
  }
  
  .section-title {
    font-size: 1.2rem !important;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr !important;
  }
  
  .benefit-item {
    padding: 15px 10px !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .btn-large {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .method-card,
  .pillar,
  .help-card {
    padding: 30px 20px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .logo {
    height: 45px;
  }
  
  .school-name {
    font-size: 1.1rem;
  }
  
  .name-highlight {
    font-size: 1rem;
  }
  
  .school-subtitle {
    font-size: 0.75rem;
  }
  
  .mobile-nav-link {
    font-size: 1.3rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .hero-stats {
    gap: 15px;
  }
  
  .hero {
    padding-top: 90px;
  }
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Estados de foco para acessibilidade */
.btn:focus,
.nav-link:focus,
.faq-question:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #fbc02d;
  outline-offset: 2px;
}

/* Scroll suave para navegação */
html {
  scroll-padding-top: 100px;
}

/* Efeitos especiais */
.floating {
  animation: floating 3s ease-in-out infinite;
}

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

.rotate-on-hover {
  transition: transform 0.3s ease;
}

.rotate-on-hover:hover {
  transform: rotate(5deg);
}

/* Gradientes animados */
.gradient-text {
  background: linear-gradient(45deg, #1a237e, #3949ab, #fbc02d);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Material Didático Melhorado */
.material-info {
  background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
  padding: 50px 40px;
  border-radius: 20px;
  margin-top: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.material-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="books" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23fbc02d" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23books)"/></svg>');
  opacity: 0.3;
}

.material-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.material-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1a237e, #3949ab);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(26, 35, 126, 0.3);
  animation: pulse 2s infinite;
}

.material-icon i {
  font-size: 2rem;
  color: white;
}

.material-header h3 {
  color: #1a237e;
  font-size: 2.2rem;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.material-content {
  position: relative;
  z-index: 2;
}

.material-description {
  text-align: center;
  margin-bottom: 40px;
}

.material-description p {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.material-providers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.provider-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #fbc02d;
  position: relative;
  overflow: hidden;
}

.provider-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 192, 45, 0.1), transparent);
  transition: left 0.5s;
}

.provider-card:hover::before {
  left: 100%;
}

.provider-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.provider-logo {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #fbc02d, #f57f17);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(251, 192, 45, 0.3);
}

.provider-logo i {
  font-size: 1.8rem;
  color: white;
}

.provider-card h4 {
  color: #1a237e;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.provider-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.provider-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.provider-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #555;
  font-weight: 500;
}

.provider-features i {
  color: #fbc02d;
  font-size: 0.9rem;
}

.material-benefits {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.material-benefits h4 {
  color: #1a237e;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-item:hover {
  transform: translateY(-5px);
  border-color: #fbc02d;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-item i {
  font-size: 2rem;
  color: #1a237e;
  background: linear-gradient(135deg, #fbc02d, #f57f17);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-item span {
  font-weight: 600;
  color: #333;
  text-align: center;
  font-size: 0.95rem;
}



/* Mapa em Largura Total */
.map-section {
  background: linear-gradient(135deg, #1a237e, #3949ab);
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.map-container-full {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.map-container-full h3 {
  text-align: center;
  color: white;
  font-size: 2.5rem;
  margin: 0;
  padding: 40px 20px 30px;
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.9), rgba(57, 73, 171, 0.8));
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  position: relative;
}

.map-container-full h3::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #fbc02d, #f57f17);
  border-radius: 2px;
}

.map-full {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.map-full iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.3s ease;
}

.map-full:hover iframe {
  filter: grayscale(0%) contrast(1.2);
}

.map-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(26, 35, 126, 0.1), rgba(251, 192, 45, 0.1));
  pointer-events: none;
  z-index: 1;
}


/* Footer Melhorado */
.site-footer {
  background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23fbc02d" opacity="0.1"/><circle cx="5" cy="5" r="0.5" fill="%23f57f17" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
  opacity: 0.3;
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(251, 192, 45, 0.05) 50%, transparent 70%);
  animation: footerShine 8s ease-in-out infinite;
}

@keyframes footerShine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-main {
  padding-right: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.logo-container-footer {
  position: relative;
}

.logo-container-footer .logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(251, 192, 45, 0.5));
  transition: all 0.3s ease;
}

.logo-glow-footer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(251, 192, 45, 0.3), transparent);
  border-radius: 50%;
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.footer-brand h3 {
  color: white;
  font-size: 1.8rem;
  margin: 0 0 5px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer-tagline {
  color: #fbc02d;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.footer-description {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 30px;
  text-align: justify;
}

.footer-cta {
  margin-top: 20px;
}

.btn-footer-primary {
  background: linear-gradient(135deg, #fbc02d, #f57f17);
  color: #1a237e;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(251, 192, 45, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-footer-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-footer-primary:hover::before {
  left: 100%;
}

.btn-footer-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(251, 192, 45, 0.4);
}

.footer-section h4 {
  color: #fbc02d;
  font-size: 1.3rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.footer-section h4 i {
  font-size: 1.1rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-radius: 5px;
}

.footer-links a:hover {
  color: #fbc02d;
  padding-left: 10px;
  background: rgba(251, 192, 45, 0.1);
}

.footer-links a i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.footer-links a:hover i {
  transform: translateX(5px);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(251, 192, 45, 0.1);
  transform: translateX(5px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #fbc02d, #f57f17);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(251, 192, 45, 0.3);
}

.contact-icon i {
  color: #1a237e;
  font-size: 1rem;
}

.contact-text {
  flex: 1;
}

.contact-text span {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.social-section {
  margin-bottom: 30px;
}

.social-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

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

.social-icon-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-icon-footer.facebook {
  background: rgba(24, 119, 242, 0.2);
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.3);
}

.social-icon-footer.facebook:hover {
  background: #1877f2;
  color: white;
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.social-icon-footer.instagram {
  background: rgba(225, 48, 108, 0.2);
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.3);
}

.social-icon-footer.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.social-icon-footer.whatsapp {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.3);
}

.social-icon-footer.whatsapp:hover {
  background: #25d366;
  color: white;
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.newsletter {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(251, 192, 45, 0.2);
}

.newsletter h5 {
  color: #fbc02d;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.newsletter-input-group input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: white;
  color: #333;
  font-size: 0.95rem;
  outline: none;
}

.newsletter-input-group input::placeholder {
  color: #999;
}

.newsletter-input-group button {
  background: linear-gradient(135deg, #fbc02d, #f57f17);
  border: none;
  padding: 12px 20px;
  color: #1a237e;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.newsletter-input-group button:hover {
  background: linear-gradient(135deg, #f57f17, #e65100);
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(251, 192, 45, 0.2);
  padding: 30px 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px !important;
}

.footer-subtitle i {
  color: #e91e63;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-bottom-links a:hover {
  color: #fbc02d;
  transform: translateY(-2px);
}

.footer-bottom-links a i {
  font-size: 0.8rem;
}

/* Responsividade do Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0 30px;
  }
  
  .footer-logo {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}


/* Responsividade Melhorada */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 15px;
  }
  
  .nav-link {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-content {
    justify-content: space-between;
  }
  
  .logo-area {
    flex: none;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 15px 0;
  }
  
  .logo {
    height: 60px;
  }
  
  .school-name {
    font-size: 1.3rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  
  .name-part {
    font-size: 0.9rem;
  }
  
  .name-highlight {
    font-size: 1.1rem;
  }
  
  .hero {
    padding-top: 100px;
    min-height: 90vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .mobile-nav-link {
    font-size: 1.2rem;
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .mobile-menu-content {
    padding: 20px;
  }
  
  .mobile-menu-header {
    margin: -20px -20px 20px -20px;
    padding: 20px;
  }
  
  .mobile-nav-link {
    font-size: 1.1rem;
    padding: 10px 12px;
  }
  
  .mobile-logo span {
    font-size: 1rem;
  }
  
  .school-name {
    font-size: 1.1rem;
  }
  
  .name-highlight {
    font-size: 1rem;
  }
}



/* ===== ANIMAÇÕES EXTRAS E EFEITOS INTERATIVOS ===== */

/* Animação de entrada para elementos */
.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.fade-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.fade-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Efeito de zoom suave */
.zoom-hover {
  transition: transform 0.3s ease;
}

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

/* Efeito de brilho nos botões */
.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.btn-glow:hover::after {
  left: 100%;
}

/* Animação de flutuação */
.float-animation {
  animation: float 6s ease-in-out infinite;
}

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

/* Efeito de ondulação */
.ripple-effect {
  position: relative;
  overflow: hidden;
}

.ripple-effect::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.ripple-effect:hover::before {
  width: 300px;
  height: 300px;
}

/* Efeito de rotação suave */
.rotate-hover {
  transition: transform 0.3s ease;
}

.rotate-hover:hover {
  transform: rotate(5deg);
}

/* Animação de pulso */
.pulse-animation {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(251, 192, 45, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(251, 192, 45, 0.8), 0 0 30px rgba(251, 192, 45, 0.6);
  }
}

/* Efeito de slide para cards */
.slide-up {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s ease;
}

.slide-up.visible {
  transform: translateY(0);
  opacity: 1;
}

/* Animação de texto digitando */
.typing-animation {
  overflow: hidden;
  border-right: 2px solid #fbc02d;
  white-space: nowrap;
  animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #fbc02d; }
}

/* Efeito de gradiente animado */
.gradient-animation {
  background: linear-gradient(-45deg, #1a237e, #3949ab, #fbc02d, #f57f17);
  background-size: 400% 400%;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Efeito de partículas flutuantes */
.particles-bg {
  position: relative;
  overflow: hidden;
}

.particles-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(251, 192, 45, 0.3) 2px, transparent 2px),
    radial-gradient(circle at 80% 20%, rgba(26, 35, 126, 0.3) 1px, transparent 1px),
    radial-gradient(circle at 40% 40%, rgba(251, 192, 45, 0.2) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px, 70px 70px;
  animation: particles-float 20s linear infinite;
  pointer-events: none;
}

@keyframes particles-float {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-100px) rotate(360deg); }
}

/* Efeito de borda animada */
.animated-border {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(45deg, #1a237e, #fbc02d, #3949ab) border-box;
}

.animated-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #1a237e, #fbc02d, #3949ab, #1a237e);
  border-radius: inherit;
  z-index: -1;
  animation: border-rotate 3s linear infinite;
}

@keyframes border-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Efeito de sombra dinâmica */
.dynamic-shadow {
  transition: box-shadow 0.3s ease;
}

.dynamic-shadow:hover {
  box-shadow: 
    0 10px 25px rgba(26, 35, 126, 0.2),
    0 20px 40px rgba(251, 192, 45, 0.1),
    0 0 50px rgba(26, 35, 126, 0.1);
}

/* Animação de loading */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(251, 192, 45, 0.3);
  border-top: 4px solid #fbc02d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Efeito de reveal progressivo */
.progressive-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.progressive-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Animação de contador */
.counter-animation {
  font-weight: bold;
  color: #fbc02d;
}

/* Efeito de highlight ao scroll */
.scroll-highlight {
  position: relative;
}

.scroll-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #fbc02d, #f57f17);
  transition: width 0.8s ease;
}

.scroll-highlight.highlighted::after {
  width: 100%;
}

/* Efeito de morphing para ícones */
.morph-icon {
  transition: all 0.3s ease;
}

.morph-icon:hover {
  transform: scale(1.2) rotate(15deg);
  color: #fbc02d;
}

/* Animação de ondas */
.wave-animation {
  position: relative;
  overflow: hidden;
}

.wave-animation::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: wave 2s infinite;
}

@keyframes wave {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Efeito de glitch */
.glitch-effect {
  position: relative;
}

.glitch-effect:hover::before,
.glitch-effect:hover::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-effect:hover::before {
  animation: glitch-1 0.3s infinite;
  color: #ff0000;
  z-index: -1;
}

.glitch-effect:hover::after {
  animation: glitch-2 0.3s infinite;
  color: #00ff00;
  z-index: -2;
}

@keyframes glitch-1 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(2px, -2px); }
  40% { transform: translate(2px, 2px); }
  60% { transform: translate(-2px, -2px); }
  80% { transform: translate(-2px, 2px); }
}

/* Efeito de neon */
.neon-glow {
  text-shadow: 
    0 0 5px #fbc02d,
    0 0 10px #fbc02d,
    0 0 15px #fbc02d,
    0 0 20px #fbc02d;
  animation: neon-flicker 1.5s infinite alternate;
}

@keyframes neon-flicker {
  0%, 100% {
    text-shadow: 
      0 0 5px #fbc02d,
      0 0 10px #fbc02d,
      0 0 15px #fbc02d,
      0 0 20px #fbc02d;
  }
  50% {
    text-shadow: 
      0 0 2px #fbc02d,
      0 0 5px #fbc02d,
      0 0 8px #fbc02d,
      0 0 12px #fbc02d;
  }
}

/* Responsividade para animações */
@media (max-width: 768px) {
  .float-animation,
  .particles-bg::before,
  .gradient-animation {
    animation-duration: 8s;
  }
  
  .typing-animation {
    animation: none;
    border-right: none;
    white-space: normal;
  }
  
  .glitch-effect:hover::before,
  .glitch-effect:hover::after {
    display: none;
  }
}

/* Redução de movimento para acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .float-animation,
  .pulse-animation,
  .gradient-animation,
  .particles-bg::before,
  .wave-animation::before,
  .neon-glow,
  .loading-spinner {
    animation: none;
  }
  
  .zoom-hover:hover,
  .rotate-hover:hover,
  .morph-icon:hover {
    transform: none;
  }
}


/* Material Didático Section Mobile - Estilos Robustos e Definitivos */
@media (max-width: 768px) {
  .material-section {
    padding: 20px 0 !important;
    background: #f8f9fa !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .material-section .container {
    width: 100% !important;
    max-width: 100vw !important;
    padding: 0 10px !important;
    margin: 0 auto !important;
    overflow-x: hidden !important;
  }

  .material-section .material-header h3 {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
    text-align: center !important;
    padding: 0 5px !important;
    word-wrap: break-word !important;
    line-height: 1.2 !important;
  }

  .material-section .material-description p {
    font-size: 0.8rem !important;
    text-align: center !important;
    padding: 0 5px !important;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
  }

  .material-providers {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    margin-top: 20px !important;
    padding: 0 5px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .material-card {
    padding: 15px 10px !important;
    margin-bottom: 10px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(26, 35, 126, 0.1) !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .material-card h4 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
    color: #1a237e !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
  }

  .material-card p {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
    color: #555 !important;
    word-wrap: break-word !important;
  }

  .material-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .material-features li {
    padding: 5px 0 !important;
    font-size: 0.7rem !important;
    color: #666 !important;
    border-bottom: 1px solid rgba(26, 35, 126, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow: hidden !important;
  }

  .material-features li:last-child {
    border-bottom: none !important;
  }

  .material-features li::before {
    content: '✓' !important;
    color: #1a237e !important;
    font-weight: bold !important;
    font-size: 0.8rem !important;
    flex-shrink: 0 !important;
    width: 15px !important;
    text-align: center !important;
  }

  .benefits-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .benefit-item {
    background: rgba(26, 35, 126, 0.05) !important;
    padding: 10px 8px !important;
    border-radius: 8px !important;
    text-align: center !important;
    border: 1px solid rgba(26, 35, 126, 0.1) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .benefit-item h5 {
    font-size: 0.8rem !important;
    color: #1a237e !important;
    margin-bottom: 5px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    word-wrap: break-word !important;
  }

  .benefit-icon {
    width: 30px !important;
    height: 30px !important;
    background: linear-gradient(135deg, #1a237e, #3949ab) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 8px !important;
    color: white !important;
    font-size: 0.9rem !important;
    flex-shrink: 0 !important;
  }

  .material-benefits h4 {
    font-size: 1rem !important;
    margin-bottom: 10px !important;
    text-align: center !important;
    color: #1a237e !important;
    padding: 0 5px !important;
  }
}


/* Seção de Vídeo e 10 Motivos */
.video-motivos-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.video-motivos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="videoPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%231a237e" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23videoPattern)"/></svg>');
  opacity: 0.5;
}

.video-motivos-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}



.video-player {
  width: 60%;
  height: auto;
  border-radius: 05px;
  display: block;
}

.motivos-container {
  padding: 10px 0;
}

.motivos-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 30px;
  line-height: 1.2;
  text-align: center;
}

.motivos-number {
  font-size: 3rem;
  font-weight: 900;
  color: #fbc02d;
  display: block;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.motivos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.motivo-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 3px solid #fbc02d;
}

.motivo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 35, 126, 0.15);
}

.motivo-number {
  background: linear-gradient(135deg, #1a237e, #3949ab);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(26, 35, 126, 0.3);
}

.motivo-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a237e;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.motivo-content p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Responsividade para a seção de vídeo */
@media (max-width: 1024px) {
  .video-motivos-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .motivos-title {
    font-size: 1.8rem;
  }
  
  .motivos-number {
    font-size: 2.5rem;
  }
  
  .video-container {
  }
  
  .video-player {
  }
  
  .motivos-grid {
  }
}

@media (max-width: 768px) {
  .video-motivos-section {
    padding: 40px 0;
  }
  
  .video-container {
    padding: 10px;
  }
  
  .video-player {
  }
  
  .motivos-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .motivos-number {
    font-size: 2rem;
  }
  
  .motivos-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .motivo-item {
    padding: 12px;
  }
  
  .motivo-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .motivo-content h3 {
    font-size: 0.9rem;
  }
  
  .motivo-content p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .video-motivos-section {
    padding: 30px 0;
  }
  
  .video-container {
  }
  
  .video-player {
  }
  
  .motivos-title {
    font-size: 1.3rem;
  }
  
  .motivos-number {
    font-size: 1.8rem;
  }
  
  .motivos-grid {
  }
  
  .motivo-item {
    padding: 10px;
    gap: 10px;
  }
  
  .motivo-number {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }
}

/* Responsividade Corrigida - Mobile Perfeito */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 12px;
  }
  
  .nav-link {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-content {
    justify-content: space-between;
    padding: 0 15px;
  }
  
  .logo-area {
    flex: none;
  }
  
  .header-actions {
    flex: none;
  }
}

@media (max-width: 768px) {
  * {
    box-sizing: border-box;
  }
  
  body {
    overflow-x: hidden;
  }
  
  .site-header {
    padding: 8px 0;
  }
  
  .container {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
  }
  
  .logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: none;
  }
  
  .logo {
    height: 40px;
    width: auto;
  }
  
  .school-name {
    font-size: 0.9rem;
    line-height: 1.1;
  }
  
  .name-part {
    font-size: 0.7rem;
  }
  
  .name-highlight {
    font-size: 0.8rem;
  }
  
  .school-subtitle {
    font-size: 0.6rem;
    margin-top: 1px;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .social-header {
    display: none;
  }
  
  .btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
  
  /* Seção de vídeo mobile */
  .video-motivos-section {
    padding: 40px 0;
  }
  
  .video-motivos-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .video-container {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .video-player {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  
  .motivos-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  
  .motivos-number {
    font-size: 2rem;
  }
  
  .motivos-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .motivo-item {
    padding: 12px;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .motivo-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    flex-shrink: 0;
  }
  
  .motivo-content h3 {
    font-size: 0.9rem;
    margin-bottom: 3px;
  }
  
  .motivo-content p {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  
  /* Hero mobile */
  .hero {
    padding: 60px 0 40px 0;
    min-height: 70vh;
  }
  
  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 0;
  }
  
  .hero-title {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  
  .hero-description {
    font-size: 0.8rem;
    margin-bottom: 20px;
    line-height: 1.4;
    padding: 0 10px;
  }
  
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 90%;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 15px;
    font-size: 0.8rem;
  }
  
  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  /* Seções gerais mobile */
  section {
    padding: 40px 0;
    width: 100%;
    overflow-x: hidden;
  }
  
  .section-title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 15px;
    padding: 0 10px;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 25px;
    padding: 0 10px;
  }
  
  /* Cards e grids mobile */
  .about-content,
  .methodology-grid,
  .proposal-pillars,
  .help-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .method-card,
  .pillar,
  .help-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
  }
  
  .card-icon,
  .pillar-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .card-icon i,
  .pillar-icon i {
    font-size: 20px;
  }
  
  /* Footer mobile */
  .footer {
    padding: 30px 0;
    width: 100%;
    overflow-x: hidden;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-section {
    width: 100%;
    margin-bottom: 15px;
  }
  
  .footer-section h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .footer-section p,
  .footer-section a {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  /* Menu mobile */
  .mobile-nav-link {
    font-size: 1rem;
    padding: 10px 15px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  .header-content {
    padding: 0 10px;
  }
  
  .logo {
    height: 35px;
  }
  
  .school-name {
    font-size: 0.8rem;
  }
  
  .name-highlight {
    font-size: 0.7rem;
  }
  
  .hero-title {
    font-size: 1.3rem;
  }
  
  .hero-subtitle {
    font-size: 0.8rem;
  }
  
  .hero-description {
    font-size: 0.75rem;
  }
  
  .hero-actions .btn {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  
  .section-title {
    font-size: 1.2rem;
  }
  
  .motivos-title {
    font-size: 1.3rem;
  }
  
  .motivos-number {
    font-size: 1.8rem;
  }
  
  .motivo-item {
    padding: 10px;
  }
  
  .motivo-number {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }
  
  .motivo-content h3 {
    font-size: 0.8rem;
  }
  
  .motivo-content p {
    font-size: 0.7rem;
  }
  
  .mobile-menu-content {
    padding: 10px;
  }
  
  .mobile-nav-link {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
  
  .btn-text-inline {
    font-size: 0.7rem;
  }
}

