@import url('https://fonts.googleapis.com/css2?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&display=swap');
@import "tailwindcss";

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Global Settings */
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

html {
  /* a cada 1rem ser� considerado 10px */
  font-size: 62.5%;
}


body {
  background: #000754;
  font-family: 'regular', 'Helvetica', Arial, sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  font-size: 1.6rem;
}

:root {
  /* A cor principal e uma varia��o dela, serve para o gradient do Banner */
  --corDefault: #f16136;
  --corDefaultDark: #f16136;
  /* Cor Bot�o */
  --corButtonBanner: #364573;
  /* Usado para a borda do n�mero no Banner */
  --corDefaultOpacity: #ffffff;
  /* Cor dos �cones */
  --corDefaultIcons: #f16136;
  /* Cor do Rodap� */
  --corFooter: #364573;
  /* Usado para a borda no rodap� */
  --corDefaultIconsOpacity: rgba(255, 255, 255, 0.15);
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: auto;
}

.video-background {
  position: absolute; inset: 0; z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  z-index: -1;
  width: 100%;
  height: 100%;
}

#background-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.3);
  pointer-events: none;        /* evita abrir o player ao tocar */
  user-select: none;
}

input {
  background: #FFF;
  border: 1px solid #d8e3ef;
  padding: 12px;
  font-family: 'medium', 'Helvetica', Arial, sans-serif;
  font-size: 1.6rem;
  width: 100%;
  border-radius: 3px;
}

select {
  background: #FFF;
  border: 1px solid #d8e3ef;
  padding: 12px;
  font-family: 'medium', 'Helvetica', Arial, sans-serif;
  font-size: 1.6rem;
  height: 47px;
  width: 100%;
  border-radius: 3px;
  margin-top: 5px;
}

@keyframes button-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(56, 182, 255, 0.35);
  }

  45% {
    transform: scale(1.1);
    box-shadow: 0 0 28px rgba(56, 182, 255, 0.7);
  }

  70% {
    transform: scale(1.04);
    box-shadow: 0 0 18px rgba(56, 182, 255, 0.55);
  }
}


.button button{
  background: #000754;
  color: #FFF;
  border-radius: 30px;
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  display: block;
  width: 100%;
  border: 0;
  cursor: pointer;
  padding: 14px;
  transition: 0.2s filter;  
}

.button:hover {
  filter: brightness(80%);
}

/* ====== Base da seção ====== */
.title-section{
  --stagger: .035s;      /* atraso entre letras (H1) */
  --wipe-bg: #ffffff;    /* cor do "wipe" do parágrafo (ponha a cor do fundo) */
  --shine: rgba(255,255,255,.65);
  display: grid;
  gap: 8px;
  overflow: hidden;
  text-align: center;     /* centraliza o conteúdo de texto */
  place-items: center;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  white-space: normal;          /* permite quebra normal entre palavras */
  word-break: normal;           /* não quebra no meio da palavra */
  overflow-wrap: anywhere; 
  
}
.title-section p{
  color: #000754
}
/* ====== H1 - Split Reveal (tipo CodePen: Splitted text reveal) ====== */
.title-section .reveal-title{
  display: inline-block;
  line-height: 1.05;
  will-change: transform, opacity;
}

.title-section .reveal-title .char{
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  animation: splitUp .6s cubic-bezier(.2,.7,0,1) forwards;
  animation-delay: calc(var(--i) * var(--stagger));
}

@keyframes splitUp{
  to{
    transform: translateY(0%);
    opacity: 1;
  }
}

/* ====== Parágrafo - Text Revealing (tipo CodePen: CSS TEXT REVEALING) ====== */
.title-section .reveal-sub{
  position: relative;
  display: inline-block;
  opacity: 0;                      /* aparece depois do wipe */
  animation: subFade .2s linear forwards;
  animation-delay: var(--p-delay, .9s);
}

/* “wipe” passando por cima do texto */
.title-section .reveal-sub::after{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--wipe-bg);
  transform-origin: left;
  animation: wipe 1s cubic-bezier(.77,0,.18,1) forwards;
  animation-delay: var(--p-delay, .9s);
}

/* brilho diagonal opcional, tipo highlight */
.title-section .reveal-sub::before{
  content: "";
  position: absolute;
  inset: -10% -20%;
  background: linear-gradient(120deg, transparent 0%, var(--shine) 30%, transparent 60%);
  transform: translateX(-120%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: shine 1.15s cubic-bezier(.77,0,.18,1) forwards;
  animation-delay: calc(var(--p-delay, .9s) + .05s);
}

@keyframes wipe{
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}
@keyframes subFade{
  to { opacity: 1; }
}
@keyframes shine{
  to { transform: translateX(120%); }
}

/* Acessibilidade: reduz movimento se preferido pelo usuário */
@media (prefers-reduced-motion: reduce){
  .title-section .reveal-title .char,
  .title-section .reveal-sub,
  .title-section .reveal-sub::after,
  .title-section .reveal-sub::before{
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


.back {
  width: 60px;
  height: 50px;
  background: #d8e3ef;
  color: #495458;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 0;
  transition: background 0.3s;
}

.back:hover {
  background: #c0ccd8;
  color: #495458;
}

.row-flexbox-center{
  display: flex;
  justify-content: center !important;
  margin-top: 24px !important;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 0 auto;           /* garante centralização do contêiner */
  text-align: center;        /* fallback */
}

/* Garante que o botão não ocupe 100% aqui */
.row-flexbox-center .button-modal{
  width: auto;
  margin: 0 auto;            /* centraliza o item no flex se precisar */
}

.button-modal {
  position: relative;
  isolation: isolate;                 /* permite brilhar atrás sem vazar */
  background: #02014b;
  color: #fff;
  text-decoration: none !important;
  border-radius: 40px;
  font-size: 1.9rem;
  font-family: 'poppins', sans-serif;
  display: block;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  padding: 20px 80px;

  /* transições + pulso base */
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 10px 24px rgba(44,1,160,.28), inset 0 -2px 0 rgba(255,255,255,.12);
  animation: btn-glow-pulse 2.2s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 10px 24px rgba(44,1,160,.28), inset 0 -2px 0 rgba(255,255,255,.12);
  animation: btn-glow-pulse 2.2s ease-in-out infinite;
}

/* Aura que expande (anel de brilho) */
.button-modal::before{
  content:"";
  position:absolute;
  inset:-8px;                          /* ligeiramente maior que o botão */
  border-radius: inherit;
  z-index:-1;                          /* atrás do botão */
  box-shadow: 0 0 0 0 rgba(44,1,160,.55);
  animation: btn-pulse-ring 2.4s ease-out infinite;
  pointer-events:none;
}

/* Sheen (faixa de luz) no hover */
.button-modal::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  left:-120%;                          /* começa fora à esquerda */
  width:50%;
  transform: skewX(-20deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 45%,
    rgba(255,255,255,0) 100%
  );
  filter: blur(1px);
  border-radius: inherit;
  pointer-events:none;
}

/* Hover: mais brilho + anima o sheen passando */
.button-modal:hover,
.button-modal:focus-visible{
  transform: translateY(-1px);
  filter: brightness(1.08) saturate(1.05);
  box-shadow:
    0 14px 36px rgba(12, 1, 160, 0.45),
    0 0 24px rgba(76, 63, 255, 0.55),
    inset 0 -3px 0 rgba(4, 2, 119, 0.14);
}

.button-modal:hover::after,
.button-modal:focus-visible::after{
  animation: btn-sheen .9s ease forwards;
}

/* Active: resposta rápida no clique */
.button-modal:active{
  transform: translateY(0) scale(.98);
  box-shadow: 0 10px 24px rgba(44,1,160,.35), inset 0 -2px 0 rgba(255,255,255,.12);
}

/* ===== Keyframes ===== */
@keyframes btn-glow-pulse{
  0%,100%{
    transform: translateZ(0) scale(1);
    box-shadow: 0 10px 24px rgba(44,1,160,.28), inset 0 -2px 0 rgba(255,255,255,.12);
  }
  50%{
    transform: translateZ(0) scale(1.035);
    box-shadow:
      0 16px 40px rgba(44,1,160,.5),
      0 0 26px rgba(110,63,255,.6),
      inset 0 -2px 0 rgba(255,255,255,.14);
  }
}

@keyframes btn-pulse-ring{
  0%{
    opacity:.55;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(44,1,160,.55);
  }
  70%{
    opacity:0;
    transform: scale(1.25);
    box-shadow: 0 0 0 24px rgba(44,1,160,0);
  }
  100%{
    opacity:0;
  }
}

@keyframes btn-sheen{
  0%  { left:-120%; }
  100%{ left:120%; }
}

/* Acessibilidade: reduz animações se o usuário preferir */
@media (prefers-reduced-motion: reduce){
  .button-modal,
  .button-modal::before{
    animation: none !important;
  }
  .button-modal{
    transition: none;
  }
}


.button-modal:hover {
  filter: brightness(80%);
}

/*-----------------------------------------------------------------------------
  Header
-----------------------------------------------------------------------------*/
#section_home {
  background: none !important;
}

/* Header base */
header {
  width: 100%;
  padding: 40px 4%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: .5s;
}

header.rolagem {
  background-color: #fff;
  padding: 20px 2%;
}

header.rolagem a,
header.rolagem i {
  color: #000754;
}

header i {
  font-size: 30px;
  color: #fff;
}

/* Lists inside header */
header ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 48px);
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

header ul li {
  display: inline-block;
  margin: 0 40px;
}

header ul li a {
  color: #fff;
  text-decoration: none;
}

/* Containers and logos */
.container_responsive {
  max-width: 1280px;
  margin: auto;
  overflow: hidden;
}
.banner .header-top{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 8px;
}

 #logo,
  .logo_desktop img,
  header .logo_desktop img,
  header .header-top img {
    height: 86px !important;     /* altere p/ 48px, 64px, etc. se quiser */
    max-height: 86px !important;
    width: auto !important;       /* mantém proporção */
    margin-inline: auto;          /* centraliza */
  }
.logo_desktop {
  display: block;
}

.logo-desktop-alt {
  display: none;
}

#header.rolagem .logo_desktop {
  display: none;
}

#header.rolagem .logo-desktop-alt {
  display: block;
}

@media (max-width: 768px) {
  .banner .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.4rem;
  }

  .banner .hero-content .text-banner {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .banner .hero-content .text-banner p {
    font-size: clamp(2rem, 4.2vw, 3.2rem) !important; 
    line-height: 1.25;
    margin: 8px auto 0;
  }
  .banner .hero-content .text-banner h1{
    font-size: 3rem !important;   /* mantém o h1 do mobile */
    line-height: 1.0;
    margin: 0 0 8px;
  }

  .banner .hero-content .text-banner h1 > strong{
    display: block;
    color: #38b6ff;
    font-weight: 900;
    font-size: clamp(5rem, 17vw, 6.5rem) !important; /* escala responsiva, máximo 6.5rem */
    line-height: 1.05;
  }

  #container_footer {
    display: none;
  }

  #mobile_box {
    display: flex;
  }

  .section-boxs{
    /* top/bottom maior e laterais com gutter responsivo */
    padding: 0px clamp(20px, 6vw, 32px) !important;
  }

  /* opcional: um respiro extra dentro da grade/lista */
  .section-boxs .lists-box{
    padding-inline: clamp(8px, 3vw, 16px);
  }

  .section-boxs .title-section span {
    color: #000754;
  }

  .section-boxs .title-section p {
    color: #000754;
  }

  .lists-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .lists-box li {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(56, 182, 255, 0.08);
    border: 1px solid rgba(56, 182, 255, 0.3);
    border-radius: 14px;
    padding: 18px 20px;
  }

  .lists-box li img {
    width: 56px;
    height: auto;
    flex-shrink: 0;
  }

  .lists-box li .text-list-box span,
  .lists-box li .text-list-box p {
    color: #ffffff;
  }

 .section-list{
    padding: 56px clamp(20px, 6vw, 32px) !important; /* top/bottom 56px, laterais responsivas */
  }

  /* opcional: respiro extra interno para a lista */
  .section-list .lists{
    padding-inline: clamp(8px, 3vw, 16px);
  }


  .section-list .title-section span {
    color: #000754;
  }

  .section-list .title-section p {
    color: #000754;
  }

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

  .lists li {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(56, 182, 255, 0.08);
    border: 1px solid rgba(56, 182, 255, 0.3);
    border-radius: 14px;
    padding: 20px;
  }

  .lists li .product {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .lists li .product span,
  .lists li .description p {
    color: #ffffff;
  }

  .lists li.first-li {
    display: none !important;
  }
}

/* Desktop nav */
.nav-desktop {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Mobile nav base */
.nav-links {
  display: none;
}

.nav-links li:hover {
  background-color: #0045c7;
  transform: scale(1.03);
}

.nav-links.active {
  display: block;
}

/* Mobile logo */
.logo_responsive {
  display: block;
  margin: auto;
  width: 450px;
}

@media (min-width: 769px) {
  .logo_responsive {
    display: none !important;
  }
}


header.header-page {
  position: static;
  padding: 0;
  margin: 0;
  width: 100%;
}

.header-page .header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}


.header-page .header-top img {
  height: 70px;
}

.required {
  border: 1px solid red !important;
}

.input-true {
  border: 1px solid #3ccf7a !important;
}


/*-----------------------------------------------------------------------------
  Banner
-----------------------------------------------------------------------------*/

.banner {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3rem;
}

.banner .container>#container_footer {
  width: 100%;
  margin: 2rem 0;
}

#container_footer {
  background: none;
  width: 100%;
  margin: 2rem 0;
}

#container_footer footer {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

#container_footer footer .box-banner {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.banner .box-banner {
  display: flex;
}

.banner .box-banner:last-child .number {
  padding: 0 4px;
}

.banner .box-banner .number {
  max-width: 50px;
  font-size: 5rem;
  font-family: 'bold', Arial, Helvetica, sans-serif;
  color: #38b6ff;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .box-banner span {
  color: #fff;
  font-size: 2.2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
}

.banner .box-banner p {
  color: #fff;
  font-size: 1.8rem;
  font-family: 'regular', Arial, Helvetica, sans-serif;
  margin-top: 15px;
  opacity: 0.9;
}


#mobile_box {
  background: rgb(11, 14, 24);
  background: linear-gradient(0deg, rgba(11, 14, 24, 1) 0%, rgba(9, 9, 24, 1) 100%);
  display: none;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 10px;
}

#mobile_container {
  display: flex;
  flex-direction: column;
  padding: 10px;

}

#mobile_box .box-banner {
  display: flex;
  max-width: 300px;
}

#mobile_box .box-banner .number {
  font-size: 5rem;
  font-family: 'bold', Arial, Helvetica, sans-serif;
  color: #38b6ff;
  margin-right: 20px;
}

#mobile_box .box-banner span {
  color: #fff;
  font-size: 2.2rem;
  font-family: 'bold', Arial, Helvetica, sans-serif;
  margin-bottom: 1rem;
}

#mobile_box .box-banner p {
  color: #fff;
  font-size: 1.8rem;
  font-family: 'regular', Arial, Helvetica, sans-serif;
  margin-top: 15px;
  margin-bottom: 15px;
  opacity: 0.9;
}

/*-----------------------------------------------------------------------------
  Section com Boxs
-----------------------------------------------------------------------------*/
.section-boxs {
  background: #f7f8fa;
  min-height: 400px;
}

.lists-box {
  margin: auto;
  width: 100%;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;



}

.lists-box li {
  background: #FFF;
  border: 1px solid #d8e3ef;
  padding: 30px;
  border-radius: 10px;

  display: flex;
}

.lists-box li .text-list-box {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.lists-box li i {
  width: 60px;
  height: 30px;
  font-size: 4.0rem;

  color: #38b6ff;
}

.lists-box li .text-list-box span {
  font-size: 2.0rem;
  color: #000754;
  font-family: 'bold';
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Section Ratings */

.lists-box li .text-list-box p {
  font-size: 1.6rem;
  color: #72909b;
  margin-top: 15px;

}


.section-action-ratings {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}


.title-section-action span {
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  font-style: italic;
}

.title-section-action i {
  color: #FFF220;
}

.title-section-action h2 {
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
  font-style: 'bold';
  text-align: center;
}

.card-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-box img {
  height: 230px;
}

.card-box li {
  background: #FFF;
  border: 1px solid #d8e3ef;
  padding: 20px;
  margin-bottom: 2rem;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;

}

#mobile_section_ratings {
  display: none;
}

/*-----------------------------------------------------------------------------
  Section com Listas
-----------------------------------------------------------------------------*/
.section-list {
  background: #FFF;
  padding: 100px 0;
}


.lists li {
  display: flex;
  flex: 1;
  border-bottom: 1px solid #d8e3ef;
  padding: 20px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lists li.first-li .product span {
  padding-left: 45px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
}

.lists li.first-li .description p {
  font-family: 'bold', Arial, Helvetica, sans-serif;
}

.lists li .product {
  max-width: 335px;
  width: 100%;

  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.lists li .product span {
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #000754;
}

.lists li .product i {
  margin-right: 20px;
  font-size: 2.5rem;
  color: #000754;
}

.lists li .description {
  flex: 1;
}

.lists li .description p {
  font-size: 2rem;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  color: #323232;
}




#text_description {
  display: flex;
  justify-content: space-between;
  background: none;
  color: #FFF;
}

.info-img {
  display: block;
  border-top: 1px solid #d8e3ef;

}

.info-img img {
  height: 400px;
}

.info-description {
  background: none;

}

.details {
  margin-bottom: 2rem;
  display: block;
  max-width: 500px;
}

.summary-infos {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  background: #FFF;
  color: #000;
  padding: 1rem;
  border-radius: 5px;
  min-width: 500px;
  max-width: 500px;
}

.summary-infos-title {
  font-size: 2.0rem;
  color: #212c38;
  font-family: 'bold';
}

.summary-infos-title i {
  color: #fcfbff;
}

.summary-infos i {
  margin-right: 1rem;
  background: #d62435;
  padding: 5px;
  border-radius: 5px;
}

.summary-infos .icon {
  display: flex;
  align-items: center;
  color: #FFF;
  background: #d62435;
  margin-left: 10px;
  font-size: 9px;
  padding-left: 8px;
  padding-right: 8px;
  border: none;
  border-radius: 100%;
}


.details summary::-webkit-details-marker {
  display: none;
}


.summary-infos .icon::before {
  content: '\f067';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}


.details[open] .icon::before {
  content: '\f068';
}

.summary-infos-text {
  margin-top: 1rem;
  font-size: 1.8rem;
  background: #FFF;
  color: #323232;
  padding: 1rem;
  border-radius: 5px;


}

.row-flexbox-center {
  display: flex;
  justify-content: space-between;
  /* bot?o ? esquerda, ?cone ? direita */
  align-items: center;
  gap: 20px;
  /* espa?o opcional entre eles */
}

/* ?cone do WhatsApp redondo */
.whatsapp-icon {
  width: 50px;
  height: 50px;
  background-color: #25d366;
  /* cor oficial do WhatsApp */
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 24px;
  transition: background-color 0.3s ease;
}

.whatsapp-icon:hover {
  background-color: #1ebe5d;
}

.container-footer {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.container-footer h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.box-infos-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFF;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 2rem;
  text-align: left;
}

.box-infos-footer span {
  padding: 10px;
  font-size: 1.8rem;
  max-width: 500px;
  border-bottom: 1px solid #d8e3ef;
}

#info_footer_span {
  color: #FFF;
  background: #d62435;
  border: none;
}

#btn-span {
  font-size: 1.8rem;
}

.btn-cotacao span {
  font-size: 1.5rem;
  color: #FFF;
}


/*-----------------------------------------------------------------------------
  Modal
-----------------------------------------------------------------------------*/
.modal-content {
  padding: 30px;
  border-radius: 15px !important;
}

.modal-content  span {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  flex: 1;
  display: flex;
  justify-content: center;
}

/*-----------------------------------------------------------------------------
  Responsive
-----------------------------------------------------------------------------*/
/* iPad */

/* iPad */
@media (min-width: 1170px) {
  .lists-box {
    grid-template-columns: repeat(3, minmax(30%, 1fr));
  }

}


@media (max-width: 1000px) {
  #img-rating {
    height: 220px;
  }
}

@media (max-width: 970px) {

  html {
    font-size: 50%;
  }





  .banner .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .banner .hero-content .text-banner p {
    font-size: 3rem;
    padding-bottom: 2rem;
  }

  #text_description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #mobile_section_ratings {
    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .section-action-ratings {
    display: none;
  }

  #mobile_card_box {
    gap: 1rem;
  }


}


@media (max-width: 880px) {

  .section-action-ratings {
    display: none;
  }

  .card-box {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    background: none;

    gap: 1rem;
  }


}

/* iPad */
.container-footer h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}


.box-infos-footer span {
  padding: 10px;
  font-size: 1.8rem;

}

#info_footer_span {
  background: #000754
}

@media (min-width: 769px){
  .btn-cotacao{
    display: none !important;
  }
}

@media (max-width: 768px) {
  .btn-cotacao {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 420px;
    display: flex;
    padding: 0 16px;
    box-sizing: border-box;
    z-index: 999;

  }

  .btn-cotacao .row-flexbox-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 40px;
  }

  .btn-cotacao .button-modal {
    width: 100%;
    font-size: 1.6rem;
    padding: 14px 24px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: #01024d;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: filter 0.25s ease;
  }

  .btn-cotacao .button-modal {
    width: 100%;
    font-size: 1.6rem;
    padding: 14px 24px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: #38b6ff;
    color: #ffffff;
    border: none;
    cursor: pointer;
  }
}

@media (max-width: 560px) {
  .box-infos-footer span {
    padding: 10px;
    font-size: 1.8rem;
    max-width: 400px;
  }

  #btn-span {
    font-size: 1.4rem;
    padding: 10px;
  }

  .btn-cotacao span {
    font-size: 1.5rem;
    color: #FFF;
  }

  #mobile_title_ratings span {
    font-size: 2rem;
  }

  #mobile_title_ratings h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 460px) {
  .box-infos-footer span {
    padding: 10px;
    font-size: 1.8rem;
    max-width: 300px;
  }

  #mobile_title_ratings {
    font-size: 1.4rem;
  }
}




.banner footer .box-banner {
  flex: 1 1 220px;
  justify-content: flex-start;
}



#container_footer footer .box-banner {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
}

/* Banner layout adjustments */
.banner .hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.banner .hero-content .text-banner {
  flex: 1 1 320px;
  max-width: 560px;
}

.banner .hero-content .box-call-to-action-form {
  flex: 0 0 340px;
  width: 100%;
}



.banner .hero-content .text-banner,
.banner .hero-content .text-banner h1,
.banner .hero-content .text-banner p {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
   hyphens: none !important;           /* desliga o hífen automático */
  -webkit-hyphens: none !important;
  -ms-hyphens: none !important;
  word-break: keep-all !important;    /* só quebra em espaços */
  overflow-wrap: normal !important;   /* não quebra no meio da palavra */
  white-space: normal !important;
  text-wrap: balance;
  
}

.banner .hero-content {
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .banner .hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2.4rem;
  }

  .banner .hero-content .text-banner {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .banner .hero-content .text-banner h1 {
    font-size: 3.7rem; /* aumenta o tamanho da fonte */
  line-height: 1;  /* diminui o espaçamento entre as linhas */
  font-weight: 700;
  
  }

  .banner .hero-content .text-banner p {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }
  @media (max-width: 900px){
  .banner .hero-content .text-banner{
    max-width: 100%;
    text-align: center;
  }

  .banner .hero-content .text-banner h1{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(2.6rem, 6vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: 0;
    margin: 0 0 .6rem;
    text-transform: none;

    /* evita hifenização e quebras estranhas */
    -webkit-hyphens: none !important;
    hyphens: none !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    text-wrap: balance;
  }

  /* destaque do trecho em <strong> (corrige 'font-size: rem;') */
  .banner .hero-content .text-banner h1 strong{
    display: block;          /* quebra em linha própria no mobile */
    color: #38b6ff;
    font-weight: 900;
    font-size: 6.5rem;
    line-height: 1.1;
  }

  .banner .hero-content .text-banner h2{
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: clamp(2.2rem, 5.6vw, 3.2rem);
    line-height: 1.15;
    margin: .2rem 0 0;
  }

  .banner .hero-content .text-banner p{
    font-size: clamp(1.5rem, 3.8vw, 2rem);
    line-height: 1.35;
    margin: .4rem 0 0;
  }


  .banner .hero-content {
    flex: 1 1 100%;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }

  #container_footer footer {
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
  }

  #container_footer footer .box-banner {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .btn-cotacao {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 420px;
    display: flex;
    padding: 0 16px;
    box-sizing: border-box;
    z-index: 999;
  }

  .btn-cotacao .row-flexbox-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 40px;
  }

  .btn-cotacao .button-modal {
    width: 100%;
    font-size: 1.6rem;
    padding: 14px 24px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: green;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: filter 0.25s ease;
  }

  body {
    padding-bottom: 96px;
  }
}



@media (max-width: 560px) {
  .banner {
    padding: 40px 0;
  }

  .banner .hero-content  {
    max-width: 100%;
    padding: 20px;
  }

  #title_formbox {
    font-size: 1.6rem;
    padding: 12px;
  }
}


@media (max-width: 768px) {
  .btn-cotacao {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 420px;
    display: flex;
    padding: 0 16px;
    box-sizing: border-box;
    z-index: 999;
  }

  .btn-cotacao .row-flexbox-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    width: 100%;
    padding-top: 40px;
  }

  .btn-cotacao .button-modal {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    font-size: 2.5rem;
    padding: 14px 24px;
    border-radius: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .btn-cotacao .button-modal .wa-icon {
    position: absolute;
    left: 16px;
    font-size: 2.2rem;
  }

  body {
    padding-bottom: 96px;
  }
}




@media (min-width: 769px) {
  .btn-cotacao {
    display: none !important;
  }
  .banner .hero-content .text-banner h1 strong{
  font-size: 5.8rem;
  line-height: 1.1;
  font-weight: 900;
  color: #38b6ff;
}
/* Esconde o selo gratuito do Elfsight */
a[href*="elfsight.com/google-reviews-widget"],
a[href*="elfsight.com"][title="Remove Elfsight logo"] {
  display: none !important;
  visibility: hidden !important;
}

}

/* Centraliza e limita a logo */
.banner .header-top{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 8px;
}

#logo{
  display: block;
  height: clamp(42px, 8vw, 84px); /* controla o tamanho da logo */
  width: auto;                    /* mantém proporção */
  margin-inline: auto;            /* garante centralização */
}

/* Caso exista alguma largura fixa anterior (ex.: .logo_responsive) */
.logo_responsive{
  width: auto !important;
  height: clamp(42px, 8vw, 84px) !important;
}
@media (max-width: 480px){
  #logo{ height: 75px; }
}
#background-image{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  filter:brightness(.3);
  z-index:-1;
  pointer-events:none;
}
}
#background-image{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  filter:brightness(.3);
  z-index:-1;
  pointer-events:none;
}

/* ==== Título: mesmas regras para desktop e mobile ==== */
.banner .hero-content .text-banner{
  /* mantém suas cores e família já definidas acima */
  max-width: 100%;
}

.banner .hero-content .text-banner h1{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(3.0rem, 6vw, 5.2rem); /* escala do mobile ao desktop */
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0 0 .6rem;

  /* evita hífen/quebras estranhas em todas as plataformas */
  -webkit-hyphens: none !important;
  hyphens: none !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  text-wrap: balance;
}

.banner .hero-content .text-banner h1 strong{
  display: block;          /* mesmo visual do mobile também no desktop */
  color: #38b6ff;
  font-weight: 900;
  font-size: inherit;
  line-height: 1.1;
}

.banner .hero-content .text-banner h2{
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.15;
  margin: .2rem 0 0;
}

.banner .hero-content .text-banner p{
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.35;
  margin: .4rem 0 0;
}

.word {
  --i: attr(data-i number);
}
footer {
      background: transparent;
      text-align: center;
      padding: 30px 15px;
      font-size: 14px;
      color: white;
    }
footer a {
      color: white;
      text-decoration: none;
    }
footer a:hover {
      text-decoration: underline;
    }
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Playfair+Display:wght@700&family=Work+Sans:wght@400;500;600;700&display=swap');


.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.carousel-slide {
  flex-shrink: 0;
  padding: 0 0.75rem;
  box-sizing: border-box;
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-slide {
    width: 100%;
  }
}

/* Desktop */
@media (min-width: 769px) {
  .carousel-slide {
    width: 33.333333%;
  }
}

.star {
  color: #FBBC04;
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.nav-button {
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.nav-button:hover { transform: scale(1.1); }
.nav-button:active { transform: scale(0.95); }

.dot {
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot:hover { transform: scale(1.3); }

/* Styles */

.modern-card {
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.98));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.5);
}

.minimal-card { border-left: 4px solid; }

.elegant-card {
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.05);
}

.corporate-card {
  border: 2px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.quote-icon {
  font-size: 2.5rem;
  opacity: .2;
  font-family: Georgia, serif;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn .5s ease-out; }

@view-transition { navigation: auto; }

/* Reviews carousel: tighten slide padding (reduce "rolagem" space) */
.reviews-carousel .carousel-slide {
  padding: 0 0.5rem !important;
}

@media (max-width: 768px) {
  .reviews-carousel .carousel-slide {
    padding: 0 0.25rem !important;
  }
}

/* List cards: reduce spacing to page edges */
.section-boxs {
  padding: 48px 16px;
}

.lists-box {
  grid-gap: 16px;
}

@media (max-width: 768px) {
  .section-boxs {
    padding: 36px 12px !important;
  }

  .lists-box {
    grid-gap: 12px;
  }

  .reviews-carousel .star {
    font-size: 1.6rem;
  }
}

/* Ajuste: cards da seção de benefícios com padding menor */
.lists-box li {
  padding: 20px;
}

@media (max-width: 768px) {
  .lists-box li {
    padding: 14px 16px;
  }
}
