/* ==========================================
   RESET
========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f8fa;
  color: #06283d;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus-visible {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.9rem 1.1rem;
  background: #073c4a;
  color: #ffffff;
  z-index: 999;
  clip: auto;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #f5a400;
  outline-offset: 3px;
}

/* ==========================================
   HERO
========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    #073c4a 0%,
    #075161 54%,
    #f7fbfc 54%,
    #ffffff 100%
  );
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: #03b6c6;
  border-radius: 50%;
  opacity: 0.18;
}

.hero::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  background: #f5a400;
  border-radius: 50%;
  opacity: 0.16;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 50px;
}

.hero-text {
  max-width: 620px;
  color: #ffffff;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: #f5a400;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero h1 span {
  display: block;
  color: #03b6c6;
  font-style: italic;
  text-transform: none;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.hero p {
  max-width: 560px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #dff4f7;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons a {
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 12px;
  font-weight: 800;
  transition: 0.3s ease;
}

.btn-primary {
  background: #f5a400;
  color: #06283d;
}

.btn-primary:hover {
  background: #ffb820;
  transform: translateY(-3px);
}

.btn-secondary {
  border: 2px solid #03b6c6;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #03b6c6;
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin-right: 3rem;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  height: 520px;
  margin-left: 200px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.hero-card {
  position: absolute;
  top: 88%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 330px;
  background: #ffffff;
  padding: 24px 30px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
  border-left: 8px solid #f5a400;
}

.hero-card strong {
  display: block;
  color: #03b6c6;
  letter-spacing: 8px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.hero-card h2 {
  color: #06495a;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1;
}

/* ==========================================
   SOBRE PATRYCKSON
========================================== */
.about {
  position: relative;
  padding: 110px 0;
  background: #ffffff;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  right: -140px;
  width: 38%;
  height: 100%;
  background: linear-gradient(180deg, #073c4a, #075161);
  border-bottom-left-radius: 160px;
  opacity: 0.08;
}

.about-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.about-image {
  background: #03b6c6;
  width: 400px;
  height: 580px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
}

.about-image img {
  width: 100%;
  max-width: 330px;
  height: 540px;
  object-fit: cover;
  object-position: center top;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: #f5a400;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.05;
  color: #073c4a;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.about-content h2 strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  color: #03b6c6;
  text-transform: none;
  font-style: italic;
}

.about-content p {
  font-size: 1.12rem;
  line-height: 1.85;
  color: #3f5963;
  margin-bottom: 18px;
  max-width: 720px;
}

.about-cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.about-card {
  flex: 1;
  min-width: 210px;
  background: #f5f8fa;
  padding: 30px 26px;
  border-radius: 24px;
  border-left: 6px solid #03b6c6;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
  transition: 0.35s ease;
}

.about-card:hover {
  transform: translateY(-10px);
}

.about-card h3 {
  color: #03b6c6;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 12px;
}

.about-card p {
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
  color: #3f5963;
}

/* ==========================================
   PROBLEMAS DO CREA-MA
========================================== */
.problems {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(135deg, #073c4a 0%, #075161 100%);
  overflow: hidden;
}

.problems::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -140px;
  width: 340px;
  height: 340px;
  background: #03b6c6;
  border-radius: 50%;
  opacity: 0.12;
}

.problems::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  background: #f5a400;
  border-radius: 50%;
  opacity: 0.13;
}

.problems-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.problems-header {
  max-width: 850px;
  margin-bottom: 60px;
}

.problems-header h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  line-height: 1.05;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.problems-header p {
  max-width: 720px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #dff4f7;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  padding: 34px;
  min-height: 260px;
  backdrop-filter: blur(10px);
  transition: 0.35s ease;
}

.problem-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
}

.problem-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  border-radius: 18px;
  background: #f5a400;
  color: #073c4a;
  font-weight: 900;
  font-size: 1.1rem;
}

.problem-card h3 {
  color: #ffffff;
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.problem-card p {
  color: #dff4f7;
  line-height: 1.7;
  font-size: 1rem;
}

/* ==========================================
   PILARES
========================================== */

.pillars {
  padding: 120px 0;
  background: #f8fbfc;
}

.pillars-header {
  width: 90%;
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.pillars-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #073c4a;
  margin-bottom: 20px;
}

.pillars-header h2 span {
  color: #03b6c6;
}

.pillars-header p {
  font-size: 1.1rem;
  color: #4d6771;
  line-height: 1.8;
}

.pillars-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pillar-card {
  background: #fff;
  padding: 35px;
  border-radius: 28px;
  width: 280px;
  border-top: 6px solid #03b6c6;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.pillar-card:hover {
  transform: translateY(-12px);
}

.pillar-number {
  font-size: 3rem;
  font-weight: 900;
  color: #03b6c6;
  margin-bottom: 20px;
}

.pillar-card h3 {
  color: #073c4a;
  font-size: 1.4rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.pillar-card p {
  color: #5d7078;
  line-height: 1.8;
}

/* ==========================================
   PRINCIPAIS PROPOSTAS
========================================== */
.proposals {
  position: relative;
  padding: 110px 0;
  background: #f5f8fa;
  overflow: hidden;
}

.proposals-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.proposals-header {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
}

.proposals-header h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  line-height: 1.05;
  color: #073c4a;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.proposals-header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #3f5963;
}

.proposals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.proposal-card {
  position: relative;
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 28px;
  min-height: 300px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
  border-top: 6px solid #03b6c6;
  transition: 0.35s ease;
}

.proposal-card:hover {
  transform: translateY(-10px);
}

.proposal-card.featured {
  background: linear-gradient(135deg, #073c4a, #075161);
  border-top-color: #f5a400;
}

.proposal-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border-radius: 20px;
  background: #edf8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
}

.proposal-card.featured .proposal-icon {
  background: rgba(255, 255, 255, 0.12);
}

.proposal-card h3 {
  font-size: 1.55rem;
  color: #073c4a;
  margin-bottom: 16px;
}

.proposal-card p {
  color: #3f5963;
  line-height: 1.75;
  font-size: 1rem;
}

.proposal-card.featured h3,
.proposal-card.featured p {
  color: #ffffff;
}

/* ==========================================
   PLANO COMPLETO POR EIXOS
========================================== */
.plan {
  position: relative;
  padding: 110px 0;
  background: #ffffff;
  overflow: hidden;
}

.plan::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: #03b6c6;
  border-radius: 50%;
  opacity: 0.08;
}

.plan-container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.plan-header {
  max-width: 850px;
  margin-bottom: 60px;
}

.plan-header h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  line-height: 1.05;
  color: #073c4a;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.plan-header p {
  max-width: 760px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #3f5963;
}

.plan-list {
  display: grid;
  gap: 22px;
}

.plan-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  align-items: flex-start;
  background: #f5f8fa;
  padding: 34px;
  border-radius: 28px;
  border-left: 7px solid #03b6c6;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
}

.plan-item:hover {
  transform: translateX(10px);
  border-left-color: #f5a400;
}

.plan-item span {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: linear-gradient(135deg, #073c4a, #075161);
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-item h3 {
  color: #073c4a;
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.plan-item p {
  color: #3f5963;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ==========================================
   PROGRAMAS DA CAMPANHA
========================================== */
.programs {
  position: relative;
  padding: 110px 0;
  background: #f5f8fa;
  overflow: hidden;
}

.programs-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.programs-header {
  max-width: 850px;
  margin-bottom: 60px;
}

.programs-header h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  line-height: 1.05;
  color: #073c4a;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.programs-header p {
  max-width: 760px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #3f5963;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.program-card {
  position: relative;
  min-height: 320px;
  background: #ffffff;
  padding: 34px;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
  border-bottom: 7px solid #03b6c6;
  transition: 0.35s ease;
}

.program-card:hover {
  transform: translateY(-10px);
  border-bottom-color: #f5a400;
}

.program-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, #073c4a, #075161);
  color: #ffffff;
  font-weight: 900;
}

.program-card h3 {
  color: #073c4a;
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.program-card p {
  color: #3f5963;
  line-height: 1.7;
}

.program-card.wide {
  grid-column: span 2;
  background: linear-gradient(135deg, #073c4a, #075161);
}

.program-card.wide span {
  background: #f5a400;
  color: #073c4a;
}

.program-card.wide h3,
.program-card.wide p {
  color: #ffffff;
}
/* ==========================================
   TRAJETÓRIA PROFISSIONAL
========================================== */

.journey {
  padding: 120px 0;
  background: #ffffff;
}

.journey-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.journey-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 80px;
}

.journey-header h2 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.05;
  color: #073c4a;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.journey-header p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4d626b;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: #03b6c6;
  transform: translateX(-50%);
}

.timeline-item {
  width: 50%;
  position: relative;
  margin-bottom: 60px;
}

.timeline-item:nth-child(odd) {
  padding-right: 60px;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-left: 60px;
}

.timeline-year {
  position: absolute;
  top: 20px;
  right: -35px;

  width: 70px;
  height: 70px;

  border-radius: 50%;

  background: #f5a400;
  color: #073c4a;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 900;
  font-size: 1rem;

  z-index: 5;
}

.timeline-item:nth-child(even) .timeline-year {
  left: -35px;
}

.timeline-content {
  background: #f5f8fa;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
  color: #073c4a;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.timeline-content p {
  color: #4d626b;
  line-height: 1.7;
}

/* ==========================================
   POR QUE ESSE PROJETO IMPORTA
========================================== */
.why {
  position: relative;
  padding: 120px 0;
  background: #ffffff;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: #03b6c6;
  border-radius: 50%;
  opacity: 0.1;
}

.why-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.why-header {
  max-width: 900px;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  line-height: 1.05;
  color: #073c4a;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.why-header p {
  max-width: 720px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #3f5963;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: #f5f8fa;
  padding: 34px;
  min-height: 280px;
  border-radius: 30px;
  border-bottom: 7px solid #03b6c6;
  transition: 0.35s ease;
}

.why-card:hover {
  transform: translateY(-10px);
}

.why-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  border-radius: 18px;
  background: #073c4a;
  color: #ffffff;
  font-weight: 900;
}

.why-card h3 {
  color: #073c4a;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.why-card p {
  color: #3f5963;
  line-height: 1.7;
}

.why-card.highlighted {
  background: linear-gradient(135deg, #073c4a, #075161);
  border-bottom-color: #f5a400;
}

.why-card.highlighted span {
  background: #f5a400;
  color: #073c4a;
}

.why-card.highlighted h3,
.why-card.highlighted p {
  color: #ffffff;
}

/* ==========================================
   FAQ
========================================== */

.faq {
  padding: 120px 0;
  background: #f7fafb;
}

.faq-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: #073c4a;
  margin-bottom: 20px;
}

.faq-header p {
  color: #556973;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.faq-item summary {
  padding: 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: #073c4a;
  list-style: none;
}

.faq-item p {
  padding: 0 25px 25px;
  color: #4c606a;
  line-height: 1.8;
}

/* ==========================================
   CTA FINAL
========================================== */
.cta-final {
  position: relative;
  background: linear-gradient(135deg, #063746, #075161);
  padding: 120px 0;
  overflow: hidden;
}

.cta-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 70px;
  align-items: center;
}

.cta-content h2 {
  color: #ffffff;
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.cta-content p {
  color: #dff4f7;
  font-size: 1.12rem;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 650px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-buttons a {
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 900;
  transition: 0.3s ease;
}

.cta-buttons .btn-primary {
  background: #f5a400;
  color: #073c4a;
}

.cta-buttons .btn-secondary {
  border: 2px solid #03b6c6;
  color: #ffffff;
}

.cta-buttons .btn-primary:hover,
.cta-buttons .btn-secondary:hover {
  transform: translateY(-4px);
}

.cta-buttons .btn-secondary:hover {
  background: #03b6c6;
}

.cta-image img {
  width: 100%;
  max-width: 480px;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVO */

@media (max-width: 1600px) {
  .hero-content {
    gap: 40px;
  }

  .about-container,
  .problems-grid,
  .proposals-grid,
  .why-grid,
  .programs-grid {
    gap: 24px;
  }
}

@media (max-width: 1400px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image {
    max-width: 360px;
    margin-right: 1.5rem;
  }

  .hero-image img {
    max-width: 420px;
    height: auto;
    margin-left: 120px;
  }

  .problems-grid,
  .proposals-grid,
  .why-grid,
  .programs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .hero {
    padding: 60px 0;
  }

  .hero-content {
    width: 95%;
    gap: 30px;
  }

  .hero-image {
    max-width: 320px;
  }

  .hero-image img {
    margin-left: 80px;
    height: auto;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-image {
    width: 100%;
    height: auto;
    min-height: 500px;
  }

  .about-image img {
    height: auto;
  }

  .plan-item {
    grid-template-columns: 80px 1fr;
  }

  .cta-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 60px 0 40px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    margin: 0 auto;
    max-width: 100%;
  }

  .hero-image img {
    margin-left: 0;
    max-height: 500px;
  }

  /* Mantém o card posicionado sobre a imagem (não mover) */
  .hero-card {
    position: absolute;
    top: 88%;
    right: 30px;
    transform: translateY(-50%);
    margin: 0;
  }

  .about-container,
  .programs-grid,
  .why-grid,
  .plan-list {
    grid-template-columns: 1fr;
  }

  .problems-grid,
  .proposals-grid {
    grid-template-columns: 1fr;
  }

  .cta-container {
    grid-template-columns: 1fr;
  }
}

/* Centralizar texto do hero entre 1003px e 661px */
@media (max-width: 1003px) and (min-width: 661px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
  }

  .hero-text {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
    padding: 0 12px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    line-height: 1;
  }

  .hero p {
    font-size: 1.02rem;
    margin: 0 auto 24px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin: 0 auto;
    max-width: 300px;
    justify-content: center;
  }

  .hero-image img {
    margin-left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* manter o card sobre a imagem */
  .hero-card {
    position: absolute;
    top: 88%;
    right: 30px;
    transform: translateY(-50%);
    margin: 0;
  }
}

@media (max-width: 900px) {
  .hero-text,
  .about-content,
  .problems-container,
  .pillars-header,
  .proposals-header,
  .why-header,
  .faq-header,
  .cta-content {
    text-align: center;
  }

  .hero-tag,
  .section-tag {
    font-size: 0.78rem;
  }

  .hero p,
  .about-content p,
  .problems-header p,
  .proposals-header p,
  .why-header p,
  .faq-header p,
  .cta-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-buttons a,
  .cta-buttons a {
    width: 100%;
    text-align: center;
  }

  .hero-image,
  .cta-image img {
    max-width: 100%;
    height: auto;
  }

  .about-image,
  .about-image img {
    min-height: auto;
  }

  .about-image {
    background: transparent;
    width: 100%;
    height: auto;
  }

  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    border: 20px solid #03b6c6;
    background: transparent;
  }

  .about-cards {
    flex-direction: column;
    align-items: center;
  }

  .about-card {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .problems-grid,
  .proposals-grid,
  .why-grid,
  .programs-grid,
  .plan-list {
    justify-items: center;
  }

  .pillar-card,
  .problem-card,
  .proposal-card,
  .why-card,
  .program-card,
  .plan-item,
  .faq-item {
    width: 90%;
    max-width: 580px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .hero {
    padding: 50px 0 30px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 7vw, 3.8rem);
  }

  .hero h1 span {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }

  .hero-buttons a,
  .cta-buttons a {
    padding: 14px 20px;
  }

  .about-content h2 {
    font-size: clamp(2.1rem, 6vw, 3.2rem);
  }

  .about-content h2 strong {
    font-size: clamp(1.2rem, 3vw, 1.7rem);
  }

  .journey {
    padding: 70px 0;
  }

  .journey-container {
    width: 92%;
  }

  .journey-header {
    margin-bottom: 50px;
  }

  .journey-header h2 {
    font-size: 2.1rem;
    line-height: 1.15;
  }

  .journey-header p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .timeline::before {
    left: 28px;
    transform: none;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: 80px;
    padding-right: 0;
    margin-bottom: 40px;
  }

  .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    left: 0;
    right: auto;
    top: 18px;
    width: 56px;
    height: 56px;
    font-size: 0.8rem;
  }

  .timeline-content {
    padding: 26px;
    border-radius: 20px;
  }

  .timeline-content h3 {
    font-size: 1.25rem;
  }

  .timeline-content p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}

@media (max-width: 600px) {
  .hero,
  .about,
  .problems,
  .pillars,
  .proposals,
  .plan,
  .programs,
  .journey,
  .why,
  .faq,
  .cta-final {
    padding: 35px 0;
  }

  .hero-content,
  .about-container,
  .proposals-container,
  .programs-container,
  .why-container,
  .cta-container,
  .faq-container {
    width: 95%;
  }

  .hero-tag,
  .section-tag,
  .hero-card strong,
  .pillar-number,
  .timeline-year,
  .why-card span,
  .program-card span,
  .plan-item span {
    font-size: 0.82rem;
  }

  .hero p,
  .about-content p,
  .problem-card p,
  .proposal-card p,
  .plan-item p,
  .program-card p,
  .why-card p,
  .faq-item p,
  .cta-content p {
    font-size: 0.98rem;
  }

  .hero-card,
  .about-card,
  .pillar-card,
  .proposal-card,
  .why-card,
  .program-card,
  .plan-item,
  .faq-item {
    padding: 26px;
    border-radius: 22px;
  }

  .hero-image {
    padding: 0 12px;
  }

  .cta-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 2.8rem);
    letter-spacing: 0;
  }

  .hero h1 span {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .hero-buttons,
  .cta-buttons {
    gap: 12px;
  }

  .hero-buttons a,
  .cta-buttons a {
    padding: 12px 14px;
  }

  .hero-image,
  .cta-image {
    padding: 0;
  }

  .about-card,
  .problem-card,
  .proposal-card,
  .why-card,
  .program-card,
  .plan-item,
  .faq-item {
    padding: 24px;
  }

  .journey {
    padding: 60px 0;
  }

  .journey-container {
    width: 95%;
  }

  .journey-header {
    margin-bottom: 40px;
  }

  .journey-header h2 {
    font-size: 1.8rem;
    line-height: 1.15;
  }

  .journey-header p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .timeline::before {
    left: 22px;
    width: 3px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 60px;
    margin-bottom: 30px;
  }

  .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    width: 48px;
    height: 48px;
    left: 0;
    top: 15px;

    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;

    word-break: break-word;
    overflow-wrap: break-word;
  }
  .timeline-content {
    padding: 20px;
    border-radius: 16px;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .timeline-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

@media (max-width: 360px) {
  .hero-buttons a,
  .cta-buttons a {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .hero p,
  .about-content p,
  .problem-card p,
  .proposal-card p,
  .plan-item p,
  .program-card p,
  .why-card p,
  .faq-item p,
  .cta-content p {
    font-size: 0.92rem;
  }

  .hero-card {
    padding: 20px 18px;
  }
}
