@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("responsive.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  position: relative;
  overflow-x: hidden !important;
  font-family: "Roboto", sans-serif;
}

:root {
  --primary-color: #f1841b;
  --primary-color-hover: #ce6a0c;
  --secondary-color: #04478f;
  --terciary-color: #132940;

  --branco: #ffffff;
  --cinza1: #656565;
  --laranja: #f8922e;
  --laranja2: #fa6220;
  --azul: #04478f;
  --azul2: #036fe1;
  --wpp: #25d366;

  --e-global-color-primary: #04478f;
  --e-global-color-secondary: #f7922d;
  --e-global-color-text: #656565;
  --e-global-color-accent: #f86823;
  --e-global-color-white: #ffffff;
  --e-global-color-light-white: #d6d8e2;
  --e-global-color-very-dark-mostly-black-blue: #04478f;
  --e-button-gradient-1: #fa6220;
  --e-button-gradient-2: #ef8b33;
  --e-global-color-desaturated-blue: #353956;
  --e-global-color-bright-orange: #f68a49;
  --e-global-color-very-pale-orange: #fff7f4;
  --e-global-color-very-light-gray-mostly-white: #f9f9f9;
}

#container3D {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}

.btn-primary {
  background-color: var(--terciary-color);
  border: none;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--primary-color-hover);
}

.btn-secondary {
  background-color: var(--primary-color);
  border: none;
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: var(--primary-color-hover);
}

.btn-branco {
  border: none;
  background-color: #fff;
  font-weight: 600;
  /* text-transform: uppercase; */
}

.btn-branco:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-branco2 {
  border: none;
  background-color: #fff;
  font-weight: 900;
  color: var(--terciary-color) !important;
  /* text-transform: uppercase; */
}

.btn-branco2:hover {
  background-color: var(--primary-color);
  color: #fff !important;
}

.main_header {
  background-image: linear-gradient(
      to right,
      rgba(0, 35, 82, 0.8),
      rgba(0, 35, 82, 0.8) 25%,
      rgba(0, 35, 82, 0)
    ),
    url(../img/bgfamilia.jpg);
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow-x: hidden;
}

.main_header .content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  /* position: fixed; */
}

.main_header .content #texto {
  color: #fff;
  /* background-color: #132940a1; */
  padding: 25px;
  border-radius: 7px;
}

.main_header .content #logo {
  max-width: 200px;
  margin-bottom: -35px;
  margin-left: 15px;
}

.content #texto h1 {
  font-size: 1.25rem; /* ~20px */
  font-weight: 400;
}

.content #texto h2 {
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 900;
}

.content #texto p {
  font-size: 1.25rem; /* ~20px */
  font-weight: 400;
}

.content #imagem {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content #imagem img {
  max-width: 350px;
}

.imgcamera {
  position: absolute;
  bottom: 35%;
  right: -100px;
}

.imgcamera img {
  max-width: 500px;
}

/*  */

.main-planos {
  padding-top: 120px;
  width: 100%;
  height: 100vh;
  /* background-image: url("../img/bgplanos.jpg"); */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;

  background: linear-gradient(
    to right,
    #24243e,
    #132940,
    #0f0c29
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.main-planos header h1 {
  /* color: var(--primary-color); */
  color: #fff;
  font-size: 3rem !important;
  text-align: center;
  margin-bottom: 55px;
}

.main-planos .row {
  justify-content: center; /* Centraliza os cards na linha */
}

.main-planos .card {
  text-align: center;
  background-color: #f6f5f4;
  border-radius: 25px;
  margin: 10px; /* Espaçamento entre os cards */
  padding: 20px; /* Respiro interno */
  flex: 1; /* Faz os cards ocuparem o mesmo espaço */
  max-width: 300px; /* Deixa os cards mais finos */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); /* Sombra leve */
  border: none;
  position: relative;
}

.main-planos .card .mais-e-melhor {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: var(--primary-color);
  color: #fff;
  border-radius: 6px;
  padding: 3px 8px;
  white-space: nowrap;
}

.main-planos .card h2 {
  text-align: center;
  color: var(--terciary-color);
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.6rem;
  margin-top: 15px;
}
.main-planos .card h2 span {
  background-color: #f7922d;
  padding: 0 5px;
  border-radius: 6px;
  font-size: 2rem;
  font-weight: 900;
}

.main-planos .check {
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: center;
  margin-bottom: 1rem;
}

.main-planos .assets i {
  color: var(--primary-color);
  margin-right: 7px;
}

.main-planos .assets p {
  color: var(--terciary-color);
  font-weight: 700;
  text-align: start;
  line-height: 18px;
  margin-bottom: 0 !important;
  font-size: 1.1rem;
}

.main-planos .assets span {
  color: var(--primary-color);
  font-weight: bolder;
}

.main-planos .card .valor {
  background-color: #fff;
  border-radius: 25px;
}

.main-planos .card .valor p#preco {
  font-size: 3rem;
  font-weight: 900;
  color: var(--terciary-color);
}

.main-planos .card .valor p#preco > span {
  font-size: 1rem;
  color: var(--primary-color);
}

.main-planos .card .valor p#apos {
  color: var(--terciary-color);
  margin-top: -20px;
  font-size: 0.785rem;
}

.main-planos .card .valor p#consulte {
  font-size: 2rem;
  line-height: 2.7rem;
  font-weight: 900;
  color: var(--terciary-color);
}

.main-planos .pequeno {
  font-size: 0.785rem;
  width: 70%;
  text-align: center;
  margin: 0 auto;
}

/*  */
/*  */

main img {
  max-width: 100%;
}

.dir {
  text-align: right;
}

.beneficios {
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 180px;
  background: linear-gradient(
    to right,
    #24243e,
    #132940,
    #0f0c29
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.beneficios img {
  width: 100%;
}

.beneficios h1 {
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: bold;
}

.beneficios h2 {
  font-size: 1.85rem;
}
.beneficios h3 {
  font-size: 1.5rem;
}

.beneficios h3:first-of-type {
  margin-top: 50px;
}

.beneficios i {
  color: var(--primary-color);
  font-weight: bold;
}

/* 

*/

.b1,
.b2,
.b3,
.b4,
.b5 {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    to right,
    #24243e,
    #132940,
    #0f0c29
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.b1 h2,
.b2 h2,
.b3 h2,
.b4 h2,
.b5 h2,
.b6 h2 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
}

.b1 p,
.b2 p,
.b3 p,
.b4 p,
.b5 p,
.b6 p {
  color: #fff;
}

.b1 img,
.b2 img,
.b3 img,
.b4 img,
.b5 img,
.b6 img {
  border-radius: 12px;
}

/* 
    RECEBA
*/

.main_receba1 {
  padding: 80px 0;
  max-width: 100% !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 2;
  background-image: url("../img/bgplanos.jpg");
}

.main_receba1 h1 {
  color: #fff;
  font-size: 3rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 1px 1px 2px black;
}

@media (max-width: 480px) {
  .main_receba1 h1 {
    font-size: 2rem;
    margin-top: 20px;
  }
}

.main_receba1 i {
  color: var(--bg-whatsapp);
}

.main_receba1 form {
  padding: 20px 40px;
  border-radius: 7px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
}

.main_receba1 form input {
  width: 100%;
  border: none;
  padding: 15px 20px;
  border-radius: 7px;
  margin-bottom: 20px;
  margin-top: 10px;
  background-color: #fff;
}

.main_receba1 button {
  /* background-color: var(--wpp) !important; */
}

.main_receba1 button.btn3 {
  padding: 25px 0;
  color: var(--branco);
  font-weight: bold;
  text-transform: uppercase;
  background-color: var(--wpp) !important;
  text-shadow: 1px 1px 2px black;
  border: none;
  border-radius: 25px;
  font-size: 1.5rem;
}

/* FAQ */

.accordion-button:not(.collapsed) {
  background-color: var(--terciary-color);
  color: var(--e-global-color-very-pale-orange);
}

.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Remove o ícone padrão de seta do Bootstrap */
.accordion-button::after {
  background-image: none !important; /* Remove a seta SVG padrão */
  content: "▼"; /* Seta para baixo (padrão) */
  font-size: 1rem;
  color: #000; /* Cor da seta quando fechado */
  margin-left: auto; /* Alinha seta à direita */
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Quando o item está aberto */
.accordion-button:not(.collapsed)::after {
  content: "▲"; /* Seta para cima */
  color: #fff; /* Cor da seta quando aberto */
}

/* 
    FOOTER SECTION 
*/

.main_footer {
  background-image: linear-gradient(
    to right,
    var(--e-button-gradient-1) 0%,
    var(--e-button-gradient-2) 100%
  );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  /* padding: 80px 0; */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.main_footer::before {
  content: "";
  width: 85%;
  height: 100%;
  border-radius: 0 0 600px 0;
  position: absolute;
  background: var(--terciary-color);
  padding: 80px 0;
}

.main_footer .row {
  z-index: 2;
  position: relative;
}

.main_footer .logo {
  width: 100%;
  padding: 45px 0;
}

.main_footer .logo img {
  max-width: 80%;
}

.main_footer .desc p {
  color: var(--branco);
  padding: 25px 0;
}

.main_footer h3 {
  padding: 45px 0;
  text-align: center;
  color: var(--branco);
  text-transform: uppercase;
  font-weight: bold;
}

.main_footer ul li {
  list-style: none;
  text-align: center;
}

.main_footer ul li a {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--branco);
  font-weight: bold;
  line-height: 30px;
}

.main_footer ul li a:hover {
  color: var(--cinza1);
}

.main_footer .contatofooter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 25px;
}

.main_footer .contatofooter a {
  color: var(--branco);
  width: 100%;
}
