:root {
  --primary: #2da8f3;
  --secundary: #3115CE;
  --dark: #2F2F2F;
  --gray: #74858B;
  --light: #f8fafc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'REM', sans-serif;
  color: var(--dark);
  background: #fff;
}

h1, h2, h3, h4 {
  font-family: 'Dosis', sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.center {
  text-align: center;
}

/* HEADER */
.header {
  width: 100%;
  background-color: #fff;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

/* Lado esquerdo */
.header-left .logo {
  max-height: 50px;
}

/* Lado direito */
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 12px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 4px;
  transition: 0.3s;
}

.logo {
  width: 120px;
  height: auto;
}

.nav a {
  margin: 16px;
  text-decoration: none;
  color: var(--dark);
  font-weight: bold;
  justify-items: end;
}

.nav a:hover {
  color: var(--primary);
}

/* BOTÕES */
.btn {
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(48, 173, 231, 0.35);
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #1d99d3;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  cursor: pointer;
  border-radius: 16px;
}

.btn-outline:hover {
  background-color: #e0f2fe;
  transform: translateY(-2px);
}

/* HERO */
.hero {
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 1rem 0;
}

.hero-text h1 strong {
  color: var(--primary);
}

.hero-text p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.highlight span {
  color: var(--secundary);
  font-weight: 600;
  font-size: 24px;
}

.highlight-span {
  color: var(--primary) !important;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
}

/* BADGE */
.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #e0f2fe;
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.8rem;
}

/* STEPS */
.steps {
  padding: 40px 0;
  text-align: center;
  background-color: #F9FCFD;
}

/* Título */
.steps h2 {
  text-align: center;
  font-size: 28px;
  color: var(--dark);
  margin-top: 16px;
}

/* textos */
.steps .subtitle {
  font-size: 14px;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;    
  line-height: 1.6;
}


/* Grid dos cards */
/* Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* Card */
.step {
  position: relative;
  padding: 40px 32px 32px;
  background: #fff;
  border: 1px solid #e6f2fb;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(48, 173, 231, 0.18);
}

/* Número */
.step-number {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: #fff;
  border: 2px solid var(--primary);
}

/* Título */
.step h3 {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}

/* Texto */
.step p {
  margin-top: 8px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* SUPORTE */
.support {
  padding: 40px 0;
  text-align: center;
}

/* Títulos */
.support h2 {
  margin-top: 16px;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
}

.support .subtitle {
  max-width: 720px;
  margin: 12px auto 48px;
  font-size: 15px;
  color: #6b7280;
}

/* Conteúdo */
.support-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

/* Imagem */
.support-image {
  border-radius: 20px;
  padding: 40px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-image img {
  max-width: 100%;
}

/* Lista */
.support-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

/* Item */
.support-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.support-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(48, 173, 231, 0.18);
}

.support-item h4 {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
}

.support-item p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Check */
.check {
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  color: #22c55e;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Botão */
.support-btn {
  margin-top: 32px;
}

/* Depoimento */
.testimonials {
  padding: 40px 0;
  text-align: center;
  background: #fff;
}

/* Título */
.testimonials h2 {
  margin: 16px 0 48px;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
}

/* Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.testimonial-card {
  padding: 32px 28px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(48, 173, 231, 0.18);
}

/* Ícone */
.quote-icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 16px;
  transform: rotate(180deg);
}


/* Texto */
.testimonial-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Nome */
.testimonial-card strong {
  font-size: 14px;
  color: var(--dark);
}

/* quando começar */
.start {
  padding: 40px 0;
  text-align: center;
  background-color: #F9FCFD;
}

/* Título */
.start h2 {
  margin: 16px 0 32px;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
}

.start-list-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  margin-left: 120px;
}

/* Lista */
.start-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 420px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Item */
.start-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  column-gap: 12px;
  font-size: 18px;
  color: var(--dark);
  line-height: 1.6;
}

.commitment {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.commitment h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--dark);
}

.commitment .subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--dark);
  font-size: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 12px 12px;
  background: #fff;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(48, 173, 231, 0.18);
}

.icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 0;
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 38px;
  color: #ffffff;
  -webkit-text-stroke: 1.8px var(--primary);
}

/* Texto */
.card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #222;
}

.card p {
  color: #777;
  font-size: 14px;
  margin-bottom: 12px;
}

.about {
  padding: 40px 0;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.about-content h2 {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 16px;
}

.about-content p {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.6;
  max-width: 480px;
}

.footer {
  margin-top: 40px;
  background: #0f3d53;
  color: #cfdce4;
  padding: 70px 20px 30px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  margin-top: 20px;
  font-size: 16px;
  color: #b9cbd6;
}

/* Logo */
.footer-logo {
  color: white;
  width: 240px;
  height: auto;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Colunas */
.footer-column h4 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #cfdce4;
  font-size: 14px;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #ffffff;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  font-size: 13px;
  color: #b9cbd6;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

@media (max-width: 1024px) {

  /* HEADER */
  .menu-toggle {
    display: flex;
  }

  .header-content {
    position: relative;
  }

  .header-right {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: none;
  }

  .header-right.active {
    display: flex;
  }

  .nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .nav a {
    margin: 0;
    font-size: 16px;
  }

  /* HERO */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* STEPS */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* SUPORTE */
  .support-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .support-image {
    height: auto;
    padding: 24px;
  }

  /* TESTEMUNHOS */
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* ABOUT */
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-content p {
    margin: 0 auto;
  }

  /* START */
  .start-list-wrapper {
    margin-left: 0;
  }
}

@media (max-width: 768px) {

  /* HEADER */
  .menu-toggle {
    display: flex;
  }

  .header-content {
    position: relative;
  }

  .header-right {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: none;
  }

  .header-right.active {
    display: flex;
  }

  .nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .nav a {
    margin: 0;
    font-size: 16px;
  }

  /* TEXTOS */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  /* HERO */
  .hero {
    padding: 2.5rem 0;
  }

  .hero-text .badge {
    order: 1;
    display: inline-block;
    margin-bottom: 16px;
  }

  .hero-image {
    order: 2;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
  }

  .hero-image img {
    max-width: 90%;
  }

  .hero-text h1,
  .hero-text p,
  .hero-text .highlight,
  .hero-actions {
    order: 3;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* SUPPORT */
  .support h2 {
    font-size: 26px;
  }

  /* TESTEMUNHOS */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* COMMITMENT */
  .commitment {
    padding: 60px 16px;
  }

  /* CARDS */
  .cards {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
    text-align: center;
  }

  .footer-brand .brand-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
  }

}

@media (max-width: 480px) {

  /* CONTAINER */
  .container {
    width: 95%;
  }

  /* BOTÕES */
  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  /* TÍTULOS */
  .hero-text h1 {
    font-size: 1.7rem;
  }

  /* START */
  .start-list {
    width: 100%;
  }

  .start-list li {
    font-size: 16px;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-column {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}