/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



:root {
  --primary: #070738;
  --secondary: #1A1A5E;
  --accent: #FE0000;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--primary);
  background-color: #b9d1f1;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.text-accent {
  color: var(--accent);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background-color: #e00000;
  border-color: #e00000;
}

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

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

.btn-white {
  background-color: var(--white);
  color: var(--accent);
  border-color: var(--white);
}

.btn-white:hover {
  background-color: var(--gray-100);
}

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

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

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(7, 7, 56, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--primary);
}

.logoimg {
  height: 30px;
  width: 30px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1.2;
  color: var(--primary);
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 500;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: var(--accent);
}

.header > .container > .btn {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-top: 1px solid var(--gray-200);
}

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

.nav-mobile a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.nav-mobile .btn {
  margin-top: 0.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .header > .container > .btn {
    display: inline-flex;
  }
  
  .menu-toggle {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, rgba(7, 7, 56, 0.03) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254, 0, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(7, 7, 56, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(254, 0, 0, 0.15), rgba(254, 0, 0, 0.08));
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  width: fit-content;
  border: 1px solid rgba(254, 0, 0, 0.2);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 12px rgba(7, 7, 56, 0.05);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

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

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ===== CARROSSEL DE IMAGENS GRANDES ===== */
.carousel-container {
  width: 100%;
  max-width: 500px;
  height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: transparent;
  margin: 0 auto;
}

.carousel {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.aluno-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 10px 30px rgba(7, 7, 56, 0.2));
}

/* Botões de navegação */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* Dots de navegação */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

.carousel-dot:hover {
  background: var(--white);
  transform: scale(1.2);
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-right {
    overflow: visible;
  }
  
  .carousel-container {
    max-width: 500px;
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .carousel-container {
    max-width: 350px;
    height: 400px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    max-width: 300px;
    height: 350px;
  }
}

/* ===== SECTION STYLES ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(7, 7, 56, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.section-badge.light {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.section-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title.light {
  color: var(--white);
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

/* ===== SOBRE SECTION ===== */
.sobre {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 50%, var(--white) 100%);
  position: relative;
}

.sobre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.sobre-card {
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.sobre-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.sobre-card:hover::before {
  transform: scaleX(1);
}

.sobre-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(7, 7, 56, 0.12);
  border-color: var(--primary);
}

.sobre-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(7, 7, 56, 0.25);
}

.sobre-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.sobre-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

@media (min-width: 1024px) {
  .sobre-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== VESTIBULARES SECTION ===== */
.vestibulares {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, rgba(7, 7, 56, 0.02) 50%, var(--gray-50) 100%);
  position: relative;
}

.vestibulares::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(7, 7, 56, 0.03));
  pointer-events: none;
}

.vestibulares-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.vestibular-card {
  background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.9));
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.vestibular-card:hover {
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(7, 7, 56, 0.12);
  transform: translateY(-3px);
}

.vestibular-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(254, 0, 0, 0.03), rgba(254, 0, 0, 0.08));
  box-shadow: 0 8px 25px rgba(254, 0, 0, 0.1);
}

.vestibular-card.featured::before {
  content: 'Mais popular';
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent), #ff3333);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vestibular-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.vestibular-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: 0.5rem;
}

.vestibular-card.featured .vestibular-icon {
  background: linear-gradient(135deg, var(--accent), #ff4444);
}

.vestibular-header h3 {
  font-size: 1.25rem;
  color: var(--primary);
}

.vestibular-card > p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.vestibular-features {
  list-style: none;
}

.vestibular-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.vestibular-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

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

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

/* ===== PROFESSORES SECTION ===== */
.professores {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #0a0a4a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.professores::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.professores::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(254, 0, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.professores-content {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.professores-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.professores-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.professores-image-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.professores-image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.1);
  height: 600px;
}

.professores-placeholder {
  position: relative;
  height: 100%;
  width: 100%;
  background: transparent;
}

.professores-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 7, 56, 0.3);
}

.professores-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 1.5rem;
}

.professores-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.prof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-width: 150px;
  backdrop-filter: blur(10px);
}

.prof-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.prof-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .professores-title {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .professores-image-wrapper {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .professores-image-wrapper {
    height: 300px;
  }
}

/* ===== DEPOIMENTOS SECTION ===== */
.depoimentos {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--white), var(--gray-50), var(--white));
  position: relative;
}

.depoimentos::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(7, 7, 56, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.depoimentos::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(254, 0, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.depoimentos-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

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

.depoimentos-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
}

.depoimentos-track::-webkit-scrollbar {
  display: none;
}

.depoimento-card {
  min-width: 300px;
  max-width: 350px;
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  padding: 2rem;
  border-radius: 1rem;
  scroll-snap-align: start;
  flex-shrink: 0;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 15px rgba(7, 7, 56, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.depoimento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(7, 7, 56, 0.1);
  border-color: var(--primary);
}

.quote-icon {
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.depoimento-text {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  color: var(--primary);
  font-size: 0.95rem;
}

.author-info span {
  color: var(--gray-500);
  font-size: 0.8rem;
}

.depoimentos-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .carousel-btn {
    display: flex;
  }
  
  .depoimentos-track {
    overflow: hidden;
  }
  
  .depoimento-card {
    min-width: calc(33.333% - 1rem);
    max-width: none;
  }
}

/* ===== DIFERENCIAIS SECTION ===== */
.diferenciais {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.diferencial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.diferencial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.diferencial-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.diferencial-card h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.diferencial-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

@media (min-width: 1024px) {
  .diferenciais-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--accent) 0%, #cc0000 50%, #aa0000 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, var(--primary) 0%, #050530 100%);
  color: var(--white);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary), var(--primary));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.logo.light .logo-name,
.logo.light .logo-subtitle {
  color: var(--white);
}

.logo.light .logo-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 1rem 0;
  line-height: 1.6;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.2s ease;
}

.social-links a:hover {
  background-color: var(--accent);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

#v {
  color:#e57f26;
}

#c {
  color:#38fb31;
}

#d {
  color:#a51afb;
}

#a {
  color:#e6148b;
}

#g {
  color:#fbcd34;
}