/* ==========================================================================
   Configurações Globais e Variáveis
   ========================================================================== */
:root {
  --primary-color: #b7067e;
  --secondary-color: #710038;
  --accent-color: #d76d77;
  --title-blue-color: #0682b7;

  --background-color: #0c0c0d;
  --background-darker: #000000;
  --card-bg-color: #1f1f2e;
  --card-bg-light: white;
  --card-bg-modern: #1c1c1c;
  --card-bg-modern-hover: #2a2a2a;

  --text-white: #ffffff;
  --text-primary-light: #f0f0f0;
  --text-color: #e0e0e0;
  --text-secondary-light: #a0a0a0;
  --text-light-color: #c0c0c0;

  --font-family-main: "Montserrat", sans-serif;
  --font-family-secondary: "Lato", sans-serif;
  --font-family-accent: "Audiowide", cursive;

  --base-font-size: 16px;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --card-border-subtle: 1px solid rgba(183, 6, 126, 0.2);
  --modern-border-color: #333333;
  --modern-border-hover: #555555;
}

/* ==========================================================================
   Reset Básico e Estilos Globais
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-main);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  /* margin-left: auto;
  margin-right: auto; */
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

section {
  padding: 2.5rem 0; /* REDUZIDO para leitura dinâmica */
  border-bottom: none; /* Removida borda padrão para maior conexão */
}
/* Adicione esta classe no HTML a uma <section> se quiser uma divisória */
.section-with-divider {
  border-bottom: 1px solid rgba(113, 0, 56, 0.08);
}
section:last-of-type {
  border-bottom: none;
}

/* Estilos para containers com background-image */
.hero-container,
.mentors-section,
.cta-1 > .container,
.cta-2 > .container,
.features-section,
.target-audience-section,
.mentor-focus-section,
.environment-section,
.offer-section,
.faq-section {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 1.5rem; /* Ajustado padding para containers com BG */
  padding-bottom: 1.5rem;
}
/* Imagens de fundo específicas */
/* .hero-container {
} */
.mentors-section,
.features-section,
.target-audience-section,
.mentor-focus-section,
.environment-section,
.offer-section,
.faq-section {
  background-image: url("../images/background-section-testimony-1920.png");
}
.cta-1 > .container {
  background-image: url("../images/background-section-testimony-1920.png");
}
.cta-2 > .container {
  background-image: url("../images/background-section-highlights-1920.png");
  padding: 3rem 20px; /* Padding específico mantido e ajustado */
}

/* ==========================================================================
   Tipografia Base
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  margin-bottom: 1rem;
  font-weight: 700;
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.2;
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1.5rem; /* REDUZIDO */
  margin-top: 0;
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}
p {
  margin-bottom: 1.2rem; /* REDUZIDO */
}
.section-subtitle {
  text-align: left;
  max-width: 800px;
  font-size: 1.1rem;
  color: var(--text-light-color);
}
a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}
a:hover {
  color: var(--accent-color);
}

/* ==========================================================================
   Botão CTA
   ========================================================================== */
.cta-button,
.cta-button--alt {
  display: inline-block;
  padding: 0.9rem 2rem; /* Ajustado padding */
  background: linear-gradient(
    180deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--text-white);
  border: 2px solid var(--secondary-color);
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.05rem; /* Ajustado */
  border-radius: var(--border-radius-sm);
  box-shadow: 0 5px 15px rgba(113, 0, 56, 0.3);
  text-align: center;
  min-height: auto;
}
.cta-button:hover,
.cta-button--alt:hover {
  transform: scale(1.02) translateY(-2px);
  filter: brightness(1.2);
}
.cta-button--alt {
  background: linear-gradient(180deg, var(--secondary-color) 0%, #4a0025 100%);
  border-color: #4a0025;
}

/* ==========================================================================
   Header & Logo
   ========================================================================== */

.logo img {
  width: 286px;
}

/* ==========================================================================
   Seção Hero
   ========================================================================== */
.hero-section {
  border-bottom: none;
  background-image: url("../images/header-background-1920.png");
}
.hero-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
.hero-text {
  flex: 1.2;
  max-width: 58%;
  padding-right: 1rem;
}

.hero-image img {
  position: absolute;
  bottom: calc(0px - var(--section-padding-bottom, 40px));
width: 30%;
}

/* ==========================================================================
   Seção Mentores
   ========================================================================== */
.mentors-section {
    padding: 3% 5%;
}

.mentors-section h2 {
  color: var(--title-blue-color);
  text-align: left;
  font-family: var(--font-family-main);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.mentors-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* Gap reduzido */
  margin-top: 3%;
}
.mentor-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background-color: rgba(31, 31, 46, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mentor-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.mentor-card--reversed {
  flex-direction: row-reverse;
}
.mentor-text {
  flex: 1.5;
  background: none;
  font-family: var(--font-family-secondary);
  font-size: 1.5rem; /* Ajustado */
  line-height: 1.6; /* Ajustado */
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  padding: 5% 5%;
}
.mentor-text p {
    margin-top: 5%;
}
.mentor-text h3 {
  font-family: var(--font-family-accent);
  font-weight: 400;
  font-size: clamp(2rem, 2.8vw, 1.7rem);
  line-height: 1.2;
  color: #0682b7;
  margin-bottom: 0.4rem;
}
.mentor-image-placeholder {
  flex: 1;
  min-height: 500px; /* Reduzido */
  border: none;
  color: transparent;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.mentor-jackson {
  background-image: url("../images/JacksonJr.png"),
    linear-gradient(180deg, #87005b 0%, #210016 100%);
}
.mentor-cassio {
  background-image: url("../images/CassioLeal.png"),
    linear-gradient(180deg, #087eb3 0%, #232558 100%);
}
.mentor-maria {
  background-image: url("../images/MariaLaura.png"),
    linear-gradient(180deg, #87005b 0%, #210016 100%);
}
.mentor-flauber {
  background-image: url("../images/FlauberRocha.png"),
    linear-gradient(180deg, #087eb3 0%, #232558 100%);
}
.mentor-gracielle {
  background-image: url("../images/GracielleTavares.png"),
    linear-gradient(180deg, #87005b 0%, #210016 100%);
}

.mentor-card:not(.mentor-card--reversed) .mentor-image-placeholder {
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}
.mentor-card--reversed .mentor-image-placeholder {
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
}

/* ==========================================================================
   Seções CTA
   ========================================================================== */
.cta-section {
  text-align: center;
  margin-bottom: 2%;
}
.cta-1 {
  padding: 2.5rem 0;
}
.cta-1 p {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}
.cta-2 {
  padding: 0;
  color: white;
}
.cta-2 > .container {
  padding: 3rem 20px;
}
.cta-2 h2 {
  color: var(--text-white);
  margin-top: 0;
  margin-bottom: 1rem;
}
.cta-2 p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-2 .small-text {
  font-size: 0.8rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Seção Features
   ========================================================================== */
.features-section {
    padding: 3% 5%;
}

.features-section h2 {
  margin-bottom: 2.5rem; /* Reduzido */
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 2rem;
}
.feature-card {
  background-color: var(--card-bg-modern);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--modern-border-color);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease,
    background-color 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--modern-border-hover);
  background-color: var(--card-bg-modern-hover);
}
.feature-icon-img {
  width: 45px;
  height: 45px;
  margin-bottom: 1.2rem;
  object-fit: contain;
}
.feature-card h3 {
  color: var(--title-blue-color);
  font-family: var(--font-family-main);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

/* ==========================================================================
   Seção Target Audience & Environment
   ========================================================================== */

.environment-section {
    padding: 3% 5%;
}

.target-audience-section h2,
.environment-section h2 {
  margin-bottom: 2rem; /* Reduzido */
}
.audience-list,
.environment-list {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Reduzido */
  max-width: 800px;
  margin: 1.5rem auto 2rem auto; /* Reduzido */
}
.audience-item,
.environment-item {
  background-color: var(--card-bg-modern);
  padding: 1.2rem 1.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--modern-border-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease,
    background-color 0.3s ease;
}
.audience-item:hover,
.environment-item:hover {
  background-color: var(--card-bg-modern-hover);
  border-color: var(--modern-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.list-item-icon-img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  flex-shrink: 0;
}
.list-item-text-content {
  display: flex;
  flex-direction: column;
}
.environment-item .list-item-text-content h3 {
  font-family: var(--font-family-main);
  font-size: 1.1rem;
  color: #007bff;
  margin: 0 0 0.2rem 0;
}
.environment-item .list-item-text-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.audience-item {
  color: var(--text-light-color);
  font-size: 0.95rem;
}
.audience-item span:not(.icon) {
  flex: 1;
}
.section-cta-container {
  text-align: center;
  margin-top: 2rem; /* Reduzido */
}
.target-audience-section .cta-button,
.mentor-focus-section .cta-button,
.environment-section .cta-button {
  min-width: auto;
  display: inline-block;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Seção Mentor Focus
   ========================================================================== */
.mentor-focus-section {
    padding: 3% 5%;
}

.mentor-focus-section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--primary-color);
  text-align: left;
  margin-bottom: 0.25rem; /* Mais próximo do subtítulo */
}
.mentor-focus-subtitle {
  font-size: 1.1rem;
  color: var(--text-light-color);
  margin-bottom: 1.2rem; /* Reduzido */
  text-align: left;
}
.mentor-focus-container {
  align-items: center;
  gap: 2.5rem;
}
.mentor-focus-text {
  flex: 1.5;
  max-width: 58%;
}
.mentor-focus-text h3 {
  margin-top: 1.5rem;
  color: var(--primary-color);
  font-family: var(--font-family-main);
  font-size: 1.4rem;
}
.mentor-focus-image-placeholder {
  flex: 1;
  max-width: 42%;
  min-height: 420px; /* Reduzido */
  background-image: url("../images/Group 18.png");
  background-color: #111;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-radius: var(--border-radius-md);
}
.mentor-focus-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
} /* Reduzido */
.mentor-focus-text li {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23B7067E' class='bi bi-check-lg' viewBox='0 0 16 16'%3E%3Cpath d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022z'/%3E%3C/svg%3E")
    no-repeat left 5px;
  padding-left: 25px;
  margin-bottom: 0.7rem; /* Reduzido */
  font-size: 1rem;
}

/* ==========================================================================
   Página/Seção de Oferta (Ajustado para corresponder à imagem)
   ========================================================================== */
.offer-section {
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

.offer-container {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.offer-main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    padding: 3rem;
    font-size: 3rem;
}

.offer-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-white);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 2.5rem auto;
    text-align: left;
    display: inline-block;
}

.benefits-list li {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: var(--text-white);
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
}

.benefits-list .checkmark {
    color: #32CD32;
    font-size: 1.4em;
    margin-right: 10px;
    line-height: 1;
    font-weight: bold;
}

.pricing-block {
    background-color: rgba(12, 12, 13, 0.85);
    border-radius: var(--border-radius-md, 12px);
    padding: 2rem 1.5rem;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
    box-shadow: 0 0 10px 2px rgba(var(--primary-rgb, 183, 6, 126), 0.2),
                0 0 20px 4px rgba(var(--primary-rgb, 183, 6, 126), 0.15),
                0 0 35px 8px rgba(var(--primary-rgb, 183, 6, 126), 0.1);
    background-image: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 30%,
        rgba(0, 0, 0, 0.0) 70%
    );
}

.pricing-block-title {
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.price-installment {
    margin-bottom: 0.3rem;
    color: var(--text-white);
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

.price-installment .price-times {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--text-light-color);
    align-self: center;
    margin-right: 5px;
}

.price-installment .price-currency {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: bold;
    color: var(--text-white);
}

.price-installment .price-value {
    font-size: clamp(3.5rem, 8vw, 4.8rem);
    font-weight: bold;
    line-height: 1;
    color: var(--text-white);
    letter-spacing: -2px;
}

.price-installment .price-cents {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: bold;
    color: var(--text-white);
    align-self: flex-start;
    margin-top: 0.6rem;
    line-height: 1;
}

.price-full {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    color: var(--text-light-color);
    margin-bottom: 1.5rem;
}

.price-full .discount-text {
    font-style: normal;
    font-size: clamp(0.75rem, 1.5vw, 0.8rem);
}

.additional-info {
    list-style: none;
    padding: 0;
    margin: 0 auto 1.5rem auto;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: var(--text-light-color);
    text-align: left;
    max-width: fit-content;
}

.additional-info li {
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 18px;
}

.additional-info li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--text-light-color);
    font-weight: bold;
}

.offer-cta-button {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    background: var(--primary-color);
    border: none;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb, 183, 6, 126), 0.4);
}

.offer-cta-button:hover {
    background: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb, 183, 6, 126), 0.5);
    transform: translateY(-2px);
}

/* Responsividade específica para esta seção, se necessário */
@media (max-width: 480px) {
    .pricing-block {
        padding: 1.5rem 1rem;
    }
    .price-installment .price-value {
        font-size: 3rem;
        letter-spacing: -1px;
    }
    .price-installment .price-cents {
        font-size: 1.5rem;
        margin-top: 0.4rem;
    }
    .price-installment .price-currency {
        font-size: 1.5rem;
    }
    .additional-info {
        font-size: 0.75rem;
    }
    .additional-info li {
        padding-left: 15px;
    }
    .offer-cta-button {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Seção FAQ
   ========================================================================== */
.faq-section h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem; /* Reduzido */
}
.faq-container {
  max-width: 800px;
  margin: 1.5rem auto 0 auto; /* Reduzido */
  background: var(--card-bg-color);
  border-radius: 17px;
  padding: 2px;
  position: relative;
  box-shadow: 0 0 20px rgba(183, 6, 126, 0.2), 0 0 20px rgba(0, 123, 255, 0.15);
  border: none;
  z-index: 1;
}
.faq-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(119.17deg, #ff0080 0%, #007bff 100%);
  border-radius: inherit;
  z-index: -1;
}
.faq-content-wrapper {
  background: var(--card-bg-color);
  border-radius: 15px;
  padding: 15px; /* Reduzido */
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  padding: 1rem 1.2rem; /* Ajustado */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: var(--text-white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.faq-answer p {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light-color);
}
.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 1rem 1.2rem; /* Ajustado */
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-nav-text {
  max-width: 200px;
}
.footer {
  border-top: 1px solid #b7067e;
  padding-top: 40px;
  margin-top: 40px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-container .footer-nav {
  width: 280px;
}

.footer-copywright {
  background: #333333;
  padding: 24px;
  font-size: 16px;
  text-align: center;
}

.footer-social-container a {
  width: 60px;
  height: 60px;
}
.footer a {
  color: white;
  text-decoration: none;
}

.footer-nav-title {
  font-size: 28px;
  padding-bottom: 24px;
  color: #b7067e;
}

/* ==========================================================================
   Responsividade
   ========================================================================== */
@media (max-width: 992px) {
  /* Telas médias / Tablets */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  h1 {
    font-size: clamp(2rem, 4.5vw, 2.5rem);
  }
  h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }
  h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  }
  section {
    padding: 2rem 0;
  } /* Reduzido */
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  .mentor-focus-container {
    flex-direction: column;
    text-align: center;
  }
  .mentor-focus-text,
  .mentor-focus-image-placeholder {
    max-width: 100%;
  }
  .mentor-focus-text h2,
  .mentor-focus-text h3 {
    text-align: center;
  }
  .mentor-focus-image-placeholder {
    min-height: 350px; /* Reduzido */
  }
  .faq-container {
    margin-left: 15px;
    margin-right: 15px;
    max-width: none;
  }

  .hero-image img {
    display: none;
  }

  .hero-section {
    padding: 3rem 0;
    min-height: auto;
  } /* Reduzido */
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    background-image: url("../images/header-background-mobile.png");
  }
}

@media (max-width: 768px) {
  /* Telas pequenas / Mobile Laptops */
  h1 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }
  h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  h3 {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
  }
  section {
    padding: 2rem 0;
  } /* Reduzido */

  .hero-text {
    max-width: 100%;
    padding-right: 0;
    order: 2;
    margin-bottom: 1rem;
  }
  .mentor-card,
  .mentor-card--reversed {
    flex-direction: column;
  }
  .mentor-image-placeholder {
    width: 100%;
    min-height: 220px; /* Reduzido */
  }
  .mentor-card:not(.mentor-card--reversed) .mentor-image-placeholder,
  .mentor-card--reversed .mentor-image-placeholder {
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  }
  .mentor-text {
    text-align: center;
    padding: 1.2rem;
    font-size: 1rem;
  } /* Reduzido */
  .mentor-text h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
  } /* Reduzido */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem; /* Reduzido */
  }
  .footer-social-container img {
    width: 30px;
    height: 30px;
  }
  .footer-container {
    display: block;
  }
  .footer-container .footer-nav {
    padding-bottom: 24px;
  }
  .footer-container .footer-nav:last-child {
    padding-bottom: 0;
  }
  .audience-list,
  .environment-list {
    max-width: 100%;
    padding: 0 1rem;
    gap: 0.8rem; /* Reduzido */
  }
  .audience-item,
  .environment-item {
    padding: 1rem 1.2rem;
    gap: 12px;
  }
  .list-item-icon-img {
    width: 28px;
    height: 28px;
  }
  .environment-item .list-item-text-content h3 {
    font-size: 1rem;
  }
  .environment-item .list-item-text-content p {
    font-size: 0.85rem;
  }
  .audience-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  /* Telas muito pequenas / Mobile */
  h1 {
    font-size: clamp(1.5rem, 5.5vw, 1.8rem);
  } /* Reduzido */
  h2 {
    font-size: clamp(1.3rem, 4.5vw, 1.6rem);
  } /* Reduzido */
  h3 {
    font-size: clamp(0.9rem, 2.8vw, 1.1rem);
  } /* Reduzido */
  .cta-button,
  .cta-button--alt {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
  } /* Reduzido */
  .mentor-text {
    font-size: 0.85rem;
    padding: 1rem;
  } /* Reduzido */
  .mentor-text h3 {
    font-size: clamp(1.1rem, 3.2vw, 1.3rem);
  } /* Reduzido */
  section {
    padding: 1.8rem 0;
  } /* Reduzido */
  .feature-card {
    padding: 1.2rem;
  }
  .feature-icon-img {
    width: 30px;
    height: 30px;
    margin-bottom: 0.8rem;
  }
  .feature-card h3 {
    font-size: 1rem;
  }
  .feature-card p {
    font-size: 0.8rem;
  }
  .section-cta-container {
    margin-top: 1.2rem;
  }
  .mentor-focus-image-placeholder {
    min-height: 250px;
  }
  .list-item-icon-img {
    width: 24px;
    height: 24px;
  }
  .environment-item .list-item-text-content h3 {
    font-size: 0.85rem;
  }
  .environment-item .list-item-text-content p {
    font-size: 0.75rem;
  }
  .audience-item {
    font-size: 0.8rem;
  }
}
