/* ============================================
   Teacher Régis Peralti - Landing Page Styles
   ============================================ */

:root {
  --color-primary: hsl(222, 47%, 11%);
  --color-primary-foreground: hsl(48, 100%, 96%);
  --color-background: hsl(0, 0%, 100%);
  --color-foreground: hsl(0, 0%, 100%);
  --color-card: hsl(210, 40%, 98%);
  --color-secondary: hsl(210, 20%, 96%);
  --color-muted: hsl(215, 16%, 47%);
  --color-accent: hsl(45, 93%, 47%);
  --color-accent-foreground: hsl(0, 0%, 100%);
  --color-success: hsl(152, 69%, 31%);
  --color-destructive: hsl(0, 84%, 60%);
  --color-border: hsl(214, 32%, 91%);
  --radius: 0.75rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--color-foreground);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', system-ui, sans-serif; }

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

a { text-decoration: none; color: inherit; }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* Text gradient */
.text-gradient {
  background: linear-gradient(135deg, var(--color-accent) 0%, hsl(48, 100%, 70%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 700; border-radius: var(--radius); transition: all 0.3s; border: none; cursor: pointer;
  font-size: 0.875rem; padding: 0.625rem 1rem; white-space: nowrap; text-decoration: none;
}
.btn-sm { padding: 0.5rem 0.75rem; font-size: 0.875rem; }
.btn-lg { padding: 0.75rem 2rem; font-size: 1rem; }
.btn-xl { padding: 0.875rem 2.5rem; font-size: 1.125rem; border-radius: 0.75rem; }
.btn-full { width: 100%; }
.btn-cta {
  background: var(--color-accent); color: var(--color-accent-foreground);
  box-shadow: 0 4px 30px -5px hsla(45, 93%, 47%, 0.4);
}
.btn-cta:hover { transform: scale(1.05); box-shadow: 0 6px 30px -5px hsla(45, 93%, 47%, 0.5); }
.btn-hero {
  background: var(--color-accent); color: var(--color-accent-foreground);
  font-size: 1.125rem; padding: 1rem 2rem; box-shadow: 0 4px 30px -5px hsla(45, 93%, 47%, 0.4);
}
.btn-hero:hover { transform: scale(1.05); }
.btn-hero-secondary {
  background: transparent; border: 2px solid rgba(255,255,255,0.3); color: var(--color-primary-foreground);
  font-size: 1.125rem; padding: 1rem 2rem;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.btn-whatsapp {
  background: var(--color-success); color: #fff; font-weight: 700;
  box-shadow: 0 4px 20px -5px hsla(152, 69%, 31%, 0.4);
}
.btn-whatsapp:hover { transform: scale(1.05); }

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.3s; padding: 1.25rem 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1); padding: 0.75rem 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--color-primary-foreground); transition: color 0.3s; }
.scrolled .logo-text { color: var(--color-foreground); }
.desktop-nav { display: none; align-items: center; gap: 2rem; }
.nav-link { font-size: 0.875rem; font-weight: 500; color: var(--color-primary-foreground); transition: color 0.3s; }
.scrolled .nav-link { color: var(--color-foreground); }
.nav-link:hover { color: var(--color-accent); }
.mobile-menu-btn { display: block; background: none; border: none; cursor: pointer; color: var(--color-primary-foreground); }
.scrolled .mobile-menu-btn { color: var(--color-foreground); }
.mobile-menu { background: var(--color-background); border-top: 1px solid var(--color-border); }
.mobile-nav { padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav-link { font-weight: 500; padding: 0.5rem 0; color: var(--color-foreground); }

@media (min-width: 768px) {
  .desktop-nav { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* HERO */
.hero-section { position: relative; min-height: 100vh; background: linear-gradient(135deg, var(--color-primary) 0%, hsl(222, 47%, 18%) 100%); overflow: hidden; }
.hero-bg-decor { position: absolute; inset: 0; overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(48px); }
.hero-blob-1 { top: 5rem; left: 2.5rem; width: 18rem; height: 18rem; background: hsla(45, 93%, 47%, 0.1); }
.hero-blob-2 { bottom: 5rem; right: 2.5rem; width: 24rem; height: 24rem; background: hsla(45, 93%, 47%, 0.05); }
.hero-blob-3 { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 37rem; height: 37rem; background: hsla(45, 93%, 47%, 0.05); }
.hero-container { position: relative; z-index: 10; padding-top: 5rem; padding-bottom: 4rem; }
.hero-grid { display: grid; gap: 3rem; align-items: center; }
.hero-content { text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 9999px; background: hsla(45, 93%, 47%, 0.2);
  color: var(--color-accent); font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem;
}
.pulse-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--color-accent); animation: pulse 2s infinite; }
.hero-title { font-size: 2.25rem; font-weight: 700; color: var(--color-primary-foreground); line-height: 1.1; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; margin-bottom: 2.5rem; }
.hero-benefits { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-benefit { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.7); }
.hero-benefit svg { color: var(--color-accent); }
.hero-benefit span { font-size: 0.875rem; font-weight: 500; }

.hero-image-wrap { position: relative; display: flex; justify-content: center; }
.hero-image-glow { position: absolute; inset: 0; border-radius: 50%; background: linear-gradient(to top right, hsla(45, 93%, 47%, 0.3), hsla(45, 93%, 47%, 0.1)); filter: blur(32px); transform: scale(1.1); }
.hero-image-container { position: relative; width: 18rem; height: 18rem; border-radius: 50%; overflow: hidden; border: 4px solid hsla(45, 93%, 47%, 0.3); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.hero-image { width: 100%; height: 100%; object-fit: cover; }

.floating-badge { position: absolute; background: var(--color-background); border-radius: 0.75rem; padding: 1rem; box-shadow: 0 4px 20px -5px rgba(0,0,0,0.1); }
.badge-students { bottom: -1rem; left: -1rem; display: flex; align-items: center; gap: 0.75rem; }
.badge-icon { width: 3rem; height: 3rem; border-radius: 50%; background: hsla(45, 93%, 47%, 0.2); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.badge-value { font-size: 0.875rem; font-weight: 700; color: var(--color-foreground); }
.badge-label { font-size: 0.75rem; color: var(--color-muted); }
.badge-rating { top: -1rem; right: -1rem; }
.stars { color: var(--color-accent); font-size: 1.125rem; display: flex; gap: 0.125rem; }
.rating-value { font-weight: 700; color: var(--color-foreground); margin-left: 0.5rem; }
.badge-rating .stars { display: inline; }

.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { display: block; width: 100%; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }

@media (min-width: 768px) {
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1.25rem; }
  .hero-buttons { flex-direction: row; }
  .hero-image-container { width: 24rem; height: 24rem; }
  .hero-container { padding-top: 7rem; padding-bottom: 6rem; }
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { text-align: left; }
  .hero-subtitle { margin-left: 0; }
  .hero-buttons { justify-content: flex-start; }
  .hero-benefits { justify-content: flex-start; }
  .hero-title { font-size: 3.75rem; }
  .hero-image-wrap { justify-content: flex-end; }
}

/* SECTIONS */
.section { padding: 5rem 0; }
.section-alt { background: var(--color-secondary); }
.section-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.section-badge {
  display: inline-block; padding: 0.5rem 1rem; border-radius: 9999px;
  background: hsla(45, 93%, 47%, 0.1); color: var(--color-accent);
  font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem;
}
.section-title { font-size: 1.875rem; font-weight: 700; color: var(--color-foreground); margin-bottom: 1.5rem; line-height: 1.2; }
.section-subtitle { font-size: 1.125rem; color: var(--color-muted); }

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

/* GRIDS */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .grid { gap: 2rem; }
}

/* Feature cards */
.feature-card {
  padding: 1.5rem 2rem; border-radius: 1rem; background: var(--color-card);
  border: 1px solid var(--color-border); transition: all 0.3s;
}
.feature-card:hover { border-color: hsla(45, 93%, 47%, 0.5); box-shadow: 0 4px 20px -5px rgba(0,0,0,0.1); }
.feature-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; background: hsla(45, 93%, 47%, 0.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--color-accent);
}
.feature-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.feature-card p { color: var(--color-muted); line-height: 1.6; }

/* Benefit cards */
.benefit-card {
  display: flex; gap: 1rem; padding: 1.5rem; border-radius: 1rem; background: var(--color-background);
  border: 1px solid var(--color-border); transition: all 0.3s;
}
.benefit-card:hover { border-color: hsla(45, 93%, 47%, 0.3); box-shadow: 0 4px 20px -5px rgba(0,0,0,0.1); }
.benefit-icon {
  flex-shrink: 0; width: 3rem; height: 3rem; border-radius: 0.75rem; background: hsla(45, 93%, 47%, 0.1);
  display: flex; align-items: center; justify-content: center; color: var(--color-accent);
}
.benefit-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.benefit-card p { color: var(--color-muted); font-size: 0.875rem; line-height: 1.6; }

/* For whom */
.for-whom-card { padding: 2rem; border-radius: 1rem; border: 2px solid; }
.for-whom-yes { background: hsla(152, 69%, 31%, 0.05); border-color: hsla(152, 69%, 31%, 0.2); }
.for-whom-no { background: hsla(0, 84%, 60%, 0.05); border-color: hsla(0, 84%, 60%, 0.2); }
.for-whom-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.for-whom-icon { width: 2.5rem; height: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.for-whom-icon-yes { background: hsla(152, 69%, 31%, 0.2); color: var(--color-success); }
.for-whom-icon-no { background: hsla(0, 84%, 60%, 0.2); color: var(--color-destructive); }
.for-whom-card h3 { font-size: 1.25rem; font-weight: 700; }
.for-whom-card ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.for-whom-card li { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-icon { color: var(--color-success); font-weight: 700; flex-shrink: 0; }
.x-icon { color: var(--color-destructive); font-weight: 700; flex-shrink: 0; }
.for-whom-no li { color: var(--color-muted); }
.for-whom-grid { max-width: 64rem; margin: 0 auto; }

/* About */
.about-grid { align-items: center; gap: 3rem; }
.about-image-wrap { position: relative; }
.about-image-container { position: relative; border-radius: 1rem; overflow: hidden; aspect-ratio: 4/5; max-width: 28rem; margin: 0 auto; }
.about-image { width: 100%; height: 100%; object-fit: cover; }
.about-image-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
}
.about-image-name { color: var(--color-primary-foreground); font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; }
.about-image-role { color: rgba(255,255,255,0.8); }
.badge-global { position: absolute; bottom: -2rem; right: -1rem; display: flex; align-items: center; gap: 0.75rem; }
.flag-row { display: flex; gap: 0.25rem; font-size: 1.25rem; }
.badge-global p { font-size: 0.875rem; color: var(--color-muted); }
.badge-global strong { color: var(--color-foreground); }
.about-content p { font-size: 1.125rem; color: var(--color-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.stat-card { text-align: center; padding: 1rem; border-radius: 0.75rem; background: var(--color-background); border: 1px solid var(--color-border); }
.stat-value { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--color-foreground); }
.stat-label { font-size: 0.875rem; color: var(--color-muted); }

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .about-image-container { margin: 0; }
}

/* Step cards */
.step-card {
  padding: 1.5rem 2rem; border-radius: 1rem; background: var(--color-card);
  border: 1px solid var(--color-border); transition: all 0.3s; height: 100%;
}
.step-card:hover { border-color: hsla(45, 93%, 47%, 0.5); box-shadow: 0 4px 20px -5px rgba(0,0,0,0.1); }
.step-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.step-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem; background: hsla(45, 93%, 47%, 0.1);
  display: flex; align-items: center; justify-content: center; color: var(--color-accent);
}
.step-number { font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 700; color: hsla(45, 93%, 47%, 0.2); }
.step-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.step-card p { color: var(--color-muted); line-height: 1.6; }

/* Testimonials */
.testimonial-card {
  padding: 1.5rem; border-radius: 1rem; background: var(--color-background);
  border: 1px solid var(--color-border); transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: 0 4px 20px -5px rgba(0,0,0,0.1); }
.quote-icon { font-size: 2.5rem; color: hsla(45, 93%, 47%, 0.3); margin-bottom: 1rem; line-height: 1; }
.testimonial-text { color: var(--color-foreground); line-height: 1.6; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 3rem; height: 3rem; border-radius: 50%; object-fit: cover; }
.testimonial-avatar-placeholder {
  width: 3rem; height: 3rem; border-radius: 50%; background: hsla(45, 93%, 47%, 0.1);
  display: flex; align-items: center; justify-content: center; font-size: 1.125rem; font-weight: 700; color: var(--color-accent);
}
.testimonial-name { font-weight: 700; color: var(--color-foreground); }
.testimonial-location { font-size: 0.875rem; color: var(--color-muted); }
.testimonial-card .stars { margin-top: 1rem; font-size: 1rem; }

/* Offer */
.offer-card {
  position: relative; max-width: 36rem; margin: 0 auto; padding: 2rem 2.5rem;
  border-radius: 1.5rem; background: var(--color-card); border: 2px solid hsla(45, 93%, 47%, 0.3);
  box-shadow: 0 4px 20px -5px rgba(0,0,0,0.1);
}
.offer-badge {
  position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  padding: 0.5rem 1.5rem; border-radius: 9999px; background: var(--color-accent);
  color: var(--color-accent-foreground); font-size: 0.875rem; font-weight: 700;
}
.offer-title { font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: 0.5rem; margin-top: 1rem; }
.offer-desc { text-align: center; color: var(--color-muted); margin-bottom: 2rem; }
.offer-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.offer-list li { display: flex; align-items: center; gap: 0.75rem; }
.offer-price { text-align: center; margin-bottom: 2rem; }
.price-label { font-size: 0.875rem; color: var(--color-muted); margin-bottom: 0.5rem; }
.price-main { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 700; }
.price-main span { color: var(--color-accent); }
.price-alt { font-size: 0.875rem; color: var(--color-muted); margin-top: 0.5rem; }
.offer-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; font-size: 0.875rem; color: var(--color-muted); margin-top: 1.5rem; }

/* Guarantee */
.guarantee-card { text-align: center; padding: 2rem; border-radius: 1rem; background: var(--color-background); border: 1px solid var(--color-border); }
.guarantee-icon { font-size: 2rem; margin-bottom: 1.5rem; }
.guarantee-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.guarantee-card p { color: var(--color-muted); line-height: 1.6; }

/* FAQ */
.faq-container { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--color-card); border: 1px solid var(--color-border); border-radius: 0.75rem;
  overflow: hidden; transition: border-color 0.3s;
}
.faq-item.open { border-color: hsla(45, 93%, 47%, 0.5); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer;
  font-weight: 600; font-size: 1rem; color: var(--color-foreground); text-align: left;
  font-family: inherit;
}
.faq-arrow { font-size: 0.75rem; transition: transform 0.3s; color: var(--color-muted); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 1.5rem 1.25rem; }
.faq-answer p { color: var(--color-muted); line-height: 1.6; }

/* Final CTA */
.final-cta-section { min-height: auto; }

/* FOOTER */
.site-footer { padding: 3rem 0; background: var(--color-primary); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.footer-brand { text-align: center; }
.footer-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--color-primary-foreground); margin-bottom: 0.5rem; }
.footer-copy { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.footer-social { display: flex; gap: 1rem; }
.social-link {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: var(--color-primary-foreground);
  transition: background 0.3s;
}
.social-link:hover { background: rgba(255,255,255,0.2); }

@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
  .footer-brand { text-align: left; }
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: var(--color-success); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px -5px rgba(0,0,0,0.3); transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* Scroll animations */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-secondary); }
::-webkit-scrollbar-thumb { background: var(--color-muted); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }

.float-effect {
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

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

.text-black {
  color: black;
}


.for-whom-card h3,
.for-whom-card ul li {
  color: #000000; /* preto */
}


.feature-card h3 {
  color: #000000; /* preto */
}


.benefit-card h3 {
  color: #000000; /* preto */
}


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


.step-title {
  color: #000 !important; /* força preto */
}

.testimonial-text {
    color: #000000;  /* preto */
}

.testimonial-name {
    color: #000000; /* preto */
    font-weight: bold; /* opcional, para destacar */
}

.offer-list li {
  color: #000000; /* preto */
}

.offer-title {
  color: #000000; /* preto */
}

.price-main {
  color: #001524; /* preto para o "12x" */
}

.price-main span {
  color: #ffbd00; /* exemplo: mantém o valor em amarelo */
}

.guarantee-card h3 {
  color: #000000; /* preto */
}

.faq-question {
  color: #000000; /* preto */
}

.faq-answer {
  color: #65758b; /* preto */
}

.rating-value {
  color: #000 !important;
}

.badge-value {
  color: #000 !important;
}


/* Garante que o contêiner da imagem seja referência para posicionamento */
.hero-image-wrap {
  position: relative;
}

/* Move e alinha a caixa de alunos transformados */
.floating-badge.badge-students {
  position: absolute;
  left: 130px;   /* ajuste horizontal: negativo = mais para a esquerda */
  top: 85%;      /* centraliza verticalmente */
  transform: translateY(-50%); /* corrige o alinhamento vertical */
}


.section-white {
  background-color: #ffffff;
  color: #000000; /* opcional: garante legibilidade */
}

.section {
  background-color: #ffffff; /* branco */
  color: #000000; /* texto preto para contraste */
}
