html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #001433;
}

section {
  width: 100%;
  padding: 80px 10%;
  box-sizing: border-box;
}

.close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  cursor: pointer;
}


.hero-section {
  background: #F9F9F9;
  color: #001433;
  display: flex;
  flex-direction: column;
  padding: 60px 8% 0px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.logo {
  width: 140px;
  height: auto;
}

.btn.small {
  padding: 16px 24px;
  font-size: 16px;
}

.container-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 80px);
  flex-wrap: nowrap;
  max-width: 1250px;
  margin: 0 auto;
  flex-direction: row;
}

.hero-text {
  flex: 0 1 48%;
  max-width: 48%;
  margin-bottom: 4%;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text .highlight {
  color: #00AEEF;
}

.hero-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 32px;
  max-width: 85%;
}

.hero-image {
  flex: 0 1 48%;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* BOTÃO AZUL */
.btn-blue {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #0aa6d8 0%, #21d3cb 100%);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-blue:hover {
  background: linear-gradient(90deg, #0091E0 0%, #006FE0 100%);
  box-shadow: 0 4px 15px rgba(0, 120, 255, 0.3);
  transform: translateY(-2px);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 6% 0px;
  }

  .header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .header .btn.small {
    display: none;
  }

  /* agora a imagem vem por último */
  .container-hero {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-text {
    max-width: 100%;
    order: 1;
    /* texto primeiro */
  }

  .hero-image {
    justify-content: center;
    order: 2;
    /* imagem por último */
  }

  .hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .hero-text p {
    font-size: 1rem;
    color: #4a4a4a;
    margin: 0 auto 26px;
    max-width: 95%;
  }

  .btn-blue {
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 40px;
  }

  .hero-image img {
    max-width: 85%;
    margin: 20px auto 0;
    display: block;
  }
}


/* === BLOCO 2 - ADESÃO ZERO === */
.adesao-section {
  background: #fff;
  color: #001433;
  padding: 100px 8%;
  box-sizing: border-box;
}

.container-adesao {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 100px);
  flex-wrap: wrap;
  max-width: 1250px;
  margin: 0 auto;
}

.adesao-text {
  flex: 0 1 50%;
}

.adesao-text h2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.adesao-text p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 20px;
  max-width: 90%;
  line-height: 1.6;
}

.adesao-image {
  flex: 0 1 40%;
  display: flex;
  justify-content: center;
}

.adesao-image img {
  max-width: 80%;
  height: auto;
  display: block;
}

/* Responsividade */
@media (max-width: 768px) {
  .container-adesao {
    flex-direction: column;
    text-align: center;
  }

  .adesao-section {
    padding: 10% 0 0 0;
  }

  .adesao-image {
    order: 1;
    /* imagem primeiro */
    margin-bottom: 25px;
  }

  .adesao-image img {
    max-width: 60%;
    margin: 0 auto;
  }

  .adesao-text {
    order: 2;
    /* texto depois */
    flex: none;
    max-width: 100%;
  }

  .adesao-text h2 {
    font-size: 2.3rem;
    margin-bottom: 16px;
  }

  .adesao-text p {
    font-size: 1rem;
    margin: 0 auto 20px;
    color: #444;
    line-height: 1.6;
    max-width: 90%;
  }

  .btn-blue {
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 30px;
  }
}


/* === VANTAGENS === */
.vantagens-section {
  background: #fff;
  text-align: center;
  padding: 100px 8%;
}

.vantagens-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #001433;
  margin-bottom: 60px;
}

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  margin-bottom: 50px;
}

.vantagem-card {
  border-radius: 16px;
  padding: 10px 30px;
  max-width: 500px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vantagem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 174, 239, 0.15);
}

.vantagem-img {
  margin-bottom: 25px;
}

.vantagem-img img {
  max-width: 100%;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.vantagem-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #001433;
}

.vantagem-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.vantagens-arrow {
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .vantagens-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .vantagem-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
  }

  .vantagem-card:hover {
    transform: scale(1.02);
  }

  /* esconde a barra de rolagem */
  .vantagens-grid::-webkit-scrollbar {
    display: none;
  }

  .vantagens-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .btn.btn-blue {
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 30px;
  }

  .vantagens-section {
    position: relative;
  }

  .vantagens-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 8%;
    top: 45%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
    z-index: 5;
    animation: arrow-move 1.5s infinite ease-in-out, arrow-fade 6s forwards ease;
  }

  .vantagens-arrow span {
    font-size: 2rem;
    color: #00AEEF;
    line-height: 1;
  }

  @keyframes arrow-move {

    0%,
    100% {
      transform: translate(0, -50%);
      opacity: 0.8;
    }

    50% {
      transform: translate(6px, -50%);
      opacity: 1;
    }
  }

  @keyframes arrow-fade {
    to {
      opacity: 0;
      visibility: hidden;
    }
  }
}

/* === CTA FINAL === */
.cta-final-section {
  background: #00AEEF;
  padding: 100px 8%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.container-cta-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(60px, 10vw, 120px);
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
}

.cta-text {
  flex: 0 1 45%;
}

.cta-text p {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 40px;
  color: #fff;
}

.cta-text strong {
  font-weight: 700;
  display: block;
  margin-top: 10px;
}

.cta-image {
  flex: 0 1 45%;
  display: flex;
  justify-content: flex-end;
}

.cta-image img {
  max-width: 100%;
  border-radius: 20px;
  display: block;
  /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cta-image img:hover {
  transform: scale(1.03);
  /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); */
}

/* BOTÃO AJUSTADO PARA O FUNDO AZUL */
.btn-orange {
  display: inline-block;
  padding: 18px 38px;
  border-radius: 40px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  background: linear-gradient(90deg, #FF8A00 0%, #FF7A00 50%, #FF9B1A 100%);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.45);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #FF9900 0%, #FF7A00 50%, #FFB347 100%);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .cta-final-section {
    padding: 60px 6% 80px;
    text-align: center;
  }

  .container-cta-final {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .cta-text {
    flex: none;
    max-width: 100%;
    order: 1;
    /* texto primeiro */
  }

  .cta-image {
    order: 2;
    /* imagem depois */
    justify-content: center;
  }

  .cta-image img {
    max-width: 85%;
    border-radius: 14px;
  }

  .cta-text p {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 25px;
    color: #fff;
  }

  .btn-orange {
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 35px;
  }
}

/* === BLOCO 5 - CONTATO === */
.contato-section {
  background: #fff;
  padding: 100px 8%;
  text-align: center;
  color: #001433;
}

.container-contato {
  max-width: 700px;
  margin: 0 auto;
}

.container-contato h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.container-contato p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 50px;
  line-height: 1.6;
}

.form-contato {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-contato input {
  padding: 18px 20px;
  border: 2px solid #00AEEF;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  color: #001433;
  font-family: 'Poppins', sans-serif;
}

.form-contato input::placeholder {
  color: #999;
}

.form-contato input:focus {
  border-color: #0078FF;
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
}

.form-contato button {
  align-self: center;
  margin-top: 20px;
  padding: 16px 50px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #00AEEF 0%, #0078FF 100%);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-contato button:hover {
  background: linear-gradient(90deg, #0095E0 0%, #006FE0 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 120, 255, 0.3);
}

/* Responsivo */
@media (max-width: 768px) {
  .contato-section {
    padding: 0 8% 100px;
  }

  .container-contato h2 {
    font-size: 2rem;
  }

  .container-contato p {
    font-size: 1rem;
  }

  .form-contato input {
    font-size: 0.95rem;
  }
}








/* === FOOTER === */
.footer {
  background: #13a3d8;
  color: #fff;
  padding: 80px 10% 40px;
  font-size: 0.95rem;
  position: relative;
  font-family: "Poppins", sans-serif;
}

.container-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  flex: 1 1 50%;
  min-width: 300px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 30px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  gap: 40px;
}

.footer-contact p {
  font-weight: 200;
  margin: 10px 0;
  line-height: 1.5;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-apps-title {
  margin: 30px 0 15px;
  font-weight: 500;
}

.footer-apps {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  padding: 30px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.app-btn img {
  width: 18px;
  height: auto;
}

.app-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.footer-social {
  margin-top: 30px;
}

.footer-social p {
  font-weight: 500;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons a {
  color: #fff;
  font-size: 16px;
  transition: opacity 0.3s ease;
}

.social-icons a:hover {
  opacity: 0.7;
}

.footer-right {
  flex: 1 1 40%;
  min-width: 260px;
}

.footer-newsletter h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  max-width: 400px;
}

.newsletter-form input {
  border: none;
  padding: 20px 16px;
  flex: 1;
  outline: none;
  font-size: 0.95rem;
  color: #333;
}

.newsletter-form button {
  background: transparent;
  color: #007aff;
  border: none;
  font-weight: 600;
  padding: 0 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  text-decoration: underline;
}

.footer-links {
  margin-top: 40px;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 60px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-legal a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* ==== RESPONSIVIDADE ==== */
@media (max-width: 900px) {
  .footer {
    padding: 60px 8% 30px;
  }

  .container-footer {
    flex-direction: column;
    gap: 40px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-logo {
    margin: 0 0 25px;
  }

  .footer-apps {
    justify-content: flex-start;
  }

  .footer-social {
    margin-top: 30px;
  }

  .social-icons {
    gap: 15px;
  }

  .newsletter-form {
    flex-direction: row;
    justify-content: space-between;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    max-width: 100%;
  }

  .newsletter-form input {
    border: none;
    padding: 12px 16px;
    flex: 1;
    font-size: 0.95rem;
  }

  .newsletter-form button {
    border-left: 1px solid #ddd;
    color: #007aff;
    background: #fff;
    padding: 0 16px;
    white-space: nowrap;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    margin-top: 40px;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* ======== Animações de entrada ======== */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-up {
  transform: translateY(60px);
}


.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.newsletter-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.newsletter-modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-family: 'Open Sans', sans-serif;
}

.newsletter-modal-content p {
  font-size: 1.1rem;
  color: #333;
}

#close-modal {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  color: #888;
  cursor: pointer;
}

#close-modal:hover {
  color: #000;
}

.g-recaptcha {
  transform: scale(0.9);
  transform-origin: center;
  margin: 10px auto;
  display: flex;
  justify-content: center;
}

.recaptcha-container {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 10px;
  display: inline-block;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

/* === NEWSLETTER RECAPTCHA === */
.newsletter-recaptcha {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.newsletter-recaptcha .g-recaptcha {
  transform: scale(0.9);
  transform-origin: center;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-newsletter form {
  width: 100%;
  max-width: 400px;
}

.footer-newsletter .newsletter-form {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-newsletter .newsletter-form input {
  border: none;
  padding: 20px 16px;
  flex: 1;
  font-size: 0.95rem;
  color: #333;
}

.footer-newsletter .newsletter-form button {
  background: transparent;
  color: #007aff;
  border: none;
  font-weight: 600;
  padding: 0 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.footer-newsletter .newsletter-form button:hover {
  text-decoration: underline;
}