/* ========================================
   1. RESET & NORMALIZE
======================================== */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  overflow-x: hidden; /* Previne o scroll horizontal */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ========================================
   2. GLOBAL VARIABLES & UTILITIES
======================================== */
:root {
  /* Colors */
  --color-primary: #00d563;
  --color-primary-dark: #00b050;
  --color-secondary: #1e3a5f;
  --color-dark: #0a1628;
  --color-white: #ffffff;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-600: #6c757d;
  --color-gray-700: #495057;
  --color-gray-800: #343a40;

  /* Spacing */
  --spacing-xs: 0.8rem;
  --spacing-sm: 1.6rem;
  --spacing-md: 2.4rem;
  --spacing-lg: 3.2rem;
  --spacing-xl: 4.8rem;
  --spacing-xxl: 6.4rem;

  /* Border Radius */
  --radius-md: 0.8rem;
  --radius-lg: 1.2rem;
  --radius-full: 999rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-base: 300ms ease;

  /* Container */
  --container-max-width: 128rem;
  --container-padding: 2rem;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

.section-title {
  color: #303255;
  /* font-family: Panton; */
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 62.4px; /* 130% */
  letter-spacing: -2.88px;
  max-width: 80rem;
  margin: 0px auto 25px auto;
}

.section-title-image {
  display: block;
  margin: 0 auto 40px auto;
}

/* ========================================
   3. COMPONENTS
======================================== */

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  border-radius: var(--radius-md);
  font-size: 1.6rem;
  font-weight: 500;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  text-transform: uppercase;
}
.button--login {
  color: #191a3e;
  font-weight: bold;
  background: linear-gradient(104deg, #fafffa -2.51%, #e5e8e5 113.91%);
  height: 4.2rem;
}
.button--signup {
  color: var(--color-white);
  font-weight: bold;
  background: linear-gradient(103deg, #6c6 -3.16%, #529652 106.35%);
  height: 4.2rem;
}
.button--cta-green {
  height: 6rem;
  padding: 0 2rem;
  gap: 1rem;
  background: linear-gradient(103deg, #6c6 -3.16%, #529652 106.35%);
  font-weight: bold;
  color: white;
}
.button--cta-white {
  height: 6rem;
  padding: 0 2rem;
  gap: 1rem;
  border: 1px solid var(--color-dark);
  font-weight: bold;
  color: black;
  background-color: var(--color-white);
}
.button--whatsapp {
  background-color: #25d366;
  color: var(--color-white);
  gap: 0.8rem;
}
.button--whatsapp:hover {
  background-color: #1ebe56;
}

/* ========================================
   4. LAYOUT & SECTIONS
======================================== */

/* Header */
.header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header__nav {
  padding: 1.6rem 0;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  height: 8.7rem;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}
.header__menu-link {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.8rem 1.2rem;
  transition: color var(--transition-base);
}
.header__menu-link:hover {
  color: var(--color-primary);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.header__cart {
  position: relative;
  padding: 0.8rem;
  color: var(--color-white);
}
.header__cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background-color: red;
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: bold;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__mobile-toggle {
  display: none;
}

.btn-close-menu {
  position: absolute;

  top: 40px;
  right: 40px;
  color: white;
  z-index: 100;
  font-size: 20px;
  font-weight: bold;
}

.menu-responsive {
  background-color: #163047;
  /* display: none; */
  position: fixed;
  right: -300px;
  top: 0px;
  width: 100%;
  height: 100vh;
  z-index: 20;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* max-width: 40%; */
  transition: all 200ms;
  border-left: 1px solid white;
}

menu-responsive > nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-responsive > nav > ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-responsive--active {
  right: 0px;
}

@media screen and (max-width: 1200px) {
  .header__menu,
  .header__actions {
    display: none;
  }

  .header__mobile-toggle {
    display: block;
  }
}

.header__mobile-toggle > span {
  width: 30px;
  height: 2px;
  background-color: white;
  content: " ";
}

/* Hero Section */
.hero {
  background-color: #163047;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 69.8rem;
  display: flex;
  align-items: center;
  border-radius: 0 0 5rem 5rem;
  color: var(--color-white);
}
.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("assets/img/pattern-dots.svg");
  opacity: 0.1;
  top: 0;
  left: 0;
}
.hero__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10rem;
  position: relative;
}
.hero__content {
  z-index: 1;
  max-width: 70rem;
  margin-top: 60px;
}
.hero__tag {
  display: inline-block;
  border: 1px solid var(--color-white);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
  background-color: white;
  color: #252641;
}
.hero__title {
  font-size: 4.8rem;
  font-weight: bold;
  color: #6c6;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}
.hero__subtitle {
  font-size: 2rem;
  color: var(--color-gray-100);
  margin-bottom: var(--spacing-lg);
}
.hero__buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}
.hero__image {
  position: absolute;
  bottom: 0;
  right: -3rem;
  width: 63.1rem;
  transform: scaleX(-1);
  z-index: 0;
}

/* --- CSS Responsivo Organizacional --- */

/* Para tablets e telas menores (até 992px) */
@media (max-width: 992px) {
  .hero__content {
    max-width: 55%; /* Reduz a largura do conteúdo para evitar quebra com a imagem */
  }

  .hero__image {
    width: 50rem; /* Diminui um pouco a imagem */
    right: -6rem; /* Ajusta a posição da imagem */
  }
}

/* Para celulares e telas bem pequenas (até 768px) */
@media (max-width: 768px) {
  .hero {
    min-height: auto; /* Altura se ajusta ao conteúdo */
    padding: 8rem 0 4rem 0; /* Adiciona espaçamento interno para o conteúdo não colar nas bordas */
    text-align: center; /* Centraliza todo o texto da seção */
  }

  .hero__wrapper {
    margin-top: 0; /* Remove a margem que empurrava o conteúdo para baixo */
    justify-content: center; /* Centraliza a caixa de conteúdo */
  }

  .hero__content {
    max-width: 100%; /* Permite que o conteúdo ocupe toda a largura disponível */
  }

  .hero__buttons {
    flex-direction: column; /* Coloca os botões um embaixo do outro */
    align-items: center; /* Centraliza os botões empilhados */
    gap: 1.6rem; /* Aumenta o espaçamento vertical entre eles */
  }

  .hero__image {
    position: relative; /* Tira a imagem do posicionamento absoluto */
    display: block; /* Garante que a imagem se comporte como um bloco */
    width: 90%; /* Largura da imagem relativa à tela */
    max-width: 450px; /* Limita o tamanho máximo da imagem */
    margin: 4rem auto 0; /* Adiciona margem acima e centraliza horizontalmente */
    right: auto; /* Reseta o posicionamento */
    bottom: -40px; /* Reseta o posicionamento */
    transform: scaleX(1); /* Opcional: Reseta o espelhamento da imagem */
  }

  .hero__title {
    font-size: 35px;
  }
}

/* Trilhas & Carousel Section */
.trilhas {
  padding: var(--spacing-xxl) 0;
  background-color: #fff;
}
.carousel-container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.carousel-wrapper {
  display: flex;
  transition: transform 0.4s ease-in-out;
  cursor: grab;
}
.carousel-wrapper:active {
  cursor: grabbing;
}
.carousel-slide {
  min-width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: center;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 3rem;
}
.dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #bdd4f1;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}
.dot.active {
  background: #191a3e;
  width: 6.2rem;
  border-radius: 0.6rem;
}
.card {
  display: flex;
  background: white;
  border-radius: 2.4rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 100rem;
  width: 100%;
}
.card-left {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  padding: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38rem;
}
.python-logo {
  width: 20rem;
  height: 20rem;
}
.card-right {
  padding: 6rem 4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-title {
  font-size: 4.2rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 2rem;
}
.card-description {
  font-size: 1.8rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 4rem;
}
.course-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 2.4rem;
  border-radius: 1.2rem;
}
.course-icon-container {
  border-radius: 50%;
  background: #fbfbfb;
  box-shadow: 0 8px 24px rgba(13, 15, 28, 0.12);
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-text {
  font-size: 1.8rem;
  color: #707070;
  font-weight: 700;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.avatars-section {
  display: flex;
  align-items: center;
  gap: 1.6rem;

  border-radius: 45.09px;
  background: #fafafa;
  padding-right: 15px;
}
.avatars {
  display: flex;
}
.avatar {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -1.2rem;
}
.avatar:first-child {
  margin-left: 0;
}
.cta-button-trilha {
  background: #6c6;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
}
.trilhas__cta {
  text-align: center;
  margin-top: 4rem;
}

/* Mini-Cursos Section */
.minicursos {
  padding-bottom: var(--spacing-xxl);
}
.minicursos__subtitle {
  text-align: center;
  color: var(--color-gray-600);
  font-size: 1.8rem;
  max-width: 60%;
  margin: 0 auto 2rem auto;
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}
.tabs__button {
  padding: 0.8rem 2.5rem;
  color: var(--color-gray-600);
  border-radius: 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  border: 1px solid #c4c4c4;
}
.tabs__button--active {
  background-color: #6c6;
  color: var(--color-white);
  border-color: #6c6;
}
.minicursos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30.5rem, 1fr));
  gap: 20px;
  justify-items: center;
  margin-bottom: var(--spacing-xl);
}
.custom-card {
  width: 30.5rem;
  min-height: 42.8rem;
  background: white;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  box-shadow: 0 10px 60px 0 rgba(38, 45, 118, 0.08);
}
.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.custom-card-header {
  width: 100%;
  height: 21rem;
}
.custom-illustration {
  width: 100%;
  height: 100%;
  /*background-image: url("../Images/thumb.png");*/
  background-size: cover;
  background-position: center;
}
.custom-card-body {
  padding: 2rem;
  position: relative;
}
.custom-students-badge {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 5rem;
  padding: 0.8rem 2rem 0.8rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-md);
  font-size: 1.4rem;
}
.custom-avatars {
  display: flex;
}
.custom-avatar {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -0.8rem;
  background-color: #ccc; /* Placeholder */
}
.custom-avatar:first-child {
  margin-left: 0;
}
.custom-card-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #5cb85c;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}
.custom-card-description {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 2rem;
}
.custom-card-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}
.custom-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.custom-info-content {
  display: flex;
  flex-direction: column;
}
.custom-info-label {
  font-size: 1.2rem;
  color: #666;
}
.custom-info-value {
  font-size: 2rem;
  font-weight: 700;
  color: #696984;
}
.custom-btn-subscribe {
  width: 100%;
  padding: 1.6rem;
  background: #5cb85c;
  color: white;
  border-radius: 1.2rem;
  font-size: 1.6rem;
  font-weight: 700;
}
.minicursos__cta {
  text-align: center;
  border: 1.5px solid #191a3e;
  max-width: 592px;
  margin: auto;
  border-radius: 5px;
}
.minicursos__cta a {
  width: 100%;
  font-weight: bold;
}

/* Why Choose Section */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.why-choose {
  max-width: 1400px;
  margin: 0 auto;
}

.title {
  font-size: 56px;
  font-weight: 600;
  color: #1a1d3a;
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.icon-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.feature-text {
  font-size: 24px;
  color: #6b7280;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 968px) {
  .title {
    font-size: 42px;
    margin-bottom: 60px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-text {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .icon-container {
    width: 60px;
    height: 60px;
  }

  .icon-container svg {
    width: 24px;
    height: 24px;
  }

  .feature-text {
    font-size: 18px;
  }
}

/* About Section */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

.sobre-section {
  padding: 20px 100px;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.content-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

.text-content {
  flex: 1;
  max-width: 600px;
}

.heading-wrapper {
  position: relative;
  margin-bottom: 32px;
}

.decorative-element {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
}

.circle {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid #7ed957;
  border-radius: 50%;
  opacity: 0.3;
  top: 10px;
  left: 10px;
}

.lines {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.line {
  display: block;
  height: 4px;
  background-color: #7ed957;
  border-radius: 2px;
  opacity: 0.4;
}

.line-1 {
  width: 50px;
}

.line-2 {
  width: 35px;
}

.line-3 {
  width: 20px;
}

h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1a2b3c;
  margin-bottom: 0;
  line-height: 1.2;
}

.description {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 40px;
}

.highlight {
  color: #7ed957;
  font-weight: 600;
}

.cta-button {
  background-color: transparent;
  color: #7ed957;
  /* border: 2px solid #7ed957; */
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #7ed957;
  color: white;
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.image-wrapper {
  width: 100%;
  max-width: 550px;
  border-radius: 24px;
  overflow: hidden;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .content-wrapper {
    gap: 50px;
  }

  .decorative-element {
    left: -30px;
    width: 100px;
    height: 100px;
  }

  .circle {
    width: 80px;
    height: 80px;
  }

  h2 {
    font-size: 40px;
  }

  .description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .sobre-section {
    padding: 60px 20px;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .text-content {
    max-width: 100%;
  }

  .decorative-element {
    display: none;
  }

  h2 {
    font-size: 36px;
  }

  .image-content {
    justify-content: center;
    width: 100%;
  }

  .image-wrapper {
    max-width: 100%;
  }
}
/* Testimonials Section */
.testimonials {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-gray-100);
}
.testimonials__subtitle {
  text-align: center;
  color: var(--color-gray-600);
  font-size: 1.8rem;
  margin-bottom: var(--spacing-xl);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}
.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card__quote-icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: var(--spacing-md);
  opacity: 0.2;
}
.testimonial-card__text {
  font-size: 1.6rem;
  color: var(--color-gray-700);
  line-height: 1.7;
  font-style: italic;
}

/* Goose Pass Section */
.goose-pass {
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
}
.goose-pass__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  color: var(--color-white);
}
.goose-pass__label {
  font-size: 1.6rem;
  margin-bottom: var(--spacing-xs);
}
.goose-pass__title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
}
.goose-pass__benefits {
  margin-bottom: var(--spacing-lg);
}
.goose-pass__benefit {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  font-size: 1.8rem;
}
.goose-pass__benefit img {
  width: 2rem;
  height: 2rem;
}
.goose-pass__image {
  text-align: right;
}
.goose-pass__img {
  width: 100%;
  max-width: 40rem;
}

/* FAQ Section */
.faq {
  padding: var(--spacing-xxl) 0;
}
.faq__accordion {
  max-width: 80rem;
  margin: 0 auto;
}
.faq__item {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
  overflow: hidden;
}
.faq__question {
  width: 100%;
  padding: var(--spacing-md);
  text-align: left;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;

  border-radius: 8px 8px 0 0;
}

.faq__question--active {
  background: #6c6;
}

.faq__arrow {
  transition: transform var(--transition-base);
}
.faq__item--active .faq__arrow {
  transform: rotate(180deg);
}
.faq__answer {
  padding: 0 var(--spacing-md) var(--spacing-md);
  display: none;

  color: #696984;
  /* font-family: Panton; */
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 36px */
  letter-spacing: 0.4px;

  border-radius: 0 0 8px 8px;
  background: #f9f9f9;
  padding: 24px;
}
.faq__item--active .faq__answer {
  display: block;
}

/* Footer */
.footer {
  /* background-color: var(--colo-dark); */
  color: var(--color-white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  border-radius: 20px 20px 0 0;
  background: #163047;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}
.footer__brand {
  max-width: 30rem;
}
.footer__logo {
  height: 4rem;
  margin-bottom: var(--spacing-md);
}
.footer__description {
  color: var(--color-gray-200);
}
.footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}
.footer__column-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}
.footer__link {
  color: var(--color-gray-200);
  transition: color var(--transition-base);
}
.footer__link:hover {
  color: var(--color-primary);
}
.footer__bottom {
  border-top: 1px solid var(--color-gray-800);
  padding-top: var(--spacing-md);
  text-align: center;
}
.footer__copyright {
  font-size: 1.4rem;
  color: var(--color-gray-600);
}

/* ========================================
   5. RESPONSIVE DESIGN
======================================== */
@media (min-width: 1280px) {
  .minicursos__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.8rem;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__wrapper,
  .testimonials__grid,
  .goose-pass__wrapper {
    grid-template-columns: 1fr;
  }
  .about__image,
  .goose-pass__image {
    display: none;
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .goose-pass__title {
    font-size: 2.8rem;
  }
  .footer__columns {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.goose-testimonials-section {
  background-color: #f8f9fa;
  padding: 80px 20px;
  overflow: hidden;
}

.goose-testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.goose-testimonials-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a2332;
  text-align: center;
  margin: auto;
  margin-bottom: 20px;
  line-height: 1.2;
}

.goose-testimonials-subtitle {
  font-size: 18px;
  color: #6b7280;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 1.5px;
}

.goose-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.goose-carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
  padding: 10px 0;
}

.goose-testimonial-card {
  /* A linha abaixo foi removida para permitir que o card seja flexível */
  /* width: 446px; */

  /* A linha abaixo foi descomentada para definir o tamanho base do card */
  flex: 0 0 calc(33.333% - 20px);

  background: white;
  border: 2px solid #4ade80;
  border-radius: 24px;
  padding: 30px 32px;
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.goose-quote-icon {
  font-size: 5rem;
  color: #4ade80;
  font-weight: 700;
  line-height: 1;
  font-family: Georgia, serif;
  width: 40px;
  /* background-color: red; */
}

.goose-testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  width: fit-content;
  flex-grow: 1;
}

.goose-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.goose-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #d1d5db;
  flex-shrink: 0;

  width: 32px;
  height: 32px;
}

.goose-author-name {
  font-size: 15px;
  color: #696984;
  font-weight: 500;
}

.goose-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.goose-indicator-dot {
  width: 20px;
  height: 6px;
  border-radius: 3px;
  background-color: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.goose-indicator-dot:hover {
  background-color: #94a3b8;
}

.goose-indicator-dot.goose-indicator-active {
  background-color: #1a2332;
  width: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .goose-testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }

  .goose-testimonials-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .goose-testimonials-section {
    padding: 60px 20px;
  }

  .goose-testimonials-title {
    font-size: 2rem;
  }

  .goose-testimonials-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .goose-testimonial-card {
    flex: 0 0 100%;
    min-height: 280px;
  }

  .goose-carousel-track {
    gap: 20px;
  }

  .goose-indicator-dot {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .goose-testimonials-title {
    font-size: 1.75rem;
  }

  .goose-testimonial-card {
    padding: 30px 24px;
  }

  .goose-quote-icon {
    font-size: 4rem;
  }

  .goose-indicator-dot {
    width: 40px;
    height: 5px;
  }
}

.goose-card {
  background-color: #65b569;
  color: #ffffff;
  border-radius: 24px;
  padding: 40px 50px;
  max-width: 950px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  /* overflow: hidden; */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin: auto;
}

.goose-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 450px;
  height: auto;
  background-image: url("background-pattern.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.9;
  z-index: 1;
}

/* --- Lado Esquerdo: Conteúdo de Texto --- */
.card-content {
  flex: 1;
  z-index: 2;
  position: relative;
}

.intro-text {
  font-size: 18px;
  font-weight: bolder;
  margin-bottom: 10px;
  background: linear-gradient(92deg, #163047 -16.45%, #3675ad 95.13%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-heading {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.brand-name {
  color: #1e494e;
  font-weight: bolder;
  display: block;
  background: linear-gradient(92deg, #163047 -16.45%, #3675ad 95.13%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-title {
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #163047;
}

.features-list {
  list-style: none;
  display: grid;
  width: 70%;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 10px;
  font-size: 15px;
  /* background-co  lor: red; */
}

.feature-item {
  display: flex;
  align-items: center;
}

.feature-item > span {
  color: #163047;
  font-weight: bold;
}

.star-icon {
  width: 16px;
  height: 16px;
  fill: #ffffff;
  margin-right: 10px;
  flex-shrink: 0;
}

.cta-button {
  display: inline-block;
  background-color: #ffffff;
  color: #163047;

  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bolder;
  font-size: 14px;
  margin-top: 35px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.card-image-wrapper {
  position: absolute;
  right: -30px;
  bottom: 0;
  width: 350px;
  z-index: 2; /* Fica na frente do padrão de fundo */
}

.person-image {
  width: 100%;
  display: block; /* Remove espaço extra abaixo da imagem */
}

@media (max-width: 900px) {
  .goose-card {
    flex-direction: column; /* Empilha os itens verticalmente */
    text-align: center;
    padding: 40px 30px;
    /* background-color: red; */
    overflow-y: hidden;
  }

  .card-image-wrapper {
    position: relative; /* Volta ao fluxo normal do documento */
    right: auto;
    bottom: -43px;
    width: 80%;
    max-width: 300px;
    margin-top: 30px;
  }

  .features-list {
    grid-template-columns: 1fr; /* Apenas uma coluna em telas pequenas */
    text-align: left; /* Alinha o texto da lista à esquerda */
    max-width: 300px;
    margin: 0 auto; /* Centraliza a lista */
  }

  .brand-name {
    display: inline; /* Para não quebrar a linha no mobile */
  }

  .main-heading {
    font-size: 44px;
  }

  .goose-card::after {
    opacity: 0.3;
  }
}

.footer {
  background-color: #1e3a52;
  color: #ffffff;
  padding: 20px 20px;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-left {
  flex: 0 0 350px;
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background-color: #5cb85c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  position: relative;
}

.logo-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  position: absolute;
}

.logo-icon::after {
  content: "";
  width: 2px;
  height: 15px;
  background-color: #fff;
  position: absolute;
  bottom: 8px;
}

.logo-text h2 {
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 2px;
}

.logo-text p {
  font-size: 16px;
  color: #5cb85c;
  font-weight: 300;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 35px;
  height: 35px;
  /* background-color: #5cb85c; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-text {
  font-size: 15px;
  line-height: 1.6;
  padding-top: 5px;
}

.footer-middle {
  display: flex;
  gap: 100px;
  flex: 0 0 auto;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 15px;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.9;
}

.footer-column ul li a:hover {
  opacity: 1;
}

.footer-right {
  flex: 0 0 450px;
}

.footer-right h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  padding: 5px;
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 15px 25px;
  font-size: 15px;
  color: #333;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form button {
  background-color: #5cb85c;
  color: #ffffff;
  border: none;
  padding: 15px 45px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: #4ca64c;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid #ebffeb;
  text-align: center;
  position: relative;
  z-index: 2;

  color: #ebffeb;
  font-feature-settings: "dlig" on;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.816px; /* 161.349% */
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.9;
}

.decorative-waves {
  position: absolute;
  bottom: 0;
  right: 0;
  /* width: 600px; */
  height: 300px;
  opacity: 0.6;
  pointer-events: none;
  /* background-color: red; */
  width: 100%;

  background-repeat: no-repeat;
  background-position: bottom right;

  background-image: url(../Images/image_background-footer.png);
}

/* --- CSS Responsivo para o Footer --- */

/* Para tablets e telas médias (até 992px) */
@media (max-width: 992px) {
  .footer-content {
    /* Permite que as seções principais quebrem a linha */
    flex-wrap: wrap;
    /* Adiciona um espaçamento entre as linhas quando quebram */
    row-gap: 40px;
    /* Centraliza as seções que quebram a linha */
    justify-content: center;
  }

  .footer-left,
  .footer-right {
    /* Remove a largura fixa para permitir que se ajustem melhor */
    flex: 1 1 400px; /* Podem crescer, encolher, com base de 400px */
    max-width: 450px;
  }

  .footer-middle {
    /* Reduz o espaçamento entre as colunas de links */
    gap: 50px;
    width: 100%;
  }

  .footer-column {
    width: 100%;
  }

  .footer-column h3 {
    text-align: left;
    margin-bottom: 10px;
  }
  .footer-column ul {
    align-items: start;
    text-align: left;
    padding-left: 20px;
  }
}

/* Para celulares e telas pequenas (até 768px) */
@media (max-width: 768px) {
  .footer-content {
    /* Empilha todas as seções verticalmente */
    flex-direction: column;
    align-items: center; /* Centraliza as seções na vertical */
    gap: 35px;
    text-align: center; /* Centraliza o texto dentro de cada seção */
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    /* Garante que ocupem a largura total e não tenham base fixa */
    flex: 1 1 100%;
    width: 100%;
    max-width: 400px; /* Limita a largura máxima em telas um pouco maiores */
  }

  .logo {
    /* Centraliza a logo */
    justify-content: center;
  }

  .contact-item {
    /* Alinha o texto do contato ao centro, se quebrar a linha */
    text-align: left; /* Mantém o texto alinhado à esquerda para legibilidade */
    justify-content: flex-start;
  }

  .footer-middle {
    /* Empilha as colunas de links e centraliza */
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .newsletter-form {
    /* Empilha o campo de email e o botão */
    flex-direction: column;
    gap: 10px;
    background-color: transparent; /* Remove o fundo branco para integrar melhor */
    padding: 0;
  }

  .newsletter-form input {
    border: 1px solid #ccc; /* Adiciona uma borda para visibilidade */
    border-radius: 15px;
  }

  .newsletter-form button {
    width: 100%; /* Botão ocupa a largura total para facilitar o toque */
  }

  .decorative-waves {
    /* Opcional: esconde a imagem de onda para uma interface mais limpa no mobile */
    display: none;
  }
}
