/* ==========================================================================
   COLÉGIO FONTE - MAIN STYLESHEET
   ========================================================================== */

:root {
  /* Cores principais */
  --primary-color: #1e3a8a;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary-color: #f59e0b;
  --secondary-dark: #d97706;
  --secondary-light: #fbbf24;
  
  /* Cores neutras */
  --dark-color: #1f2937;
  --light-color: #f8fafc;
  --gray-100: #f7fafc;
  --gray-200: #edf2f7;
  --gray-300: #e2e8f0;
  --gray-400: #cbd5e0;
  --gray-500: #a0aec0;
  --gray-600: #718096;
  --gray-700: #4a5568;
  --gray-800: #2d3748;
  --gray-900: #1a202c;
  
  /* Tipografia */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Espaçamentos */
  --container-padding: 1rem;
  --section-padding: 5rem 0;
  
  /* Bordas e sombras */
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Banner/Hero Settings - CONTROLE DO BANNER EM UM SÓ LUGAR */
  --banner-height: 60vh; /* 🎯 ALTERE AQUI para modificar a altura do banner */
  --banner-image-size: 100% auto; /* 🖼️ ALTERE AQUI para modificar o tamanho da imagem do banner */
  --banner-image-position: top; /* 📍 ALTERE AQUI para modificar a posição da imagem do banner */
  
  /*
   * Opções para --banner-image-size:
   * - cover: Preenche todo o banner (padrão)
   * - contain: Mostra a imagem inteira sem cortar
   * - auto: Tamanho original da imagem
   * - 100% 100%: Estica para preencher
   */
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: #ffffff;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  /*color: var(--dark-color);*/
  line-height: 1.3;
  margin-bottom: 1rem;
}

.display-3 {
  font-size: 3.5rem;
  font-weight: 700;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  /*color: var(--gray-600);*/
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Estados de foco e active dos botões */
.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

.btn:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

.btn-light:focus,
.btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-warning:focus,
.btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
}

/* Remove focus outline após click/touch */
.btn:active {
  outline: none;
}

.btn:not(:focus-visible) {
  box-shadow: var(--shadow) !important;
}

/* Melhora o estado hover dos botões */
.btn-light {
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--dark-color);
}

.btn-light:hover {
  background-color: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--dark-color);
  transform: translateY(-2px);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  width: 100%;
  margin: 0;
  padding: 0;
}

.top-bar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
}

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

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

.top-bar .slogan-info .slogan-text {
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
  color: white;
  display: inline-flex;
  align-items: center;
}

.top-bar .slogan-info .slogan-text i {
  color: var(--secondary-light);
  font-size: 1.125rem;
  text-shadow: none;
}

.top-bar .contact-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-bar .contact-info span {
  margin-left: 1.5rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.top-bar .contact-info span i {
  margin-right: 0.5rem;
  color: var(--secondary-light);
}

.top-bar .social-links a {
  color: white;
  margin-left: 0.75rem;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.top-bar .social-links a:hover {
  color: var(--secondary-light);
  transform: scale(1.1);
}

/* Responsividade da top-bar */
@media (max-width: 991.98px) {
  .top-bar {
    padding: 0.5rem 0;
    font-size: 0.8rem;
  }
  
  .top-bar .slogan-info .slogan-text {
    font-size: 0.9rem;
  }
  
  .top-bar .contact-info span {
    margin-left: 1rem;
    font-size: 0.8rem;
  }
  
  .top-bar .social-links a {
    margin-left: 0.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .top-bar {
    padding: 0.4rem 0;
  }
  
  .top-bar .slogan-info .slogan-text {
    font-size: 0.85rem;
  }
  
  .top-bar .social-links a {
    margin-left: 0.4rem;
    font-size: 0.95rem;
  }
}

.navbar {
  padding: 0.3rem 0;
  width: 100%;
  margin: 0;
}

/* Container-fluid específico para navbar */
.navbar .container-fluid {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  width: 100%;
}

/* Ajustes para telas maiores com container-fluid */
@media (min-width: 1200px) {
  .navbar .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1400px) {
  .navbar .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}

.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y, 0.3rem);
  padding-bottom: var(--bs-navbar-brand-padding-y, 0.3rem);
  margin-right: 0 !important;
  font-size: var(--bs-navbar-brand-font-size, 1.25rem);
  flex-shrink: 0;
}

.navbar-brand .logo {
  height: 120px;
  width: auto;
  margin-right: 0.08rem;
  margin-left: 0.09rem;
  min-height: 80px;
  flex-shrink: 0;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
  background-color: var(--gray-100);
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius);
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--gray-100);
  color: var(--primary-color);
}

/* ==========================================================================
   COMPACT DUAL NAVBAR SYSTEM (Ultra Compacto)
   ========================================================================== */

.compact-dual-navbar {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin: 0.2rem 0;
  margin-left: auto;
  max-width: 99%;
}

/* Primeira Linha - Serviços (com gradiente azul e efeito radiante) */
.compact-dual-navbar .top-services {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  width: 100%;
  justify-content: center;
  position: relative;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

/* Efeito radiante/flash animado */
.compact-dual-navbar .top-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2) 30%, 
    rgba(255, 255, 255, 0.4) 50%, 
    rgba(255, 255, 255, 0.2) 70%, 
    transparent
  );
  animation: flashEffect 3s infinite;
  z-index: 1;
}

@keyframes flashEffect {
  0% { 
    left: -100%; 
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% { 
    left: 100%; 
    opacity: 0;
  }
}

.compact-dual-navbar .top-services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  z-index: 2;
}

.compact-dual-navbar .top-services .nav-item {
  margin: 0 0.25rem;
}

.compact-dual-navbar .top-services .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
  z-index: 2;
}

.compact-dual-navbar .top-services .nav-link i {
  margin-right: 0.3rem;
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.compact-dual-navbar .top-services .nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.compact-dual-navbar .top-services .nav-link:hover i {
  transform: scale(1.1);
}

/* Destaque para Matrícula */
.compact-dual-navbar .top-services .btn-highlight {
  background: rgba(255, 255, 255, 0.25);
  color: white !important;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.compact-dual-navbar .top-services .btn-highlight:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Links ativos */
.compact-dual-navbar .top-services .nav-link.active {
  background: rgba(255, 255, 255, 0.3) !important;
  color: white !important;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.compact-dual-navbar .main-navigation .nav-link.active {
  background: rgba(30, 58, 138, 0.15) !important;
  color: var(--primary-color) !important;
  font-weight: 700;
  border: 1px solid rgba(30, 58, 138, 0.2);
}

/* Segunda Linha - Navegação Principal (Ultra Compacta) */
.compact-dual-navbar .main-navigation {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 0.4rem 1.5rem;
  margin-bottom: 0;
  width: 100%;
  justify-content: center;
  border-top: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 0 0 8px 8px;
}

.compact-dual-navbar .main-navigation .nav-item {
  margin: 0 0.4rem;
}

.compact-dual-navbar .main-navigation .nav-link {
  color: #374151;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  white-space: nowrap;
}

.compact-dual-navbar .main-navigation .nav-link i {
  margin-right: 0.4rem;
  color: var(--primary-color);
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.compact-dual-navbar .main-navigation .nav-link:hover {
  color: var(--primary-color);
  background: rgba(30, 58, 138, 0.08);
  transform: translateY(-1px);
}

.compact-dual-navbar .main-navigation .nav-link:hover i {
  transform: scale(1.1);
  color: #f59e0b;
}

/* Efeitos sutis nos ícones específicos */
.compact-dual-navbar .nav-link:hover .fa-home {
  animation: subtleBounce 0.4s ease;
}

.compact-dual-navbar .nav-link:hover .fa-heart {
  animation: subtleHeartbeat 0.5s ease;
}

.compact-dual-navbar .nav-link:hover .fa-lightbulb {
  animation: subtleGlow 0.4s ease;
}

@keyframes subtleBounce {
  0%, 100% { transform: scale(1.1); }
  50% { transform: scale(1.2) translateY(-1px); }
}

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

@keyframes subtleGlow {
  0%, 100% { 
    transform: scale(1.1);
    filter: brightness(1);
  }
  50% { 
    transform: scale(1.2);
    filter: brightness(1.2);
  }
}

/* ==========================================================================
   NAVBAR RESPONSIVO - LOGO FIXO
   ========================================================================== */

/* Garantir que o navbar seja mais compacto em telas médias */
@media (max-width: 1400px) {
  .compact-dual-navbar .top-services .nav-link,
  .compact-dual-navbar .main-navigation .nav-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 1200px) {
  .compact-dual-navbar .top-services .nav-link,
  .compact-dual-navbar .main-navigation .nav-link {
    padding: 0.3rem 0.6rem;
    font-size: 0.85rem;
  }
  
  .navbar-brand .logo {
    margin-right: 1.5rem;
  }
}

/* Tornar menu ainda mais compacto antes de colapsar */
@media (max-width: 1100px) {
  .compact-dual-navbar .top-services .nav-link,
  .compact-dual-navbar .main-navigation .nav-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
  }
  
  .compact-dual-navbar .top-services .nav-link i,
  .compact-dual-navbar .main-navigation .nav-link i {
    font-size: 0.7rem;
    margin-right: 0.25rem;
  }
  
  .navbar-brand .logo {
    margin-right: 1rem;
  }
}

/* ==========================================================================
   MOBILE LAYOUT - LOGO CENTRALIZADO
   ========================================================================== */

/* Esconder botão por padrão */
.mobile-visit-btn {
  display: none;
}

/* Layout especial para mobile */
@media (max-width: 768px) {
  /* Reorganizar o navbar para layout vertical centralizado */
  .navbar {
    padding: 1rem 0;
  }
  
  .navbar .container-fluid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  
  /* Logo centralizado no topo */
  .navbar-brand {
    order: 1;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .navbar-brand .logo {
    height: 100px;
    margin: 0;
    width: auto;
  }
  
  /* Botão "Agende sua Visita" centralizado abaixo do logo */
  .mobile-visit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 2;
    margin: 0;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    width: auto;
  }
  
  .mobile-visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
  }
  
  .mobile-visit-btn i {
    margin-right: 0.5rem;
  }
  
  /* Botão do menu (três pausinhas) abaixo */
  .navbar-toggler {
    order: 3;
    margin: 0;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    background: transparent;
    width: auto;
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830, 58, 138, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  
  /* Menu colapsado ocupa toda a largura */
  .navbar-collapse {
    order: 4;
    width: 100%;
    margin-top: 1rem;
  }
  
  /* Ajustes específicos do dual navbar para mobile */
  .compact-dual-navbar {
    margin-top: 1rem;
    margin-bottom: 0;
  }
  
  .compact-dual-navbar .top-services {
    padding: 1rem 1.5rem;
  }
  
  .compact-dual-navbar .main-navigation {
    padding: 1rem 1.5rem;
  }
}

/* ==========================================================================
   BOTÃO PADRÃO "AGENDE SUA VISITA" - GRADIENTE AZUL/LARANJA
   ========================================================================== */

.btn-agendar-visita,
a[href*="contato"].btn-light.btn-lg {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
  border: none !important;
  color: white !important;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.btn-agendar-visita:hover,
a[href*="contato"].btn-light.btn-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: white !important;
  background: linear-gradient(135deg, #1e40af 0%, #f59e0b 100%) !important;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section-top {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 50px 0 80px;
    color: white;
    position: relative;
}

.hero-section {
  margin-top: 0 !important; /* Remove margem superior para colar no header */
}

/* Indicadores azuis no formato de traço (Bootstrap 5 padrão customizado) */
.carousel-indicators button {
  width: 30px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 0;
  margin: 0 3px;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: #0d6efd; /* Azul do Bootstrap 5 */
}

.carousel-indicators button:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* 
   TODAS AS REGRAS CUSTOMIZADAS DO CAROUSEL FORAM COMENTADAS
   PARA USAR APENAS O BOOTSTRAP 4 PADRÃO
   
.hero-slide {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}

.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(30, 64, 175, 0.6) 100%);
  z-index: 2;
}

.carousel-inner,
.carousel-item {
  width: 100%;
  height: auto;
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.hero-bg,
#heroCarousel {
  width: 100%;
  height: auto;
}

.hero-content {
  position: absolute;
  z-index: 3;
  width: 100%;
}
*/

/* 
   OUTRAS REGRAS CUSTOMIZADAS COMENTADAS PARA USAR BOOTSTRAP 4 PADRÃO

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.carousel-control-prev {
  left: 2rem;
}

.carousel-control-next {
  right: 2rem;
}
*/

/* Prevenir overflow dos controles do carousel */
@media (max-width: 768px) {
  /*.hero-section {
    margin: 0;
    padding: 0;
  }*/
  
  .carousel-control-prev {
    left: 0.5rem;
  }
  
  .carousel-control-next {
    right: 0.5rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }
}

/* 
   INDICADORES PERSONALIZADOS COMENTADOS PARA USAR BOOTSTRAP 4 PADRÃO

.carousel-indicators {
  bottom: 15px;
  margin: 0;
  padding: 0;
  justify-content: center;
  gap: 8px;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--primary-color);
  opacity: 0.7;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-indicators [data-bs-target]:hover {
  background: rgba(30, 58, 138, 0.8);
  opacity: 0.9;
  transform: scale(1.2);
}

.carousel-indicators [data-bs-target].active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  opacity: 1;
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.4);
}

.carousel-indicators .indicator-number {
  color: white;
  font-weight: 700;
  font-size: 0.5rem;
  font-family: var(--font-heading);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
*/

/* ==========================================================================
   BANNER LINK COMPLETO
   ========================================================================== */

.banner-link-completo {
  display: block;
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.banner-link-completo:hover {
  color: inherit;
  text-decoration: none;
  /*transform: scale(1.02);*/
}

.banner-link-completo:hover .hero-slide {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.banner-link-completo .btn {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

/* ==========================================================================
   WHATSAPP MATRÍCULA CALL-TO-ACTION
   ========================================================================== */

.whatsapp-matricula-cta {
  padding: 0;
  margin: 0;
  background: linear-gradient(
    135deg,
    #25d366 0%,
    #128c7e 35%,
    #075e54 70%,
    #25d366 100%
  );
  position: relative;
  overflow: hidden;
}

.whatsapp-matricula-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -50%; }
  100% { left: 150%; }
}

.whatsapp-matricula-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.whatsapp-matricula-link:hover {
  text-decoration: none;
  color: inherit;
}

.whatsapp-matricula-banner {
  padding: 2rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.whatsapp-matricula-link:hover .whatsapp-matricula-banner {
  transform: scale(1.02);
}

.whatsapp-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.whatsapp-icon-large {
  font-size: 4rem;
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.whatsapp-text h3 {
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: var(--font-heading);
}

.whatsapp-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  margin: 0;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.whatsapp-button {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.whatsapp-matricula-link:hover .whatsapp-button {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.whatsapp-button .pulse-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.whatsapp-button i {
  font-size: 1.5rem;
  animation: wiggle 1.5s infinite;
}

@keyframes wiggle {
  0%, 7%, 14%, 21%, 28% {
    transform: rotate(0deg);
  }
  3%, 10%, 17%, 24%, 31% {
    transform: rotate(-5deg);
  }
  7%, 14%, 21%, 28%, 35% {
    transform: rotate(5deg);
  }
}

/* Responsividade */
@media (max-width: 991.98px) {
  .whatsapp-content {
    gap: 1.5rem;
  }
  
  .whatsapp-icon-large {
    font-size: 3rem;
  }
  
  .whatsapp-text h3 {
    font-size: 2rem;
  }
  
  .whatsapp-text p {
    font-size: 1.1rem;
  }
  
  .whatsapp-button {
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .whatsapp-matricula-banner {
    padding: 1.5rem 1rem;
  }
  
  .whatsapp-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .whatsapp-icon-large {
    font-size: 2.5rem;
  }
  
  .whatsapp-text h3 {
    font-size: 1.8rem;
  }
  
  .whatsapp-text p {
    font-size: 1rem;
  }
  
  .whatsapp-button {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .whatsapp-text h3 {
    font-size: 1.5rem;
  }
  
  .whatsapp-button {
    padding: 0.7rem 1.3rem;
    font-size: 1rem;
  }
}

/* ==========================================================================
   EDUCAÇÃO POR PRINCÍPIOS - BANNER CTA
   ========================================================================== */

.educacao-principios-cta {
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #d97706 75%, #ea580c 100%);
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  width: 100%;
  justify-content: center;
}

.educacao-principios-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shine-azul-laranja 3s infinite;
}

@keyframes shine-azul-laranja {
  0% { left: -50%; }
  100% { left: 150%; }
}

.educacao-principios-banner {
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  height: auto;
  min-height: 60px;
  margin-bottom: 0;
}

.educacao-principios-banner:hover {
  transform: scale(1.01);
}

.educacao-principios-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  width: 100%;
}

.educacao-principios-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
}

.educacao-principios-icon-large {
  font-size: 2rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  animation: heartbeat-compact 2s infinite;
}

@keyframes heartbeat-compact {
  0%, 50%, 100% {
    transform: scale(1);
  }
  25%, 75% {
    transform: scale(1.03);
  }
}

.educacao-principios-text h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  font-family: var(--font-heading);
  line-height: 1.1;
}

.educacao-principios-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  margin: 0;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.educacao-principios-buttons {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.btn-conheca-mais {
  background: rgba(30, 64, 175, 0.3);
  border: 1px solid rgba(30, 64, 175, 0.5);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  animation: flash-azul-escuro 2s infinite;
  white-space: nowrap;
}

@keyframes flash-azul-escuro {
  0%, 50%, 100% {
    background: rgba(30, 64, 175, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  25%, 75% {
    background: rgba(30, 64, 175, 0.5);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
  }
}

.btn-conheca-mais:hover {
  background: rgba(30, 64, 175, 0.5);
  border-color: rgba(30, 64, 175, 0.7);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
  color: white;
  text-decoration: none;
}

.btn-principios-cristao {
  background: rgba(217, 119, 6, 0.9);
  border: 1px solid rgba(217, 119, 6, 1);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  white-space: nowrap;
}

.btn-principios-cristao:hover {
  background: rgba(234, 88, 12, 1);
  border-color: rgba(234, 88, 12, 1);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
  color: white;
  text-decoration: none;
}

.pulse-effect-azul {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.4);
  transform: translate(-50%, -50%);
  animation: pulse-ring-azul 2s infinite;
}

@keyframes pulse-ring-azul {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.pulse-effect-laranja {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(251, 146, 60, 0.4);
  transform: translate(-50%, -50%);
  animation: pulse-ring-laranja 2s infinite;
}

@keyframes pulse-ring-laranja {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

/* Responsividade */
@media (max-width: 991.98px) {
  .educacao-principios-content {
    gap: 1rem;
  }
  
  .educacao-principios-left {
    gap: 0.6rem;
  }
  
  .educacao-principios-icon-large {
    font-size: 1.8rem;
  }
  
  .educacao-principios-text h3 {
    font-size: 1.2rem;
  }
  
  .educacao-principios-text p {
    font-size: 0.8rem;
  }
  
  .educacao-principios-buttons {
    gap: 0.5rem;
  }
  
  .btn-conheca-mais,
  .btn-principios-cristao {
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 767.98px) {
  .educacao-principios-banner {
    padding: 1rem;
  }
  
  .educacao-principios-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .educacao-principios-left {
    justify-content: center;
    text-align: center;
  }
  
  .educacao-principios-buttons {
    justify-content: center;
    gap: 0.6rem;
  }
  
  .educacao-principios-icon-large {
    font-size: 2rem;
  }
  
  .educacao-principios-text h3 {
    font-size: 1.5rem;
  }
  
  .educacao-principios-text p {
    font-size: 0.9rem;
  }
  
  .btn-conheca-mais,
  .btn-principios-cristao {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 575.98px) {
  .educacao-principios-text h3 {
    font-size: 1.3rem;
  }
  
  .educacao-principios-buttons {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  
  .btn-conheca-mais,
  .btn-principios-cristao {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    width: 100%;
    max-width: 200px;
  }
}

/* ==========================================================================
   FAIXA LARANJA DEGRADÊ
   ========================================================================== */

.faixa-laranja-degrade {
  background: linear-gradient(
    135deg,
    #ff7b00 0%,
    #ff8f00 15%,
    #ffa500 30%,
    #ffb347 45%,
    #ffc87c 60%,
    #ffd700 80%,
    #ffeb3b 100%
  );
  padding: 2rem 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.faixa-laranja-degrade::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  animation: faixaShine 5s infinite;
}

@keyframes faixaShine {
  0% { left: -100%; }
  100% { left: 200%; }
}

.faixa-laranja-degrade::after {
  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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.faixa-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 3;
  flex-wrap: wrap;
}

.faixa-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: starPulse 2.5s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes starPulse {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    filter: brightness(1);
  }
  25% { 
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.2);
  }
  50% { 
    transform: scale(1.05) rotate(-3deg);
    filter: brightness(1.1);
  }
  75% { 
    transform: scale(1.08) rotate(2deg);
    filter: brightness(1.15);
  }
}

.faixa-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.faixa-text h3 {
  color: white;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  font-family: var(--font-heading);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.faixa-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

.faixa-action {
  flex-shrink: 0;
}

.btn-faixa {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-faixa::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 ease;
}

.btn-faixa:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.btn-faixa i {
  transition: transform 0.3s ease;
}

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

/* Responsividade da faixa laranja */
@media (max-width: 991.98px) {
  .faixa-content {
    gap: 1.5rem;
    flex-direction: column;
  }
  
  .faixa-icon {
    font-size: 2.5rem;
  }
  
  .faixa-text h3 {
    font-size: 1.9rem;
  }
  
  .faixa-text p {
    font-size: 1rem;
  }
  
  .btn-faixa {
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .faixa-laranja-degrade {
    padding: 1.5rem 0;
  }
  
  .faixa-content {
    gap: 1rem;
  }
  
  .faixa-icon {
    font-size: 2rem;
  }
  
  .faixa-text {
    min-width: auto;
  }
  
  .faixa-text h3 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
  }
  
  .faixa-text p {
    font-size: 0.95rem;
  }
  
  .btn-faixa {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .faixa-laranja-degrade {
    padding: 1.2rem 0;
  }
  
  .faixa-content {
    gap: 0.8rem;
  }
  
  .faixa-icon {
    font-size: 1.8rem;
  }
  
  .faixa-text h3 {
    font-size: 1.4rem;
  }
  
  .faixa-text p {
    font-size: 0.9rem;
    line-height: 1.3;
  }
  
  .btn-faixa {
    padding: 0.5rem 1.3rem;
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   QUICK ACCESS SECTION
   ========================================================================== */

.quick-access {
  /*margin-top: 3rem;*/
  position: relative;
  z-index: 10;
  /*padding-top: 3rem;*/
  padding: 0.70rem 1rem;
  margin-top: 0 !important; /* Remove qualquer margem superior */
}

.quick-access-card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Cards com imagens de fundo específicas */
.quick-access-card-principios {
  background-image: linear-gradient(
    135deg, 
    rgba(30, 58, 138, 0.8) 0%, 
    rgba(30, 64, 175, 0.7) 100%
  ), url('../images/card_educacaoprincipios.PNG');
}

.quick-access-card-infantil {
  background-image: linear-gradient(
    135deg, 
    rgba(245, 158, 11, 0.8) 0%, 
    rgba(251, 191, 36, 0.7) 100%
  ), url('../images/card_educacaoinfantil.PNG');
}

.quick-access-card-fundamental {
  background-image: linear-gradient(
    135deg, 
    rgba(16, 185, 129, 0.8) 0%, 
    rgba(52, 211, 153, 0.7) 100%
  ), url('../images/card_educacaofundamental.PNG');
}

.quick-access-card-medio {
  background-image: linear-gradient(
    135deg, 
    rgba(139, 69, 19, 0.8) 0%, 
    rgba(180, 83, 9, 0.7) 100%
  ), url('../images/card_ensiomedio.PNG');
}

.quick-access-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1;
}

.quick-access-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.quick-access-card:hover::before {
  background: rgba(0, 0, 0, 0.05);
}

/* Garantir que o conteúdo fique sobre a imagem */
.quick-access-card > * {
  position: relative;
  z-index: 2;
}

.quick-access-card .icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.quick-access-card .icon-box i {
  font-size: 2rem;
  color: white;
  transition: all 0.4s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.quick-access-card:hover .icon-box {  
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.quick-access-card:hover .icon-box i {
  color: white;
  transform: scale(1.2);
  animation: iconPulse 0.6s ease-in-out;
}

/* Melhorar legibilidade do texto */
.quick-access-card h5 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: 700;
  margin-bottom: 1rem;
}

.quick-access-card p {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

.quick-access-card .btn-light {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--dark-color);
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quick-access-card .btn-light:hover {
  background: white;
  border-color: white;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   EDUCATION CARDS
   ========================================================================== */

.education-card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.education-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.education-image {
  height: 200px;
  text-align: center;
  overflow: hidden;
}

.education-image img {
  /*width: 100%;
  height: 100%;*/
  width: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.education-content h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.education-content ul li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   NEWS CARDS
   ========================================================================== */

.news-card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.news-image {
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.news-content h5 a {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 600;
}

.news-content h5 a:hover {
  color: var(--primary-color);
}

.news-meta .badge {
  font-size: 0.75rem;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials-section {
  background: linear-gradient(135deg, var(--gray-100) 0%, white 100%);
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  margin: 1rem;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.125rem;
  color: var(--gray-600);
  margin: 1.5rem 0;
}

.rating i {
  font-size: 1.125rem;
  margin: 0 2px;
}

/* ==========================================================================
   WHATSAPP FLOAT BUTTON
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  background: #128c7e;
  color: white;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
  background: var(--dark-color) !important;
  margin-top: 5rem;
}

.main-footer h5,
.main-footer h6 {
  color: white;
  margin-bottom: 1.5rem;
}

.main-footer .contact-info p {
  margin-bottom: 0.75rem;
  color: var(--gray-300);
}

.main-footer .contact-info i {
  color: var(--primary-light);
  margin-right: 0.5rem;
  width: 20px;
}

.main-footer ul li {
  margin-bottom: 0.5rem;
}

.main-footer ul li a {
  color: var(--gray-300);
  transition: color 0.3s ease;
}

.main-footer ul li a:hover {
  color: var(--primary-light);
}

.main-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gray-700);
  color: white;
  border-radius: 50%;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
}

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

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.bg-light {
  background-color: var(--gray-100) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.min-vh-100 {
  min-height: 100vh;
}

.stats-row h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Prevenir overflow horizontal em mobile */
@media (max-width: 991.98px) {
  body {
    overflow-x: hidden;
  }
  
  .navbar-collapse {
    overflow-x: hidden;
  }
}

/* ==========================================================================
   RESPONSIVE COMPACT DUAL NAVBAR
   ========================================================================== */

/* Mobile: Menu hamburguer otimizado */
@media (max-width: 991.98px) {
  .compact-dual-navbar {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    margin: 0 0.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: calc(100% - 0.5rem);
  }
  
  .navbar-collapse.show .compact-dual-navbar {
    max-height: calc(100vh - 120px);
    min-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(30, 58, 138, 0.3) transparent;
    /*padding-bottom: 2rem;*/
  }
  
  /* Customizar scrollbar webkit */
  .navbar-collapse.show .compact-dual-navbar::-webkit-scrollbar {
    width: 4px;
  }
  
  .navbar-collapse.show .compact-dual-navbar::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .navbar-collapse.show .compact-dual-navbar::-webkit-scrollbar-thumb {
    background: rgba(30, 58, 138, 0.3);
    border-radius: 2px;
  }
  
  .navbar-collapse.show .compact-dual-navbar::-webkit-scrollbar-thumb:hover {
    background: rgba(30, 58, 138, 0.5);
  }
  
  /* Primeira linha mobile */
  .compact-dual-navbar .top-services {
    flex-direction: column;
    padding: 1rem 1rem 1.5rem 1rem;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
  }
  
  .compact-dual-navbar .top-services::after {
    display: none;
  }
  
  /* Segunda linha mobile */
  .compact-dual-navbar .main-navigation {
    flex-direction: column;
    padding: 1rem 1rem 1.5rem 1rem;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  }
  
  /* Itens mobile */
  .compact-dual-navbar .nav-item {
    width: 100%;
    margin: 0.3rem 0;
    flex-shrink: 0;
  }
  
  .compact-dual-navbar .top-services .nav-link,
  .compact-dual-navbar .main-navigation .nav-link {
    padding: 1rem 1.2rem;
    margin: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    justify-content: flex-start;
    min-height: 48px;
    white-space: nowrap;
  }
  
  .compact-dual-navbar .nav-link i {
    margin-right: 0.8rem;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
  }
  
  /* Animação de entrada mobile */
  .compact-dual-navbar .nav-item {
    opacity: 0;
    transform: translateY(10px);
    animation: slideUpMobile 0.3s ease forwards;
  }
  
  .compact-dual-navbar .top-services .nav-item:nth-child(1) { animation-delay: 0.05s; }
  .compact-dual-navbar .top-services .nav-item:nth-child(2) { animation-delay: 0.1s; }
  .compact-dual-navbar .top-services .nav-item:nth-child(3) { animation-delay: 0.15s; }
  .compact-dual-navbar .top-services .nav-item:nth-child(4) { animation-delay: 0.2s; }
  .compact-dual-navbar .top-services .nav-item:nth-child(5) { animation-delay: 0.25s; }
  .compact-dual-navbar .top-services .nav-item:nth-child(6) { animation-delay: 0.3s; }
  .compact-dual-navbar .top-services .nav-item:nth-child(7) { animation-delay: 0.35s; }
  .compact-dual-navbar .top-services .nav-item:nth-child(8) { animation-delay: 0.4s; }
  
  .compact-dual-navbar .main-navigation .nav-item:nth-child(1) { animation-delay: 0.45s; }
  .compact-dual-navbar .main-navigation .nav-item:nth-child(2) { animation-delay: 0.5s; }
  .compact-dual-navbar .main-navigation .nav-item:nth-child(3) { animation-delay: 0.55s; }
  .compact-dual-navbar .main-navigation .nav-item:nth-child(4) { animation-delay: 0.6s; }
  .compact-dual-navbar .main-navigation .nav-item:nth-child(5) { animation-delay: 0.65s; }
  .compact-dual-navbar .main-navigation .nav-item:nth-child(6) { animation-delay: 0.7s; }
  
  @keyframes slideUpMobile {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Menu hamburguer mais elegante */
  .navbar-toggler {
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    transition: all 0.3s ease;
    position: relative;
    width: 48px;
    height: 40px;
  }
  
  .navbar-toggler:hover {
    background: var(--primary-color);
    transform: scale(1.02);
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.2);
  }
  
  .navbar-toggler-icon {
    background-image: none;
    width: 20px;
    height: 16px;
    position: relative;
    display: block;
  }
  
  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    background: var(--primary-color);
    height: 2px;
    border-radius: 1px;
    transition: all 0.3s ease;
  }
  
  .navbar-toggler:hover .navbar-toggler-icon,
  .navbar-toggler:hover .navbar-toggler-icon::before,
  .navbar-toggler:hover .navbar-toggler-icon::after {
    background: white;
  }
  
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
  }
  
  .navbar-toggler-icon::before {
    top: -6px;
  }
  
  .navbar-toggler-icon::after {
    bottom: -6px;
  }
  
  /* Animação X quando ativo */
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
  }
  
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
  }
  
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
  }
}

/* ==========================================================================
   RESPONSIVE STYLES - EXISTING
   ========================================================================== */

@media (max-width: 991.98px) {
  /*.hero-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }*/
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .display-3 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .quick-access {
    margin-top: 0;
  }
  
  /* Manter logo em tamanho fixo em telas médias */
  .navbar-brand .logo {
    margin-left: 1rem;
    margin-right: 2rem;
    height: 80px;
    width: auto;
    min-height: 80px;
    flex-shrink: 0;
  }
  
  /* Indicadores responsivos para tablet */
  .carousel-indicators {
    bottom: 12px; 
    gap: 6px;
  }
  
  .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
  }
  
  .carousel-indicators .indicator-number {
    font-size: 0.65rem;
  }
  
  .carousel-control-prev {
    left: 1rem;
  }
  
  .carousel-control-next {
    right: 1rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

@media (max-width: 767.98px) {
  /*.hero-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }*/
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }
  
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  :root {
    --container-padding: 0.5rem;
  }
  
  .hero-section {
    /*margin-top: 0 !important;*/ /* Força banner colado no header */
    /*padding-top: 0 !important;*/ /* Remove qualquer padding superior */
    position: relative !important; /* Garante posicionamento correto */
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .stats-row h3 {
    font-size: 1.5rem;
  }
  
  /* Manter logo em tamanho fixo mesmo em mobile */
  .navbar-brand .logo {
    margin-left: 0.5rem;
    margin-right: 1rem;
    height: 80px;
    width: auto;
    min-height: 80px;
    flex-shrink: 0;
  }
  
  /* Garantir que elementos não causem overflow */
  .container,
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
  }
  
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  /* Indicadores para mobile - OCULTOS */
  .carousel-indicators {
    display: none; /* Oculta os indicadores em mobile */
  }
  
  .carousel-indicators [data-bs-target] {
    width: 18px;
    height: 18px;
  }
  
  .carousel-indicators .indicator-number {
    font-size: 0.55rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }
  
  .carousel-control-prev {
    left: 0.5rem;
  }
  
  .carousel-control-next {
    right: 0.5rem;
  }
}

/* ==========================================================================
   LOADING ANIMATIONS
   ========================================================================== */

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

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

@keyframes iconPulse {
  0% { transform: scale(1.2); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1.2); }
}

/* ==========================================================================
   SWIPER CUSTOMIZATION
   ========================================================================== */

.swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  .whatsapp-float,
  .navbar,
  .main-footer {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
}

/* Media query para telas muito pequenas */
@media (max-width: 380px) {
  .carousel-indicators {
    display: none; /* Oculta os indicadores em telas pequenas */
  }
  
  .carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
  }
  
  .carousel-indicators .indicator-number {
    font-size: 0.5rem;
  }
}

/* ==========================================================================
   RESULTADOS E APROVAÇÕES CALL-TO-ACTION (ESTILO WHATSAPP LARANJA)
   ========================================================================== */

.resultados-cta {
  padding: 0;
  margin: 1rem 0;
  background: linear-gradient(
    135deg,
    #ff6b00 0%,
    #ff8500 20%,
    #ff9f00 40%,
    #ffb900 60%,
    #ffd700 80%,
    #ffe135 100%
  );
  position: relative;
  overflow: hidden;
}

.resultados-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  animation: shineResultadosLaranja 4s infinite;
}

@keyframes shineResultadosLaranja {
  0% { left: -50%; }
  100% { left: 150%; }
}

.resultados-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.resultados-link:hover {
  text-decoration: none;
  color: inherit;
}

.resultados-banner {
  padding: 2.5rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.resultados-link:hover .resultados-banner {
  transform: scale(1.02);
}

.resultados-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.resultados-icon-large {
  font-size: 4.5rem;
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  animation: trophyBounceOrange 2s infinite;
}

@keyframes trophyBounceOrange {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.resultados-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.resultados-text h3 {
  color: white;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.resultados-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  line-height: 1.4;
}

.resultados-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.stat-item {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.stat-item strong {
  color: #fff;
  font-size: 1.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.stat-separator {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  margin: 0 0.3rem;
}

.resultados-button {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 800;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.5px;
}

.resultados-link:hover .resultados-button {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.resultados-button .pulse-effect-laranja {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  animation: pulseRingLaranja 3s infinite;
}

@keyframes pulseRingLaranja {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 350px;
    height: 350px;
    opacity: 0;
  }
}

.resultados-button i {
  font-size: 1.6rem;
  animation: graduationFloatOrange 2s infinite ease-in-out;
}

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

/* Responsividade da seção de resultados laranja */
@media (max-width: 991.98px) {
  .resultados-content {
    gap: 2rem;
    flex-direction: column;
  }
  
  .resultados-icon-large {
    font-size: 3.5rem;
  }
  
  .resultados-text h3 {
    font-size: 2.2rem;
  }
  
  .resultados-text p {
    font-size: 1.2rem;
  }
  
  .resultados-button {
    padding: 1rem 2.5rem;
    font-size: 1.3rem;
  }
  
  .resultados-stats {
    gap: 0.3rem;
  }
  
  .stat-item {
    font-size: 1rem;
    padding: 0.2rem 0.6rem;
  }
  
  .stat-item strong {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .resultados-banner {
    padding: 2rem 1rem;
  }
  
  .resultados-content {
    gap: 1.5rem;
  }
  
  .resultados-icon-large {
    font-size: 3rem;
  }
  
  .resultados-text {
    min-width: auto;
  }
  
  .resultados-text h3 {
    font-size: 1.9rem;
    margin-bottom: 0.6rem;
  }
  
  .resultados-text p {
    font-size: 1.1rem;
  }
  
  .resultados-button {
    padding: 0.9rem 2rem;
    font-size: 1.2rem;
  }
  
  .resultados-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .stat-separator {
    display: none;
  }
  
  .stat-item {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .resultados-banner {
    padding: 1.5rem 0.8rem;
  }
  
  .resultados-icon-large {
    font-size: 2.5rem;
  }
  
  .resultados-text h3 {
    font-size: 1.6rem;
  }
  
  .resultados-text p {
    font-size: 1rem;
    line-height: 1.3;
  }
  
  .resultados-button {
    padding: 0.8rem 1.8rem;
    font-size: 1.1rem;
  }
  
  .resultados-button i {
    font-size: 1.4rem;
  }
}
