@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html,
body {
  width: 100vw;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.btn-whatsapp-float {
  position: fixed;
  right: 18px; /* distância do lado direito */
  bottom: 18px; /* distância do rodapé */
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #25D366, #128C7E);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  z-index: 9999;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

/* Ícone interno */
.btn-whatsapp-float .btn-whatsapp-icon {
  width: 34px;
  height: 34px;
  fill: #fff;
  display: block;
}

/* Hover / foco (desktop) */
.btn-whatsapp-float:hover,
.btn-whatsapp-float:focus {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  outline: none;
}

/* Efeito de pulso sutil para chamar atenção (respeitando reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
  .btn-whatsapp-float::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    left: 0;
    top: 0;
    box-shadow: 0 0 0 0 rgba(18, 140, 126, 0.35);
    animation: pulse-wh 2.4s infinite;
    pointer-events: none;
  }
  @keyframes pulse-wh {
    0% {
      box-shadow: 0 0 0 0 rgba(18, 140, 126, 0.35);
    }
    70% {
      box-shadow: 0 0 0 18px rgba(18, 140, 126, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(18, 140, 126, 0);
    }
  }
}
/* Ajuste para telas pequenas */
@media (max-width: 480px) {
  .btn-whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 54px;
    height: 54px;
  }
  .btn-whatsapp-float .btn-whatsapp-icon {
    width: 30px;
    height: 30px;
  }
}
/* Fundo escuro do popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Caixa do popup */
.popup-content {
  background: var(--blue);
  padding: 0;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  border-radius: 10px;
}
.popup-content .containerH2 {
  border-radius: 10px 10px 0 0;
  background-color: var(--red);
  width: 100%;
  padding-left: 20px;
  color: white;
  font-weight: 400;
  padding: 10px;
}
.popup-content p, .popup-content h3 {
  color: white;
}
.popup-content strong {
  font-size: 25px;
}
.popup-content p {
  font-size: 12px;
}
.popup-content .containerTextpopUp {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.popup-content .containerTextpopUp div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Botão de fechar */
.close-btn {
  position: absolute;
  top: 0px;
  right: 15px;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
}

/* A imagem dentro do popup */
.popup-content img {
  width: 80%;
  display: block;
  border-radius: 8px;
  margin: 0 auto;
  margin-bottom: 15px;
}

:root {
  --red: #dd003d;
  --blue: #001e6d;
}

.ctaBtn {
  background-color: #07c724;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #00e676 0%, #00c853 100%);
}
.ctaBtn:hover {
  background: linear-gradient(90deg, #00c853, #00e676);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 200, 83, 0.4);
}

img:hover {
  transform: translateY(-3px);
}

section {
  padding: 40px 20px 100px 20px;
}

.section1 {
  background-image: url("./../assets/flyBg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
}
.section1 article {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section1 article img {
  padding-bottom: 20px;
  width: 200px;
}
.section1 .ctaFirst {
  padding: 10px 40px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(180deg, #00e676 0%, #048339 100%);
}
.section1 h1 {
  color: white;
  text-transform: uppercase;
  font-style: italic;
  font-size: clamp(20px, 3vw, 30px);
}
.section1 h1 span {
  font-size: clamp(32px, 6vw, 90px);
}
.section1 p {
  color: white;
  text-transform: uppercase;
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 18px);
  margin-bottom: 20px;
}
.section1 .cardFlyPrice {
  background-color: var(--red);
  color: white;
  padding: 10px;
}
.section1 .cardFlyPrice .linkMaisInfos {
  display: inline-block;
  text-align: center !important;
  width: 100%;
  color: white;
  font-weight: bold;
}
.section1 .cardFlyPrice .containerMB {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.section1 .cardFlyPrice .containerMB p {
  text-transform: capitalize;
  margin: 0 !important;
}
.section1 .cardFlyPrice .containerMB span {
  font-weight: 300 !important;
  border: 1px solid white;
  border-radius: 10px;
  padding: 5px 20px;
  font-size: 18px;
}

.cardFlyPrice {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 15px;
  padding: 15px;
  min-width: 300px;
  min-height: 450px;
  max-width: 350px;
  background-color: white;
  color: var(--blue);
}
.cardFlyPrice .linkMaisInfos {
  text-align: center;
  padding-top: 20px;
  font-weight: bold;
}
.cardFlyPrice .ctaBtn {
  padding: 10px;
  width: 100%;
  display: inline-block;
  margin: 12px 0;
}
.cardFlyPrice h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.cardFlyPrice span {
  font-weight: bolder;
  font-size: 35px;
}
.cardFlyPrice .containerImgs {
  max-width: 250px;
  margin-bottom: 40px;
}
.cardFlyPrice .lastcontainer {
  margin-bottom: 0;
}
.cardFlyPrice img {
  width: 50px;
  padding-right: 3px;
}

.section2 {
  background-image: url("./../assets/flyBg2.webp");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 30px;
}
.section2 .womanImg {
  width: 180px;
  z-index: 100;
}
.section2 .containerBeneficios {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section2 .containerPreco {
  background-color: var(--blue);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  padding: 20px 0;
  margin-top: -35px;
}
.section2 .containerPreco h3 {
  font-size: 28px;
  font-style: italic;
  padding: 30px;
}
.section2 .containerPreco p {
  padding-top: 14px;
  font-size: 20px;
  font-style: italic;
}
.section2 .containerPreco p span {
  font-size: 40px;
  font-weight: 800;
}

.section3 {
  background-image: url("./../assets/bgSection3.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 200px 10px;
  font-size: clamp(20px, 3vw, 30px);
}
.section3 h2 {
  color: white;
  font-weight: 300;
  text-align: center;
}
.section3 h2 b {
  font-weight: 700;
}

footer {
  background-color: var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
footer img {
  width: 150px;
}
footer p {
  color: white;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .section1 {
    flex-direction: column;
  }
  .section2 {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  footer img {
    width: 200px;
  }
  footer p {
    text-align: center;
  }
}/*# sourceMappingURL=styles.css.map */