/* Importa a fonte Jost do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

* {
  font-family: "Jost", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
  outline: none;
  list-style: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--text);
}
img {
  max-width: 100%;
  display: block;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background-color: #fff;
}
p {
  font-size: 1.8rem;
  line-height: 160%;
  font-weight: 300;
  margin-bottom: 2rem;
}
p:last-child {
  margin-bottom: 0rem;
}
:root {
  --blue: #005ca9;
  --orange: #f39200;
  --gray: #464646;
}
.container {
  width: 100%;
  max-width: 122rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  gap: 0.8rem;
  padding: 1.2rem 2.4rem;
  border-radius: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  transition: background-color 0.3s;
  text-decoration: none;
}
.btn.orange {
  background-color: var(--orange);
}
.btn.orange:hover {
  background-color: #975200;
}
.tag {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--blue);
  padding: 1.2rem 2.4rem;
  background-color: #fff;
  border-radius: 10rem;
  border: 1px solid #eee;
  box-shadow: 0 4px 10px 0 rgba(238, 238, 238, 0.5);
}
.tag img {
  width: 2.4rem;
  height: 2.4rem;
}
.plans-swiper {
  width: 100%;
  max-width: 119rem;
  padding: 2.4rem 0 0 0;
  overflow: hidden;
}
.plans {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.8rem 2.4rem;
}
.plans.single {
  width: fit-content;
  grid-template-columns: 1fr;
}
.plans.single .card {
  max-width: 40rem;
}
.plans.single .card .details {
  padding: 4.5rem 2.4rem 3rem 2.4rem;
}
.plans.single .card.meses-gratis-3::before {
  content: "3 MENSALIDADES GRÁTIS";
}
.plans.single .card.meses-gratis-6::before {
  content: "6 MENSALIDADES GRÁTIS";
}
.plans.single .card.meses-gratis-9::before {
  content: "9 MENSALIDADES GRÁTIS";
}
.swiper-wrapper {
  width: 100%;
  max-width: 119rem;
}
.card {
  width: 100%;
  height: fit-content;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  position: relative;
}
.card:nth-child(2)::before {
  content: "3 MENSALIDADES GRÁTIS";
  background-color: var(--blue);
}
.card:nth-child(3)::before {
  content: "PERFEITO PARA A CIDADE";
  background-color: var(--blue);
}
.card:nth-child(4)::before {
  content: "PAGUE NO MÊS EM QUE USAR";
  background-color: var(--blue);
}
.card::before {
  content: "EXCLUSIVO CLIENTE CARTÃO DE CRÉDITO CAIXA";
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 500;
  position: absolute;
  top: -2.1rem;
  left: 0;
  width: fit-content;
  padding: 1.4rem 2.2rem;
  border-radius: 0.8rem 0.8rem 0.8rem 0;
  background-color: var(--orange);
  z-index: 1;
  color: #fff;
}
.card .details {
  padding: 5rem 2.4rem 3rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.card .details .label {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 18px;
  border-radius: 100px;
  background: #0066b3;
  text-transform: uppercase;
  color: #fff;
  font-size: 1rem;
}
.card .details .text {
  text-transform: uppercase;
}
.card .details .text .title {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--blue);
}
.card .details .text .description {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gray);
  margin-top: 0.8rem;
}
.card .details .list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.card .details .list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--gray);
}
.card .details .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card .details .price .monthly {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
}
.card .details .price .monthly .value {
  font-size: 3.6rem;
  font-weight: bold;
  margin-top: 1rem;
}
.card .details .alert {
  background-color: rgba(247, 148, 30, 0.1);
  border: 1px solid rgba(247, 148, 30, 0.2);
  padding: 1rem 1.4rem;
  border-radius: 0.6rem;
  font-size: 1.3rem;
  color: var(--orange);
}
.card .details .alert b {
  font-weight: 600;
  line-height: 160%;
}
.card .payments {
  border-top: 1px solid #eee;
  padding: 2.4rem;
}
.card .payments .title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.card .payments .options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.card .payments .options > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  gap: 1.2rem;
  border: 1px solid #eee;
  color: var(--gray);
  text-transform: uppercase;
  font-weight: 600;
  padding: 1.2rem;
}
.card .payments .options > div.opacity {
  opacity: 0.5;
}
.card .conditions {
  border-top: 1px solid #eee;
  display: flex;
  padding: 1.8rem 2.4rem;
  align-items: center;
  justify-content: space-between;
  background: #f2f2f2;
  text-transform: uppercase;
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
}
.card .conditions:hover {
  background-color: #e0e0e0;
}
.legal p {
  font-size: 1.3rem;
}
.conditions-plans {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  padding: 1.5rem;
}
.conditions-plans.active {
  opacity: 1;
  pointer-events: all;
}
.conditions-plans .box {
  width: 100%;
  max-width: 40rem;
  background-color: #fff;
  padding: 2.4rem;
  border-radius: 1rem;
  opacity: 0;
  pointer-events: none;
  display: none;
}
.conditions-plans .box.active {
  display: block;
  opacity: 1;
  pointer-events: all;
}
.conditions-plans .box span {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1rem;
  display: inline-block;
}
.conditions-plans .box h3 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 1.6rem;
}
.conditions-plans .box p {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gray);
}
.container:has(.timer) {
  gap: 2rem;
}
.timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 3rem;
  gap: 1rem;
  padding: 2rem 4rem 1.5rem 4rem;
  box-shadow: 0 4px 10px 0 rgba(238, 238, 238, 0.5);
  color: #0066b3;
  border-radius: 10rem;
  background-color: #fff;
  border: 1px solid #eee;
}
.timer span {
  font-size: 1.6rem;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 600;
}
.timer #cronometro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: #0066b3;
  font-weight: 600;
}
header {
  background-color: var(--blue);
  padding: 2.6rem 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .container .brand {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
header .container .brand a {
  display: block;
}
header .container .brand a .caixa img {
  width: 21.8rem;
}
main {
  padding: 5rem 0;
}
main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
main .container .content {
  width: 100%;
  max-width: 94rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
main .container .content h2 {
  font-size: 5.2rem;
  text-align: center;
  color: var(--orange);
}
main .container .content h2 span {
  color: var(--blue);
}
main .container .content p {
  width: 100%;
  max-width: 65rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gray);
}
main .container .content p b {
  font-weight: 600;
}
footer {
  padding: 2.4rem;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 1.4rem;
  color: #fff;
}
footer .container a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
}
footer .top {
  background-color: #00589a;
  padding: 5rem;
  border-radius: 1.6rem 1.6rem 0 0;
}
footer .top .container .left {
  display: flex;
  gap: 3.2rem;
}
footer .top .container .left .call-center {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
footer .top .container .left .call-center h3 {
  font-size: 2rem;
  color: var(--orange);
}
footer .top .container .left .call-center .item p {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
footer .top .container .left .call-center .item h4 {
  font-size: 2.8rem;
  font-weight: 600;
}
footer .top .container .left .call-center .item:last-of-type h4 {
  font-size: 2rem;
  margin: 1rem 0 0 0;
}
footer .top .container .left nav {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
footer .top .container .left nav h3 {
  font-size: 2rem;
}
footer .top .container .left nav ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
footer .top .container .left nav ul li a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  text-transform: uppercase;
}
footer .top .container .left nav ul li a:hover {
  text-decoration: underline;
}
footer .bottom {
  background-color: #0066b3;
  padding: 3.2rem;
  border-radius: 0 0 1.6rem 1.6rem;
}
@media (max-width: 992px) {
  header .container {
    flex-direction: column;
    gap: 2rem;
  }
  header .container ul li.btn a {
    padding: 1rem 2rem;
    font-size: 1.2rem;
  }
  main {
    padding: 3rem 0;
  }
  main .container .content h2 {
    font-size: 3.6rem;
  }
  main .container .content p {
    font-size: 1.3rem;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  main .container .plans {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 1rem;
  }
  footer .top {
    padding: 5rem 2rem;
  }
  footer .top .container .left {
    gap: 2rem;
  }
  footer .top .container .left .call-center h3 {
    font-size: 1.6rem;
  }
  footer .top .container .left .call-center .item p {
    font-size: 1.4rem;
  }
  footer .top .container .left .call-center .item h4 {
    font-size: 2rem;
  }
  footer .top .container .left .call-center .item:last-of-type h4 {
    font-size: 1.6rem;
  }
  footer .top .container .left nav h3 {
    font-size: 1.6rem;
  }
}
@media (max-width: 576px) {
  main .container .content h2 {
    font-size: 3rem;
  }
  footer .top .container .left {
    flex-direction: column;
    gap: 5rem;
  }
  footer .bottom .container {
    flex-direction: column;
  }
}
