@font-face {
  font-family: "Gambarino";
  src: url("./assets/fonts/Gambarino-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* VARIÁVEIS PADRÃO */
:root {
  /* Fontes */
  --Title1: 64px;
  --Title1LH: 68px;
  --Title2: 72px;
  --Title2LH: 72px;
  --Title3: 52px;
  --Title3LH: 56px;
  --Title4: 40px;
  --Title4LH: 96px;
  --SubTitle: 18px;
  --Text1: 14px;
  --Text2: 12px;

  /* Cores */
  --White: #faf7f2;
  --Beige: #f2efe9;
  --White70: rgba(250, 247, 242, 0.7);
  --White5: rgba(250, 247, 242, 0.05);
  --Black: #101010;
  --Black70: rgba(16, 16, 16, 0.7);
  --Black5: rgba(16, 16, 16, 0.05);
  --DefaultBlue: #13213c;
  --DarkBlue: #0b1426;
  --Red: #c8202f;
  --Green: #20b440;

  --SectionPadding: 5rem 9vw;
}

/* FONTES GLOBAIS E RESETS */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: var(--White);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

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);
}

/* HEADER */
body {
  padding-top: 80px;
}

.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 9vw;
}

.header-logo img {
  height: 40px;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1001;
}

/* Navegação Desktop */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  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);
}

/* Botão Mobile Invisível no Desktop */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--DefaultBlue);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

/* RESPONSIVIDADE DO HEADER (MOBILE) */
@media (max-width: 1024px) {
  .header-nav {
    gap: 1.5rem;
  }
  .header-links {
    gap: 1.2rem;
  }
}

@media (max-width: 962px) {
  body {
    padding-top: 70px;
  }

  .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;
  }

  .header-button-container {
    width: 100%;
    padding: 0 2rem;
  }

  .header-button {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    font-size: 16px;
  }
}

/* HOME */
.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: all 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;
}

.home-image img {
  height: 720px;
  object-fit: contain;
  margin-left: 5rem;
}

/* BANNER */
.banner {
  display: flex;
  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 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);
}

/* TEXTOS DE APOIO GERAIS */
.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;
}

/* PARENTS SECTION */
.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-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.card-list svg {
  color: rgba(255, 255, 255, 0.6);
  min-width: 16px;
}

/* METHOD SECTION */
.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;
}

/* TESTIMONIALS SECTION */
.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 {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--DefaultBlue);
  margin: 0 0 4px 0;
}

.author-info p {
  font-size: 11px;
  color: var(--Black70);
  margin: 0;
}

/* ABOUT SECTION */
.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-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: var(--DefaultBlue);
  font-weight: 600;
  margin: 0;
}

.about-right {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 5.5rem;
}

.about-right p {
  font-size: 13.5px;
  color: var(--Black70);
  line-height: 1.6;
}

/* 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-family: "Montserrat", sans-serif;
  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);
}

.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);
}

/* RESPONSIVIDADE */

@media (max-width: 1024px) {
  .program-card {
    padding: 2.5rem 2rem;
    min-height: 340px;
  }
  .program-middle h3 {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .programs-cards {
    flex-direction: column;
    gap: 1.5rem;
  }
  .program-card {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .program-top {
    font-size: 11px;
  }
  .program-middle h3 {
    font-size: 48px;
  }
  .program-status {
    font-size: 12px;
  }
}

/* APPROVED SECTION */
.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-family: "Montserrat", sans-serif;
  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);
}

/* RESULTS SECTION */
.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);
}

/* FAQ SECTION */
.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-family: "Montserrat", sans-serif;
  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 SECTION */
.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;
}

/* MAIN FOOTER */
.main-footer {
  background-color: var(--DarkBlue);
  color: var(--White);
  padding: var(--SectionPadding);
  padding-bottom: 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-about {
  flex: 1.5;
  max-width: 320px;
}

.footer-logo {
  height: 40px;
  width: auto;
  align-self: flex-start;
  object-fit: contain;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.65);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-socials a {
  color: rgba(250, 247, 242, 0.5);
  transition: all 0.3s ease-in-out;
}

.footer-socials a:hover {
  color: var(--Red);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: "Gambarino", serif;
  font-size: 18px;
  color: var(--White);
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.footer-col ul {
  list-style: none;
  padding: 0; 
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.65);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.footer-col ul li a:hover {
  color: var(--Red);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact svg {
  min-width: 14px;
  color: rgba(250, 247, 242, 0.4);
}

.footer-cta-link {
  font-size: 13px;
  color: var(--Red);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  margin-top: 0.5rem;
}

.footer-cta-link:hover {
  color: var(--White);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  padding: 2rem 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.4);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--White);
}

.footer-legal-links .bullet {
  color: rgba(250, 247, 242, 0.15);
  font-size: 10px;
}

/* MEDIA QUERIES - RESPONSIVIDADE COMPLETA */

/* 1. NOTEBOOKS E MONITORES PEQUENOS (Abaixo de 1200px) */
@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;
  }
}

/* 2. TABLETS EM MODO PAISAGEM / LAPTOPS COMPACTOS (Abaixo de 1024px) */
@media (max-width: 1024px) {
  :root {
    --Title1: 46px;
    --Title1LH: 50px;
    --Title3: 38px;
    --Title3LH: 42px;
  }

  .parents-section {
    flex-direction: column;
    gap: 4rem;
  }

  .parents-content {
    width: 100%;
  }

  .parents-card {
    max-width: 100%; 
  }

  .about-section {
    flex-direction: column;
    gap: 3rem;
  }

  .about-left,
  .about-right {
    max-width: 100%;
    width: 100%;
  }

  .about-right {
    padding-top: 0; 
  }

  .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;
  }

  .footer-container {
    flex-wrap: wrap;
    gap: 3rem 2rem;
  }

  .footer-col {
    flex: 1 0 calc(50% - 1rem); 
  }

  .footer-about {
    flex: 1 0 100%;
    max-width: 100%;
  }
}

/* 3. TABLETS EM MODO RETRATO / CELULARES GRANDES (Abaixo de 768px) */
@media (max-width: 768px) {
  :root {
    --Title1: 38px;
    --Title1LH: 42px;
    --Title3: 32px;
    --Title3LH: 36px;
    --SectionPadding: 4rem 1.5rem;
  }

  .header {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 1.5rem;
  }

  .header-links {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .home {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding-top: 7rem;
    padding-inline-start: 0;
  }

  .home-badge {
    justify-content: center;
  }

  .hero-buttons,
  .quality-container {
    justify-content: center;
  }

  .home-image {
    justify-content: center;
    width: 100%;
  }

  .home-image img {
    max-height: 400px;
  }

  .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;
  }

  .method-desc {
    min-height: auto;
  }

  .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;
  }

  .cta-final-buttons .home-button {
    width: 100%; 
  }
}

/* 4. CELULARES PEQUENOS (Abaixo de 480px) */
@media (max-width: 480px) {
  :root {
    --Title1: 32px;
    --Title1LH: 36px;
    --Title3: 26px;
    --Title3LH: 30px;
  }

  .header-links {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }

  .header-button-container,
  .header-button {
    width: 100%;
    text-align: center;
  }

  .home-image img {
    display: none;
  }

  .hero-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;
  }

  .footer-container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer-col {
    width: 100%;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
}
