/* FONTES E VARIÁVEIS GLOBAIS */
@font-face {
  font-family: "Gambarino";
  src: url("./assets/fonts/Gambarino-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Fontes - Tipografia */
  --Title1: 64px;
  --Title1LH: 68px;
  --Title2: 72px;
  --Title2LH: 72px;
  --Title3: 52px;
  --Title3LH: 56px;
  --Title4: 40px;
  --Title4LH: 96px;
  --SubTitle: 18px;
  --Text1: 14px;
  --Text2: 12px;

  /* Cores Principais */
  --White: #faf7f2;
  --Off-White: #f7f4f1;
  --White70: rgba(250, 247, 242, 0.7);
  --White5: rgba(250, 247, 242, 0.05);
  --Beige: #f2efe9;
  --BgLight: #f5f6f8;

  --Black: #101010;
  --Black70: rgba(16, 16, 16, 0.7);
  --Black5: rgba(16, 16, 16, 0.05);
  --TextDark: #333333;
  --TextLight: #888888;

  --DefaultBlue: #13213c;
  --DarkBlue: #0b1426;
  --ScallaDarkBlue: #13213c;

  --Red: #c8202f;
  --ScallaRed: #c8202f;

  --Green: #20b440;
  --BtnGray: #c4c4c4;
  --Border: rgba(19, 33, 60, 0.15);

  --SectionPadding: 5rem 9vw;
}

/* RESETS E CONFIGURAÇÕES DO BODY */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--White);
  color: var(--Black70);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  padding-top: 80px;
}

body.body-schedule {
  background-color: var(--Beige);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  padding-top: 2rem;
}

body.body-wizard {
  background-color: var(--DefaultBlue);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 0;
}

h1,
h2,
h3 {
  font-family: "Gambarino", serif;
  font-weight: normal;
  margin: 0;
}

h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin: 0;
}

p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0;
}

span {
  color: var(--Red);
}

#promo-popup .popup-card {
  padding: 2rem 2.5rem; 
}

#promo-popup .popup-content h2 {
  font-size: 25px !important; 
  margin-bottom: 0.2rem;
}

#promo-popup .popup-content p {
  font-size: 13px;
  margin-bottom: 0.5rem;
}

#promo-popup .form-group {
  margin-bottom: 0.6rem; 
}

#promo-popup .form-group label {
  margin-bottom: 0.2rem; 
}

#promo-popup .form-control {
  padding: 0.65rem 1rem; 
}

#promo-popup .checkbox-group {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

#promo-popup .g-recaptcha {
  margin-bottom: 10px !important;
  transform: scale(0.88); 
  transform-origin: left center; 
}

#promo-popup .btn-submit {
  margin-top: 5px !important;
  height: 48px; 
}

.section-overline {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--Black70);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
}

.section-overline .dash {
  color: var(--Red);
  margin-right: 4px;
}

/* FORMULÁRIOS, BOTÕES E COMPONENTES */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--TextDark);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--Border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
  color: var(--DefaultBlue);
  background-color: transparent;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.form-control::placeholder {
  color: rgba(19, 33, 60, 0.4);
}

.form-control:focus {
  outline: none;
  border-color: var(--Red);
  box-shadow: 0 0 0 3px rgba(200, 32, 47, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2313213c%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.65rem auto;
  cursor: pointer;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
}

.btn-red {
  background-color: var(--Red) !important;
  color: var(--White) !important;
}

.btn-blue {
  background-color: var(--DefaultBlue) !important;
  color: var(--White) !important;
}

.btn-block {
  display: block;
  text-align: center;
  width: 100%;
}

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 9vw;
  width: 100%;
  background-color: var(--White);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition:
    box-shadow 0.3s ease,
    padding 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 0.8rem 5vw;
}

.header-logo img {
  height: 40px;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1001;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.header-link a {
  font-family: "Montserrat", sans-serif;
  font-size: var(--Text1);
  color: var(--Black70);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.header-link a:hover {
  color: var(--Red);
}

.header-button {
  font-family: "Montserrat", sans-serif;
  font-size: var(--Text1);
  background-color: var(--Red);
  padding: 0.7rem 1.5rem;
  color: var(--White);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  display: inline-block;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}

.header-button:hover {
  background-color: var(--DefaultBlue);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--DefaultBlue);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.header-button-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--BgLight);
  color: var(--DefaultBlue);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.mobile-login-btn {
  display: none;
}

.profile-button:hover {
  background-color: var(--DefaultBlue);
  color: var(--White);
  border-color: var(--DefaultBlue);
  transform: translateY(-2px);
}

/* Header Secundário */
.wizard-header {
  width: 100%;
  background-color: var(--DarkBlue);
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wizard-header img {
  height: 50px;
}

.wizard-header .header-button {
  background-color: var(--Red);
  color: var(--White);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.wizard-header .header-button:hover {
  background-color: var(--White);
  color: var(--Red);
}

/* POPUPS E MODAIS */
.popup-overlay,
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(11, 20, 38, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
  padding: 1.5rem;
}

.popup-overlay.active,
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.popup-card {
  background-color: var(--White);
  border-radius: 20px;
  padding: 4rem 3rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
  text-align: center;
  max-height: 90vh;
  overflow-y: auto;
}

.popup-overlay.active .popup-card {
  transform: scale(1);
}

.popup-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--DefaultBlue);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}

.popup-close-btn:hover {
  background-color: rgba(19, 33, 60, 0.08);
  color: var(--Red);
  transform: rotate(90deg);
}

.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.popup-content h2 {
  font-size: 32px;
  line-height: 1.2;
  color: var(--DefaultBlue);
  margin: 0;
}

.popup-content p {
  font-size: 14px;
  color: var(--Black70);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.popup-buttons {
  width: 100%;
}

.popup-buttons .home-button {
  height: 52px;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  background-color: var(--Red);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--White);
  text-decoration: none;
}

.popup-price {
  width: 100%;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}

.popup-price .price-prefix {
  display: block;
  font-size: 13px;
  color: var(--Black70);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 5px;
}

.popup-price .price-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--DefaultBlue);
  line-height: 1;
}

.popup-price .price-suffix {
  font-size: 16px;
  font-weight: 600;
  color: var(--Black70);
}

/* Modais de Aviso */
.modal-card {
  background: var(--BgLight);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  max-width: 350px;
  width: 90%;
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2.5rem;
}

.modal-icon.success {
  background-color: var(--Green);
}
.modal-icon.error {
  background-color: var(--Red);
}

.modal-card h2 {
  color: var(--TextDark);
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.modal-card p {
  color: var(--TextLight);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.btn-modal {
  background-color: var(--Green);
  color: white;
  border: none;
  padding: 0.7rem 2.5rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}
.btn-modal.btn-error {
  background-color: var(--Red);
}

/* Loaders */
.loader {
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid var(--White);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

.loader-container {
  width: 65px;
  height: 65px;
  margin: 0 auto 1rem;
  position: relative;
  animation: spin 1.2s linear infinite;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: absolute;
}
.dot1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--Red);
}
.dot2 {
  bottom: 4px;
  left: 2px;
  background-color: var(--Green);
}
.dot3 {
  bottom: 4px;
  right: 2px;
  background-color: var(--DefaultBlue);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* PÁGINA ESPECÍFICA */
.schedule-container {
  background: var(--White);
  max-width: 620px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  padding: 3.5rem 3rem;
  max-height: 750px;
  margin-top: 50px;
}

.schedule-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.schedule-header h1 {
  font-size: 40px;
  line-height: 1.1;
  color: var(--DefaultBlue);
  margin-bottom: 1rem;
}

.btn-submit {
  width: 100%;
  background-color: var(--Red);
  color: var(--White);
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
}

.btn-submit:hover {
  background-color: var(--DefaultBlue);
  transform: translateY(-2px);
}

.btn-submit:disabled {
  background-color: rgba(19, 33, 60, 0.3);
  cursor: not-allowed;
  transform: none;
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 2rem;
  color: var(--Black70);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--Red);
}

.message-box {
  display: none;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}
.message-success {
  background-color: rgba(32, 180, 64, 0.1);
  color: #167a2a;
  border: 1px solid rgba(32, 180, 64, 0.2);
}
.message-error {
  background-color: rgba(200, 32, 47, 0.1);
  color: var(--Red);
  border: 1px solid rgba(200, 32, 47, 0.2);
}

/* PÁGINA ESPECÍFICA: MATRÍCULA */
.main-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  width: 100%;
}

.layout-container {
  display: flex;
  width: 100%;
  max-width: 1100px;
  height: 90vh;
  max-height: 720px;
  background-color: var(--DefaultBlue);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.left-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: var(--White);
  text-align: center;
}

.left-panel img {
  max-width: 200px;
  margin-bottom: 1.5rem;
}

.left-panel h2 {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4;
  max-width: 260px;
}

.right-panel {
  flex: 1.5;
  background-color: var(--BgLight);
  border-radius: 20px;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-header h1 {
  text-align: center;
  font-size: 2rem;
  color: var(--TextDark);
  margin-bottom: 1.5rem;
}

/* Stepper */
.stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
}

.stepper::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 5%;
  width: 90%;
  height: 1px;
  background-color: var(--Border);
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: var(--BgLight);
  padding: 0 8px;
}

.step-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--TextLight);
  color: var(--White);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  transition: all 0.3s;
}

.step.active .step-circle,
.step.completed .step-circle {
  background-color: var(--DefaultBlue);
}

.step-label {
  font-size: 0.6rem;
  color: var(--TextLight);
  text-align: center;
  white-space: nowrap;
}

.step.active .step-label {
  color: var(--DefaultBlue);
  font-weight: 600;
}

#wizardForm {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.steps-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding-right: 5px;
}

.step-content {
  display: none;
  width: 100%;
  margin: auto 0;
  animation: fadeIn 0.6s ease;
}

.step-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0.8rem;
}
.checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  width: 14px;
  height: 14px;
}
.checkbox-group label {
  font-size: 0.7rem;
  line-height: 1.4;
  color: var(--TextDark);
}
.checkbox-group label a {
  color: var(--DefaultBlue);
  text-decoration: underline;
}

.form-actions {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.btn {
  flex: 1;
  padding: 0.85rem;
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.btn-next {
  background-color: var(--BtnGray);
  color: var(--White);
}
.btn-next:hover {
  background-color: #a0a0a0;
}

.btn-prev {
  background-color: transparent;
  border: 1px solid var(--Border);
  color: var(--TextDark);
  display: none;
}
.btn-prev:hover {
  background-color: var(--BgLight);
}

/* PÁGINA INICIAL (HOME E SEÇÕES DO SITE) */
/* Hero Section */
.home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
  padding-inline-start: 10vw;
  padding-top: 2rem;
  width: 100%;
}

.home-info {
  flex: 1;
  max-width: 600px;
  padding-inline: 3rem;
}

.home-info h1 {
  color: var(--DefaultBlue);
  font-size: var(--Title1);
  line-height: var(--Title1LH);
}

.home-badge {
  font-size: var(--Text2);
  font-weight: 600;
  color: var(--Black70);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.home-description {
  font-size: var(--Text1);
  font-weight: 500;
  color: var(--Black70);
  padding-block: 1.2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
  padding-block: 1rem;
  flex-wrap: wrap;
}

.home-button {
  font-family: "Montserrat", sans-serif;
  font-size: var(--Text1);
  font-weight: 500;
  color: var(--White);
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 210px;
  height: 48px;
}
.home-button:hover {
  background-color: var(--DefaultBlue) !important;
}

.quality-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  padding-top: 1rem;
  flex-wrap: wrap;
}

.quality {
  display: flex;
  align-items: center;
  gap: 6px;
}
.quality p {
  font-size: var(--Text2);
  font-weight: 600;
  color: var(--Black70);
}

.home-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  max-width: 650px;
  position: relative;
}

.home-image img {
  height: 720px;
  object-fit: contain;
  margin-left: 5rem;
}

/* TAG DE APROVAÇÃO */
.approval-badge {
  position: absolute;
  top: 5%;
  left: -3rem; 
  background: var(--DefaultBlue);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(19, 33, 60, 0.25);
  z-index: 10;
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-number {
  font-family: "Gambarino", serif;
  font-size: 42px;
  color: var(--White);
  line-height: 1;
  margin-bottom: 4px;
}

.badge-text {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(250, 247, 242, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-align: center;
}

/* ANIMAÇÃO DE FLUTUAÇÃO */
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* RESPONSIVIDADE PARA A TAG */
@media (max-width: 1024px) {
  .approval-badge {
    width: 130px;
    height: 130px;
    left: 0;
  }
  .badge-number {
    font-size: 36px;
  }
  .badge-text {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .approval-badge {
    top: 5%;
    left: 15%;
  }
}

@media (max-width: 480px) {
  .approval-badge {
    display: none;
  }
}
/* Banner Estatísticas */
.banner {
  display: column;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 12vw;
  background-color: var(--DefaultBlue);
  color: var(--White);
  gap: 2rem;
  text-align: center;
}
.banner-item {
  flex: 1;
}

.banner-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 2rem;
}

.banner h1 {
  font-size: var(--Title1);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.banner p {
  font-size: var(--Text1);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

/* Para os Pais */
.parents-section {
  background-color: var(--Beige);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  padding: var(--SectionPadding);
}
.parents-content {
  flex: 1.2;
}
.parents-content h2 {
  font-size: var(--Title3);
  line-height: 1.1;
  color: var(--DefaultBlue);
  margin: 1rem 0 1.5rem 0;
}
.parents-content .section-subtitle {
  font-size: 14px;
  color: var(--Black70);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.parents-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.parents-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}
.parents-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.parents-item svg {
  color: var(--Green);
  min-width: 18px;
  margin-top: 2px;
}
.parents-item-text h4 {
  font-size: 14px;
  color: var(--DefaultBlue);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-weight: 600;
}
.parents-item-text p {
  font-size: 13px;
  color: var(--Black70);
  line-height: 1.5;
}

.parents-card {
  background-color: var(--DefaultBlue);
  color: var(--White);
  border-radius: 16px;
  padding: 3.5rem 3rem;
  width: 100%;
  max-width: 440px;
  flex-shrink: 0;
}
.parents-card h3 {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.parents-card .card-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
.parents-card a {
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.parents-card a:hover {
  border: 1px solid var(--White);
}
.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.card-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}
.card-list svg {
  color: rgba(255, 255, 255, 0.6);
  min-width: 16px;
}

/* O Método */
.method-section {
  background-color: var(--White);
  padding: var(--SectionPadding);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.method-header {
  max-width: 600px;
  margin-bottom: 4rem;
}
.method-header h2 {
  font-size: var(--Title3);
  color: var(--DefaultBlue);
  margin: 1rem 0;
  line-height: 1.1;
}
.method-header p {
  font-size: 14px;
  color: var(--Black70);
  line-height: 1.6;
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  width: 100%;
  text-align: left;
}
.method-item {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.item-1 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}
.item-2 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.item-3 {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}
.method-num {
  font-family: "Gambarino", serif;
  font-size: 40px;
  color: var(--Red);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.method-title {
  font-family: "Gambarino", serif;
  font-size: 28px;
  color: var(--DefaultBlue);
  margin-bottom: 1rem;
}
.method-desc {
  font-size: 13px;
  color: var(--Black70);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  min-height: 45px;
}
.method-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--Black70);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

/* Depoimentos */
.testimonials-section {
  background-color: var(--Beige);
  padding: var(--SectionPadding);
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.testimonials-title h2 {
  font-size: var(--Title3);
  color: var(--DefaultBlue);
  margin: 1rem 0 0 0;
  line-height: 1.1;
}
.testimonials-nav {
  display: flex;
  gap: 0.8rem;
  padding-bottom: 0.5rem;
}
.nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--Black70);
  transition: all 0.3s ease;
}
.nav-btn:hover {
  border-color: var(--DefaultBlue);
  color: var(--DefaultBlue);
  background-color: rgba(19, 33, 60, 0.05);
}
.testimonials-cards {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.5rem 0;
}
.testimonials-cards::-webkit-scrollbar {
  display: none;
}
.testimonial-card {
  background-color: var(--White);
  padding: 2.5rem;
  border-radius: 16px;
  flex: 0 0 calc(33.333% - 1.34rem);
  min-width: 290px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.quote-icon {
  color: var(--Red);
  width: 20px;
  height: 20px;
}
.testimonial-card > p {
  font-size: 13.5px;
  color: var(--Black70);
  line-height: 1.6;
  flex-grow: 1;
  margin: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--DefaultBlue);
}
.author-info h4 {
  color: var(--DefaultBlue);
  margin: 0 0 4px 0;
}
.author-info p {
  font-size: 11px;
  color: var(--Black70);
  margin: 0;
}

/* Apoio Psicopedagógico */
.psico-section {
  padding: var(--SectionPadding);
  background-color: var(--White);
  text-align: center;
}
.psico-header {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.psico-header h2 {
  font-size: 2.5rem;
  color: var(--DefaultBlue);
  margin: 1rem 0;
  line-height: 1.2;
}
.psico-header p {
  color: var(--Black70);
  font-size: 1.1rem;
  line-height: 1.6;
}
.psico-cards-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .psico-cards-container {
    flex-direction: row;
    align-items: stretch;
  }
}
.psico-card {
  flex: 1;
  border-radius: 12px;
  padding: 3rem;
  text-align: left;
}
.light-card {
  background-color: var(--White);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.psico-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.psico-avatar {
  width: 80px;
  height: 80px;
  background-color: var(--DefaultBlue);
  color: var(--White);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: "Gambarino", serif;
}
.psico-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.psico-info .psico-role {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: var(--Red);
  font-weight: 700;
  letter-spacing: 1px;
}
.psico-info h3 {
  font-size: 1.5rem;
  color: var(--DefaultBlue);
  margin: 0.25rem 0;
}
.psico-info p {
  font-size: 0.85rem;
  color: var(--Black70);
  line-height: 1.4;
}
.psico-quote {
  border-left: 3px solid var(--Red);
  padding-left: 1.5rem;
  margin: 0;
  font-size: 1.1rem;
  color: var(--Black);
  line-height: 1.6;
}

.dark-card {
  background-color: var(--DefaultBlue);
  color: var(--White);
  display: flex;
  flex-direction: column;
}
.dark-card h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--White);
}
.psico-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}
.psico-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  font-family: "Montserrat", sans-serif;
}
.psico-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.heart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--Red);
}
.psico-note {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: 1.5rem;
}

/* Aulas Particulares */
.particular-section {
  background-color: var(--DefaultBlue);
  padding: var(--SectionPadding);
  color: var(--White);
}
.particular-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 992px) {
  .particular-container {
    flex-direction: row;
    align-items: center;
  }
  .particular-left,
  .particular-right {
    flex: 1;
  }
}
.particular-left h2 {
  font-size: 3rem;
  margin: 1rem 0 1.5rem;
  line-height: 1.1;
  color: var(--White);
}
.particular-left p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.particular-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.particular-list li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.particular-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.particular-num {
  font-family: "Gambarino", serif;
  font-size: 2rem;
  color: var(--Red);
  line-height: 1;
}
.particular-text h4 {
  color: var(--White);
  font-size: 1.1rem;
  margin: 0 0 0.25rem 0;
}
.particular-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* Aulas de Reforço */
.reforco-section {
  background-color: var(--Off-White);
  padding: var(--SectionPadding);
}
.reforco-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 992px) {
  .reforco-container {
    flex-direction: row;
    align-items: flex-start;
  }
  .reforco-left {
    flex: 0 0 40%;
    padding-right: 2rem;
  }
  .reforco-right {
    flex: 1;
    display: flex;
    gap: 1.5rem;
  }
}
@media (max-width: 991px) {
  .reforco-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.reforco-left h2 {
  font-family: "Gambarino", serif;
  font-size: 2.8rem;
  color: var(--DefaultBlue);
  margin: 1rem 0 1.5rem;
  line-height: 1.1;
}
.reforco-left h2 span {
  color: var(--Red);
}
.reforco-left p {
  color: var(--Black70);
  font-size: 1rem;
  line-height: 1.6;
}
.reforco-card {
  background-color: var(--White);
  border-radius: 12px;
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.reforco-title-red {
  font-family: "Gambarino", serif;
  font-size: 2rem;
  color: var(--Red);
  margin: 0 0 1rem 0;
}
.reforco-title-blue {
  font-family: "Gambarino", serif;
  font-size: 2rem;
  color: var(--DefaultBlue);
  margin: 0 0 1rem 0;
}
.reforco-subtitle {
  font-weight: 600;
  color: var(--Black);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.reforco-desc {
  color: var(--Black70);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.reforco-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}
.reforco-check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--Black);
}
.check-red li svg {
  color: var(--Red);
}
.check-blue li svg {
  color: var(--DefaultBlue);
}

/* Sobre o Scalla */
.about-section {
  background-color: var(--White);
  padding: var(--SectionPadding);
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
.about-left {
  flex: 1;
  max-width: 500px;
}
.about-left h2 {
  font-size: var(--Title3);
  color: var(--DefaultBlue);
  margin: 1rem 0 3rem 0;
  line-height: 1.1;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.about-grid-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.about-grid-item:nth-child(odd) {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  padding-right: 1.5rem;
}
.about-grid-item:nth-child(even) {
  padding-left: 1.5rem;
}
.about-grid-item h3 {
  font-family: "Gambarino", serif;
  font-size: 28px;
  color: var(--Red);
  margin: 0;
}
.about-grid-item p {
  font-size: 14px;
  color: var(--DefaultBlue);
  font-weight: 600;
  margin: 0;
}
.about-right {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 3rem;
}

.about-right p {
  font-size: 16px;
  text-align: justify;
  color: var(--Black70);
  line-height: 1.6;
  margin: 0;
}

.about-right p:first-child {
  font-family: "Gambarino", serif;
  font-size: 24px;
  color: var(--DefaultBlue);
  line-height: 1.3;
}

.about-right p strong {
  color: var(--Red);
  font-weight: 600;
}

/* Programas */
.programs-section {
  background-color: var(--DarkBlue);
  padding: var(--SectionPadding);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4rem;
}
.programs-header {
  max-width: 650px;
}
.programs-header .section-overline {
  color: rgba(255, 255, 255, 0.6);
}
.programs-header h2 {
  font-size: var(--Title3);
  color: var(--White);
  margin: 1rem 0;
  line-height: 1.1;
}
.programs-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.programs-cards {
  display: flex;
  gap: 2rem;
  width: 100%;
  max-width: 900px;
  justify-content: center;
}
.program-card {
  flex: 1;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  min-height: 380px;
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.fatec-card {
  background-color: var(--White);
  color: var(--DefaultBlue);
}
.etec-card {
  background-color: var(--Red);
  color: var(--White);
}
.program-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fatec-card .program-level {
  color: var(--DefaultBlue);
}
.etec-card .program-level {
  color: var(--White);
}
.etec-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.etec-features-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}
.etec-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--Red);
  font-weight: bold;
  font-size: 1.1rem;
}

   /* ANIMAÇÃO DE SUCESSO (POPUP FATEC) */
.success-animation-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0;
  animation: fadeIn 0.4s ease-out forwards;
}

.success-svg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: var(--Green);
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px var(--Green);
  animation:
    fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
}

.success-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: var(--Green);
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%,
  100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 50px rgba(32, 180, 64, 0.1);
  }
}
.program-middle {
  margin-top: 3rem;
  margin-bottom: 4rem;
}
.program-middle h3 {
  font-size: 72px;
  font-family: "Gambarino", serif;
  margin: 0 0 0.5rem 0;
  line-height: 1;
}
.program-middle p {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}
.program-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}
.program-status {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.8;
}
.program-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
.program-card:hover .program-arrow {
  transform: translateX(4px);
}
.dark-arrow {
  background-color: var(--DefaultBlue);
  color: var(--White);
}
.light-arrow {
  background-color: var(--White);
  color: var(--Red);
}

/* Aprovados */
.approved-section {
  background-color: var(--Beige);
  padding: var(--SectionPadding);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.approved-header {
  text-align: center;
}
.approved-header h2 {
  font-size: var(--Title3);
  color: var(--DefaultBlue);
  margin: 1rem 0;
  line-height: 1.1;
}
.approved-header p {
  font-size: 14px;
  color: var(--Black70);
  line-height: 1.5;
}
.approved-carousel-wrapper {
  width: 100%;
}
.approved-cards {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 1rem;
}
.approved-cards::-webkit-scrollbar {
  display: none;
}
.approved-card {
  background-color: var(--White);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  flex: 0 0 calc(25% - 1.125rem);
  min-width: 250px;
  scroll-snap-align: start;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.approved-card-top {
  height: 180px;
  width: 100%;
}
.approved-card-top img {
  object-fit: contain;
  height: 180px;
  width: 100%;
}
.approved-card-top.blue-bg {
  background-color: var(--DefaultBlue);
}
.approved-card-top.red-bg {
  background-color: var(--Red);
}
.approved-card-bottom {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.approved-year {
  font-size: 10px;
  font-weight: 700;
  color: var(--Black70);
}
.approved-card-bottom h4 {
  font-size: 14px;
  color: var(--DefaultBlue);
  margin: 0;
  font-weight: 700;
}
.approved-card-bottom p {
  font-size: 10px;
  color: var(--Black70);
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
}
.approved-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 1.5rem;
}
.approved-footer p {
  font-size: 13px;
  color: var(--Black70);
}

/* Resultados */
.results-section {
  background-color: var(--DefaultBlue);
  color: var(--White);
  padding: var(--SectionPadding);
  display: flex;
  flex-direction: column;
}
.results-header h2 {
  font-size: var(--Title3);
  margin: 1rem 0;
  line-height: 1.1;
}
.results-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 3rem;
}
.results-header .section-overline {
  color: rgba(255, 255, 255, 0.6);
}
.results-stats {
  display: flex;
  gap: 6rem;
  margin-bottom: 4rem;
}
.stat-item h3 {
  font-family: "Gambarino", serif;
  font-size: 64px;
  margin: 0 0 0.5rem 0;
  color: var(--White);
  line-height: 1;
}
.stat-item h3 span {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 4px;
}
.stat-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.results-divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0 0 4rem 0;
}
.results-highlights {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
.highlights-left {
  flex: 1;
  max-width: 450px;
}
.highlights-left h2 {
  font-size: 36px;
  line-height: 1.2;
  margin: 1rem 0;
}
.highlights-left p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.highlights-left .section-overline {
  color: rgba(255, 255, 255, 0.6);
}
.highlights-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
}
.highlight-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.highlight-num {
  font-family: "Gambarino", serif;
  font-size: 28px;
  color: var(--Red);
}
.highlight-text h4 {
  font-size: 14px;
  color: var(--White);
  margin: 0 0 4px 0;
}
.highlight-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Dúvidas Frequentes */
.faq-section {
  background-color: var(--Beige);
  padding: var(--SectionPadding);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
}
.faq-left {
  flex: 1;
  max-width: 400px;
  position: sticky;
  top: 3rem;
}
.faq-left h2 {
  font-size: var(--Title3);
  color: var(--DefaultBlue);
  margin: 1rem 0;
  line-height: 1.1;
}
.faq-left p {
  font-size: 14px;
  color: var(--Black70);
  line-height: 1.6;
}
.faq-right {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--DefaultBlue);
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--Black70);
  transition: all 0.3s;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background-color: var(--DefaultBlue);
  color: var(--White);
  border-color: var(--DefaultBlue);
}
.faq-content {
  padding-bottom: 1.5rem;
}
.faq-content p {
  font-size: 13.5px;
  color: var(--Black70);
  line-height: 1.6;
}

/* CTA Final */
.cta-final-section {
  background-color: var(--DefaultBlue);
  padding: 7rem 9vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta-final-section .section-overline {
  color: rgba(255, 255, 255, 0.6);
}
.cta-final-section h2 {
  font-size: var(--Title3);
  color: var(--White);
  margin: 1rem 0;
  line-height: 1.1;
}
.cta-final-section p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.cta-final-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-outline-btn {
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--White);
}
.cta-outline-btn:hover {
  border-color: var(--White);
  background-color: rgba(255, 255, 255, 0.08) !important;
}

/* FOOTER */
.main-footer {
  background-color: #070d19;
  color: var(--White);
  padding: 4rem 2rem 0;
  width: 100%;
  margin-top: auto;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--TextLight);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials a {
  color: var(--White);
  margin-right: 15px;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: var(--Red);
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  font-family: "Gambarino", serif;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--Red);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: var(--TextLight);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--White);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--TextLight);
  margin-bottom: 1rem;
}

.footer-cta-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--Red);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.footer-cta-link:hover {
  transform: translateX(5px);
}

.footer-bottom {
  background-color: #070d19;
  padding: 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--TextLight);
  font-size: 0.8rem;
}

/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float svg {
  color: #fff;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: translateY(-5px);
  color: #fff;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* MEDIA QUERIES (RESPONSIVIDADE GERAL) */

@media (max-width: 1200px) {
  :root {
    --Title1: 52px;
    --Title1LH: 56px;
    --Title3: 44px;
    --Title3LH: 48px;
  }
  .header {
    padding: 1.5rem 4vw;
  }
  .home {
    gap: 3rem;
  }
  .banner {
    padding: 3rem 9vw;
  }
}

@media (max-width: 1024px) {
  :root {
    --Title1: 46px;
    --Title1LH: 50px;
    --Title3: 38px;
    --Title3LH: 42px;
  }
  .header-nav {
    gap: 1.5rem;
  }
  .header-links {
    gap: 1.2rem;
  }

  .parents-section {
    flex-direction: column;
    gap: 4rem;
  }
  .parents-content,
  .parents-card {
    width: 100%;
    max-width: 100%;
  }

  .about-section {
    flex-direction: column;
    gap: 3rem;
  }
  .about-left,
  .about-right {
    max-width: 100%;
    width: 100%;
  }
  .about-right {
    padding-top: 0;
  }

  .program-card {
    padding: 2.5rem 2rem;
    min-height: 340px;
  }
  .program-middle h3 {
    font-size: 56px;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }
  .approved-card {
    flex: 0 0 calc(33.333% - 1rem);
  }

  .results-stats {
    gap: 3rem;
    flex-wrap: wrap;
  }
  .results-highlights {
    flex-direction: column;
    gap: 3.5rem;
  }
  .highlights-left {
    max-width: 100%;
  }

  .faq-section {
    flex-direction: column;
    gap: 3.5rem;
  }
  .faq-left {
    max-width: 100%;
    position: relative;
    top: 0;
  }
}

@media (max-width: 962px) {
  .mobile-menu-btn {
    display: block;
  }
  .header-button-container {
    display: none;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--White);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: right 0.4s ease-in-out;
    z-index: 999;
  }
  .header-nav.active {
    right: 0;
  }
  .header-links {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .header-link a {
    font-size: 18px;
  }

  .mobile-login-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--DefaultBlue);
    text-decoration: none;
    padding: 12px 28px;
    border: 2px solid var(--DefaultBlue);
    border-radius: 50px;
    margin-bottom: -1rem; 
    transition: all 0.3s ease;
  }

  .mobile-login-btn:active {
    background-color: var(--DefaultBlue);
    color: var(--White);
  }

  body.body-wizard {
    height: auto;
    overflow: auto;
  }
  .layout-container {
    flex-direction: column;
    height: auto;
    max-height: none;
  }
  .left-panel {
    padding: 2rem;
  }
  .right-panel {
    padding: 2rem;
    border-radius: 0 0 20px 20px;
  }
  .step-label {
    display: none;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --Title1: 38px;
    --Title1LH: 42px;
    --Title3: 32px;
    --Title3LH: 36px;
    --SectionPadding: 4rem 1.5rem;
  }

  .home {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding-top: 3rem;
    padding-inline-start: 0;
  }
  .home-badge,
  .hero-buttons,
  .quality-container,
  .home-image {
    justify-content: center;
  }
  .home-image {
    width: 100%;
  }
  .home-image img {
    max-height: 400px;
    margin-left: 0;
  }

  .banner {
    flex-direction: column;
    gap: 2.5rem;
    padding: 4rem 1.5rem;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }
  .method-item {
    padding: 2.5rem 1.5rem;
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  }
  .method-item:last-child {
    border-bottom: none !important;
  }

  .programs-cards {
    flex-direction: column;
    gap: 1.5rem;
  }
  .program-card {
    min-height: 300px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }
  .approved-card {
    flex: 0 0 85%;
  }
  .approved-footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .stat-item {
    flex: 1 0 100%;
    text-align: center;
  }
  .stat-item h3 {
    font-size: 56px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-col {
    text-align: center;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-contact p {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --Title1: 32px;
    --Title1LH: 36px;
    --Title3: 26px;
    --Title3LH: 30px;
  }

  .home-image img {
    display: none;
  }
  .hero-buttons .home-button,
  .cta-final-buttons .home-button {
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-grid-item {
    border-right: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .about-right p {
    font-size: 16px;
    text-align: unset;
    color: var(--Black70);
    line-height: 1.6;
    margin: 0;
  }

  .program-top {
    font-size: 11px;
  }
  .program-middle h3 {
    font-size: 48px;
  }

  .schedule-container {
    padding: 2.5rem 1.5rem;
  }
  .schedule-header h1 {
    font-size: 32px;
  }

  .popup-card {
    padding: 3rem 1.25rem 2rem 1.25rem;
  }

  .popup-content h2 {
    font-size: 24px;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }
  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
}
