@charset "UTF-8";
/*@use 'vars' with (
  $primary: #1e40af,   // override opcional
  $radius: .6rem
);*/
@layer base, utilities, mobile, layout;
@layer base {
  /* Box sizing consistente */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  /* Remove margens padrão */
  * {
    margin: 0;
  }
  html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
  }
  html, body {
    height: 100%;
  }
  body {
    min-height: 100svh;
    text-rendering: optimizeSpeed;
    background-color: #EFEFEF;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #51555E;
    font-family: Kanit, sans-serif;
  }
  /* Mídia responsiva por padrão */
  img, svg, video, canvas, audio, iframe {
    display: block;
    max-width: 100%;
  }
  img, svg, video {
    height: auto;
  }
  /* Controles herdam tipografia */
  button, input, textarea, select {
    font: inherit;
    color: inherit;
  }
  /* Foco visível e elegante */
  :focus-visible {
    outline: 2px solid Highlight;
    outline-offset: 2px;
  }
  section {
    padding: 6rem 0;
  }
  @media (max-width: 768px) {
    section {
      padding: 3rem 0;
    }
  }
  /* Respeita usuários com redução de movimento */
  @media (prefers-reduced-motion: reduce) {
    html:focus-within {
      scroll-behavior: auto;
    }
    *, *::before, *::after {
      animation: none !important;
      transition: none !important;
    }
  }
  /* Base Mobile First */
  @media screen and (max-width: 768px) {
    .flex {
      flex-direction: column;
      gap: 1.5rem;
    }
  }
  /* kanit-300 - latin */
  /* kanit-300 - latin */
  /* kanit-300 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Kanit";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/kanit-v16-latin-300.woff2") format("woff2"), url("../fonts/kanit-v16-latin-300.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  /* kanit-regular - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Kanit";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/kanit-v16-latin-regular.woff2") format("woff2"), url("../fonts/kanit-v16-latin-regular.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  /* kanit-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Kanit";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/kanit-v16-latin-600.woff2") format("woff2"), url("../fonts/kanit-v16-latin-600.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  /* kanit-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Kanit";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/kanit-v16-latin-700.woff2") format("woff2"), url("../fonts/kanit-v16-latin-700.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
}
@layer layout {
  h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-family: Kanit, sans-serif;
    color: #000000;
    font-weight: 700;
    line-height: 1.2;
  }
  h1, .h1 {
    font-size: 3.5rem;
  }
  h2, .h2 {
    font-size: 3em;
  }
  h3, .h3 {
    font-size: 1.75em;
  }
  h4, .h4 {
    font-size: 1.5em;
  }
  h5, .h5 {
    font-size: 0.83em;
  }
  h6, .h6 {
    font-size: 0.67em;
  }
  a {
    color: inherit;
    text-decoration: underline;
    background-color: transparent;
  }
  a:hover {
    color: #EF3251;
  }
  .copy {
    font-size: 1.15rem;
    font-weight: 300;
    margin: 0 0 3rem 0;
  }
  .color {
    color: var(--color-primary);
  }
  .color-secondary {
    color: #022B3A;
  }
  .color-tertiary {
    color: #26C6DA;
  }
  .stroke {
    letter-spacing: 2px;
    color: #EFEFEF;
    text-shadow: 2px 0 black, -2px 0 black, 0 2px black, 0 -2px black, 2px 2px black, -2px -2px black, 2px -2px black, -2px 2px black;
  }
  .caption {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 400;
    line-height: 1.25rem;
  }
  .btn {
    background-color: #EF3251;
    color: #fff;
    border-radius: 0;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease, color 0.3s ease;
  }
  .btn:hover {
    background-color: #253132;
    color: #FFF;
    transform: scale(1.15);
  }
  .btn .icon {
    font-size: 2rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .btn img {
    width: 2rem;
    height: 2rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .btn.outline {
    background-color: transparent;
    border: 2px solid #022B3A;
    color: #022B3A;
  }
  .btn.outline:hover {
    background-color: #EF3251;
    color: #FFF;
  }
  .btn.tertiary {
    background-color: #26C6DA;
    color: #fff;
  }
  .btn.tertiary:hover {
    background-color: #022B3A;
    color: #FFF;
  }
  .btn.zap {
    background-color: #42c50f;
  }
  .highlight {
    font-weight: 500;
    background-color: #26C6DA;
    display: inline-block;
    padding: 0 0.25rem;
    margin: 0 0.125rem;
    border-radius: 0.25rem;
  }
  :root {
    --color-primary: #EF3251;
  }
  .tpl__logo {
    width: 150px;
    height: auto;
  }
  .tpl__header {
    position: absolute;
    width: 100%;
    padding: 1rem 0;
    z-index: 100;
  }
  .tpl__header .btn {
    border: 1px solid #fff;
    background-color: #42c50f;
  }
  .tpl__hero {
    padding: 0;
    height: 95svh;
    position: relative;
    background-image: linear-gradient(to left, #D85156 0 30%, rgba(0, 0, 0, 0) 30%);
  }
  .tpl__hero .container {
    height: 100%;
    background-image: url("../images/quadros.svg");
    background-repeat: no-repeat;
    background-size: 500px auto;
    background-position: right center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
  }
  .tpl__hero h1 {
    line-height: 4rem;
    margin: 0 0 2rem;
    text-transform: uppercase;
    max-width: 60%;
  }
  .tpl__hero p {
    max-width: 50%;
  }
  .tpl__hero * {
    z-index: 1;
  }
  .tpl__hero .hero__image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    z-index: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .tpl__hero .hero__image img {
    -o-object-fit: contain;
       object-fit: contain;
    max-width: 90%;
    height: 90%;
    animation: bounce 3s ease-in-out infinite;
  }
  .tpl__clientes {
    border: 1px solid #ccc;
    padding: 3rem 0;
  }
  .tpl__dor {
    background: url("../images/bg-problema.webp") right center no-repeat;
    background-size: 40% auto;
  }
  .tpl__dor ul.problems {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
  }
  .tpl__dor ul.problems li {
    font-size: 1.25rem;
    padding: 1rem 0 1rem 3rem;
    margin: 0;
    background: url("../images/asterisk.svg") no-repeat left/contain;
    background-size: 40px 40px;
  }
  .tpl__dor h2, .tpl__dor ul {
    max-width: 60%;
  }
  .tpl__solucao {
    padding-bottom: 0;
  }
  .tpl__solucao h2 {
    text-align: center;
    align-items: center;
    font-size: 5rem;
    line-height: 5.5rem;
    position: relative;
    margin-bottom: 0;
    flex-wrap: wrap;
    text-wrap: wrap;
    justify-content: center;
  }
  .tpl__solucao h2 span.color {
    display: inline-block;
  }
  .tpl__solucao h2 .space {
    display: inline-block;
    width: 100px;
    height: 60px;
    margin: 0 1rem;
    position: relative;
  }
  .tpl__solucao h2 .space::after {
    content: "";
    position: absolute;
    top: -35px;
    left: -20px;
    display: block;
    background-image: url("../images/cerebro.webp");
    width: 140px;
    height: 140px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .tpl__solucao h2 .imgq {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-65%, -65%);
    display: block;
    background-image: url("../images/cerebro.webp");
    width: 140px;
    height: 170px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .tpl__beneficios .cards {
    display: grid;
    gap: 4rem 4rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  .tpl__beneficios .card {
    display: flex;
    align-items: flex-start; /* alinha pelo topo */
    gap: 12px; /* espaço entre ícone e texto */
    max-width: 600px; /* opcional, só p/ não ficar gigante */
  }
  .tpl__beneficios .card__icon {
    flex-shrink: 0; /* impede o ícone de encolher */
    width: 48px;
    height: 48px;
    position: relative;
  }
  .tpl__beneficios .card__icon img {
    width: 100%;
    height: auto;
    display: block;
  }
  .tpl__beneficios .card__icon:before {
    position: absolute;
    top: -7px;
    left: -7px;
    content: "";
    width: 60px;
    height: 60px;
    background: rgba(239, 50, 81, 0.05);
    border-radius: 50%;
  }
  .tpl__beneficios .card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .tpl__beneficios .card__body h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    flex: 1;
    font-weight: 600;
    text-transform: uppercase;
  }
  .tpl__beneficios .card__body p {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.4;
    font-weight: 300;
  }
  .tpl__autoridade {
    background-image: linear-gradient(#022b3a, #405e69);
    color: white;
  }
  .tpl__autoridade .container {
    background: transparent url("../images/selo-ia.webp") no-repeat 100% 5%;
  }
  .tpl__autoridade h2 {
    color: white;
  }
  .tpl__autoridade h2, .tpl__autoridade p {
    max-width: 70%;
    margin-bottom: 3rem;
  }
  .tpl__autoridade ul {
    padding: 0;
    list-style: none;
    display: grid;
    max-width: 90%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
  }
  .tpl__autoridade ul li {
    padding: 0;
    color: white;
    text-align: left;
  }
  .tpl__autoridade ul li strong {
    display: block;
    text-align: left;
    color: #EF3251;
    font-size: 6rem;
    line-height: 3rem;
    font-weight: 600;
    text-wrap: nowrap;
    text-shadow: 0 0 16px rgba(0, 0, 0, 0.115);
  }
  .tpl__autoridade ul li span {
    color: white;
    font-size: 2rem;
    line-height: 2rem;
    display: block;
    padding-left: 2rem;
    text-align: left;
    margin-top: 0;
    margin-bottom: 1.2rem;
    font-weight: 300;
  }
  .tpl__pacote .grid {
    grid-template-columns: 3fr 1fr;
  }
  .tpl__pacote .obs {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 1.5rem 1rem;
    margin: 0 4rem 0 0;
    font-size: 2rem;
    line-height: 2rem;
  }
  .tpl__pacote .obs span {
    display: block;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1rem;
  }
  .tpl__pacote ul.offer {
    padding: 0;
    margin-bottom: 2rem;
  }
  .tpl__pacote ul.offer li {
    font-size: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0.75rem 0 1rem 3.5rem;
    background: transparent url("../images/check-red.svg") no-repeat left center;
    background-size: 48px 48px;
  }
  .tpl__pacote .price-card {
    background-image: linear-gradient(#405e69, #022b3a);
    padding: 24px;
    color: white;
    border-radius: 16px;
    width: 360px;
    position: relative;
    font-family: sans-serif;
    transition: all 1s ease;
    clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 60px, 100% 100%, 0 100%);
  }
  .tpl__pacote .price-card:hover {
    transform: scale(1.05);
  }
  .tpl__pacote .price-card .btn.cta {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0;
    border-radius: 0.4rem;
    justify-content: center;
    font-size: 1rem;
  }
  .tpl__pacote .price-card h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #fff;
  }
  .tpl__pacote .price-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #26C6DA;
    text-shadow: 2px 2px 0 rgb(0, 0, 0);
  }
  .tpl__pacote .price-card .price .old {
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    color: white;
    text-shadow: none;
  }
  .tpl__pacote .price-card .price .note {
    color: white;
    text-shadow: none;
    font-size: 1rem;
  }
  .tpl__pacote .price-card hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 1.5rem 0;
  }
  .tpl__pacote .price-card h4 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #ccc;
  }
  .tpl__pacote .price-card ul {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
  }
  .tpl__pacote .price-card ul li {
    background: transparent url("../images/check-red.svg") no-repeat left center;
    background-size: 28px 28px;
    padding: 0.5rem 0 0.5rem 1.95rem;
  }
  .tpl__cta {
    border-top: 1px solid #CCC;
    padding: 4rem 0;
  }
  .tpl__cta .cta__content {
    text-align: center;
    padding: 4rem 2rem;
    background: transparent url("../images/bg-cta.webp") no-repeat center center;
    background-size: cover;
    border-radius: 32px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .tpl__cta .cta__content p {
    font-size: 1.6rem;
    max-width: 60%;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  .tpl__cta .cta__content h2 {
    color: white;
    text-shadow: 4px 4px 16px rgba(0, 0, 0, 0.8);
  }
  .tpl__tarjeta {
    padding: 2rem 0;
    background-image: linear-gradient(45deg, #ef3251, #215daa);
    color: white;
  }
  .tpl__tarjeta span {
    display: inline-flex;
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-right: 2rem;
  }
  .tpl__tarjeta span::before {
    content: "";
    background: transparent url("../images/asterisk.svg") no-repeat center center;
    background-size: contain;
    position: absolute;
    width: 36px;
    height: 36px;
    left: 0;
  }
  .tpl__tarjeta .marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
  }
  .tpl__tarjeta .marquee-inner {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    animation: marquee 35s linear infinite;
  }
  .tpl__tarjeta .marquee-content {
    display: flex;
    flex-shrink: 0;
  }
  .tpl__footer {
    background-image: linear-gradient(#022b3a, #405e69);
    color: white;
    padding: 4rem 0 0;
  }
  .tpl__footer h2, .tpl__footer h3 {
    color: white;
    margin-bottom: 1rem;
  }
  .tpl__footer h2 {
    font-weight: 400;
  }
  .tpl__footer h2 .color {
    font-weight: 700;
    font-size: 6rem;
    line-height: 6rem;
  }
  .tpl__footer h2 small {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1rem;
    text-align: center;
  }
  .tpl__footer h2.small {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6rem;
    margin-top: 2rem;
  }
  .tpl__footer a {
    color: white;
    text-decoration: none;
  }
  .tpl__footer a:hover {
    text-decoration: underline;
  }
  .tpl__footer .talk {
    grid-template-columns: 2fr 1fr;
  }
  .tpl__footer .img-talk {
    max-width: 80%;
  }
  .tpl__footer input, .tpl__footer select, .tpl__footer textarea {
    font-family: Kanit, sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: #1a1a1a;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  .tpl__footer input:focus, .tpl__footer select:focus, .tpl__footer textarea:focus {
    border-color: rgba(255, 255, 255, 0.8);
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5); /* Tailwind's blue-500 at 50% opacity */
  }
  .tpl__footer input::-moz-placeholder, .tpl__footer select::-moz-placeholder, .tpl__footer textarea::-moz-placeholder {
    color: #fff; /* cor do placeholder */
    font-size: 16px; /* tamanho */
    opacity: 1; /* garante visibilidade (alguns browsers aplicam transparência) */
  }
  .tpl__footer input::placeholder, .tpl__footer select::placeholder, .tpl__footer textarea::placeholder {
    color: #fff; /* cor do placeholder */
    font-size: 16px; /* tamanho */
    opacity: 1; /* garante visibilidade (alguns browsers aplicam transparência) */
  }
  .tpl__footer hr {
    margin: 0 0 2rem 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
  .tpl__footer .columns {
    display: flex;
    justify-content: space-between;
  }
  .tpl__footer .columns h3 {
    font-weight: 600;
    font-size: 1.3rem;
  }
  .tpl__footer .columns h3.sub-logo {
    margin-bottom: 2rem;
    font-weight: 500;
  }
  .tpl__footer .columns .logo {
    margin-bottom: 0.5rem;
    max-width: 180px;
  }
  .tpl__footer .columns address {
    font-style: normal;
    color: #ccc;
  }
  .tpl__footer .creditos {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin: 3rem 0 0;
    padding: 1rem 0;
    color: #ccc;
    font-size: 0.875rem;
    text-align: center;
  }
  .tpl__footer ul.menu__vertical li {
    margin-bottom: 0.5rem;
  }
  .tpl__page h1 {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .tpl__page p {
    margin-bottom: 2rem;
  }
  .tpl__page h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .tpl__page .page__header {
    padding: 1rem 0 2rem 0;
    border-bottom: 1px solid #ccc;
  }
  .tpl__page .page__content {
    padding: 2rem 0 2rem 0;
  }
  .tpl__thanks .container {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .tpl__home {
    padding: 6rem 0 3rem;
  }
  .tpl__home ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .tpl__home ul li {
    padding: 0;
    margin: 0;
  }
  .tpl__home a {
    line-height: 2rem;
    display: block;
    border: 1px solid #ccc;
    text-decoration: none;
    text-align: center;
    padding: 0.5rem;
    flex: 1;
  }
  .tpl__home a img {
    width: 90%;
    max-width: 250px;
    aspect-ratio: 1/1;
    margin: 0 auto 1rem;
  }
  h2 {
    text-transform: uppercase;
  }
  .bg-white {
    background-color: #fff;
  }
  .btn {
    text-transform: uppercase;
  }
  .btn.cta {
    padding: 1.5rem 2rem;
    text-transform: uppercase;
    font-size: 1.25rem;
    background: #ef3251 linear-gradient(45deg, #dd1837, #fc5607);
    background-size: 200% 200%;
    transition: all 0.2s;
    animation: pulseGradient 2s ease infinite;
  }
  .faq {
    border-top: 1px solid #ccc;
    padding: 1.5rem 2rem;
  }
  .faq:last-child {
    border-bottom: 1px solid #ccc;
  }
  .faq summary {
    list-style: none;
    cursor: pointer;
  }
  .faq summary::-webkit-details-marker {
    display: none; /* remove marcador padrão */
  }
  .faq .summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .faq .num {
    font-weight: 500;
    margin-right: 16px;
  }
  .faq .title {
    font-weight: 900;
    font-size: 1.4rem;
    flex: 1;
  }
  .faq .arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e5392d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    position: relative;
    transition: all 0.5s ease;
  }
  .faq .arrow::before {
    content: "";
    background: #e5392d url("../images/chevron.svg") no-repeat center center;
    background-size: contain;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    position: absolute;
    font-size: 1.7rem;
    line-height: 1;
    color: white;
  }
  .faq .arrow:hover {
    transform: scale(1.15);
  }
  .faq[open] .arrow::before {
    transform: rotate(90deg); /* anima seta ao abrir */
    display: inline-block;
  }
  .faq .faq__content {
    margin-top: 1.5rem;
    margin-left: 39px;
    padding: 1rem;
    border-radius: 0.25rem;
    color: #444;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.5);
  }
  .faq .tags {
    margin: 0 0 0.75rem 0; /* alinha com o texto */
    font-size: 0.9rem;
    line-height: 1rem;
    font-weight: 400;
    color: #333;
  }
  .faq .tags span {
    margin-right: 16px;
  }
  .customers {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 1px;
  }
  .customers .list {
    display: flex;
    flex-shrink: 0;
    border: 1px solid #ccc;
  }
  .customers .list img {
    width: auto;
    max-width: 160px;
    height: auto;
    margin: 0 auto;
    border-right: 1px solid #ccc;
    filter: grayscale(1);
  }
  .customers .list img:last-child {
    border: 0;
  }
  .customers-track {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    animation: marquee 15s linear infinite;
  }
  @media screen and (max-width: 768px) {
    h2 {
      font-size: 2rem;
    }
    .tpl__header .flex {
      flex-direction: row;
    }
    .tpl__header .btn {
      padding: 0.5rem 1rem;
      font-size: 1rem;
    }
    .tpl__hero {
      height: 100vh;
      background-image: none;
    }
    .tpl__hero .caption {
      font-size: 1rem;
    }
    .tpl__hero .container.flex {
      flex-direction: column-reverse;
    }
    .tpl__hero h1 {
      font-size: 1.75rem;
      line-height: 2.5rem;
      max-width: 98%;
      margin-bottom: 1rem;
    }
    .tpl__hero p {
      display: none;
      font-size: 1.15rem;
      max-width: 98%;
      margin-bottom: 1rem;
    }
    .tpl__hero .btn {
      flex-direction: column;
      gap: 1rem;
      padding: 1rem 0;
      font-size: 1rem;
      line-height: normal;
      width: 80%;
      margin: 0 auto;
      text-align: center;
    }
    .tpl__hero .hero__image {
      margin-top: 5%;
      position: relative;
      height: 35%;
      width: 100%;
      justify-content: center;
    }
    .tpl__hero .hero__content {
      text-align: center;
    }
    .tpl__dor {
      background-image: none;
    }
    .tpl__dor h2, .tpl__dor ul {
      max-width: 100%;
    }
    .tpl__dor ul.problems li {
      font-size: 1.15rem;
    }
    .tpl__solucao h2 {
      font-size: 1.75rem;
      line-height: 2.5rem;
    }
    .tpl__solucao h2 .space {
      height: 45px;
      width: 50px;
    }
    .tpl__solucao h2 .space::after {
      width: 80px;
      height: 80px;
      top: -15px;
    }
    .tpl__autoridade ul {
      max-width: 100%;
      gap: 2rem 1rem;
      grid-template-columns: 1fr 1fr;
    }
    .tpl__autoridade ul li {
      font-size: 1rem;
      text-wrap: wrap;
    }
    .tpl__autoridade ul li strong {
      font-size: 4rem;
      line-height: 2rem;
    }
    .tpl__autoridade ul li span {
      font-size: 1.1rem;
      line-height: 0.75rem;
      margin-bottom: 0.5rem;
    }
    .tpl__autoridade h2, .tpl__autoridade p {
      max-width: 100%;
    }
    .tpl__autoridade .container {
      background-size: 110px 110px;
      background-position: 100% 15%;
    }
    .tpl__pacote ul.offer li {
      font-size: 1.1rem;
      padding-left: 2.5rem;
      background-size: 32px 32px;
    }
    .tpl__pacote .price-card {
      width: 100%;
    }
    .tpl__pacote .price-card .price {
      font-size: 1.75rem;
    }
    .tpl__cta .cta__content h2 {
      font-size: 1.5rem;
    }
    .tpl__cta .cta__content p {
      max-width: 100%;
      font-size: 1.2rem;
    }
    .tpl__cta .cta__content .btn {
      width: 100%;
      padding: 1rem 0;
      text-align: center;
      justify-content: center;
      font-size: 1.1rem;
    }
    .tpl__page .page__header {
      padding: 3rem 0 1rem 0;
    }
    .tpl__page .page__content {
      padding: 1rem 0;
    }
    .tpl__page h1 {
      font-size: 1.5rem;
    }
    .tpl__page h2 {
      font-size: 1.25rem;
    }
    .tpl__thanks .container {
      min-height: 80vh;
    }
    .tpl__footer .talk {
      grid-template-columns: 1fr;
    }
    .tpl__footer .columns {
      flex-direction: column;
    }
    .tpl__footer h2 {
      font-size: 1.15rem;
      line-height: normal;
    }
    .tpl__footer h2 .color {
      font-size: 3rem;
      line-height: 3rem;
    }
    .tpl__footer .form {
      display: block;
      margin-bottom: 4rem;
    }
    .faq {
      padding: 1rem 0;
    }
    .faq .summary-header {
      gap: 0.5rem;
    }
    .faq .title {
      font-size: 1.15rem;
    }
    .faq .tags span {
      margin-right: 0.4rem;
    }
    .faq .arrow {
      width: 32px;
      height: 32px;
    }
    .faq .arrow:before {
      width: 18px;
      height: 18px;
    }
  }
}
@layer utilities {
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .container-fluid {
    max-width: 100%;
  }
  .hidden {
    display: none !important;
  }
  .flex {
    display: flex !important;
  }
  .grid {
    display: grid !important;
  }
  .grid-2-columns {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .grid-3-columns {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .grid-4-columns {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .grid-5-columns {
    grid-template-columns: repeat(5, 1fr) !important;
  }
  .grid-6-columns {
    grid-template-columns: repeat(6, 1fr) !important;
  }
  .block {
    display: block !important;
  }
  .inline-block {
    display: inline-block !important;
  }
  .inline {
    display: inline !important;
  }
  .inline-flex {
    display: inline-flex !important;
  }
  .row {
    flex-direction: row !important;
  }
  .column {
    flex-direction: column !important;
  }
  .text-left {
    text-align: left !important;
  }
  .text-center {
    text-align: center !important;
  }
  .text-right {
    text-align: right !important;
  }
  .text-justify {
    text-align: justify !important;
  }
  .items-center {
    align-items: center !important;
  }
  .justify-center {
    justify-content: center !important;
  }
  .justify-between {
    justify-content: space-between !important;
  }
  .w-full {
    width: 100% !important;
  }
  .h-full {
    height: 100% !important;
  }
  .gap-xs {
    gap: 0.25rem !important;
  }
  .gap-sm {
    gap: 0.5rem !important;
  }
  .gap-md {
    gap: 1rem !important;
  }
  .gap-lg {
    gap: 1.5rem !important;
  }
  .gap-xl {
    gap: 2rem !important;
  }
  .ratio-1x1 {
    aspect-ratio: 1/1 !important;
  }
  .ratio-16x9 {
    aspect-ratio: 16/9 !important;
  }
  .ratio-4x3 {
    aspect-ratio: 4/3 !important;
  }
  .ratio-3x2 {
    aspect-ratio: 3/2 !important;
  }
  .overflow-hidden {
    overflow: hidden !important;
  }
  .columns-1 {
    -moz-column-count: 1 !important;
         column-count: 1 !important;
  }
  .columns-2 {
    -moz-column-count: 2 !important;
         column-count: 2 !important;
  }
  .columns-3 {
    -moz-column-count: 3 !important;
         column-count: 3 !important;
  }
  .columns-4 {
    -moz-column-count: 4 !important;
         column-count: 4 !important;
  }
  .columns-5 {
    -moz-column-count: 5 !important;
         column-count: 5 !important;
  }
  .columns-6 {
    -moz-column-count: 6 !important;
         column-count: 6 !important;
  }
  .flex-wrap {
    flex-wrap: wrap !important;
  }
  .flex-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-none {
    flex: none !important;
  }
  .flex-1 {
    flex: 1 !important;
  }
  .flex-auto {
    flex: auto !important;
  }
  .flex-grow {
    flex-grow: 1 !important;
  }
  .flex-shrink {
    flex-shrink: 1 !important;
  }
  .order-first {
    order: -1 !important;
  }
  .order-last {
    order: 999 !important;
  }
  .order-none {
    order: 0 !important;
  }
  .order-1 {
    order: 1 !important;
  }
  .order-2 {
    order: 2 !important;
  }
  .order-3 {
    order: 3 !important;
  }
  .order-4 {
    order: 4 !important;
  }
  .order-5 {
    order: 5 !important;
  }
  .order-6 {
    order: 6 !important;
  }
  .float-left {
    float: left !important;
  }
  .float-right {
    float: right !important;
  }
  .float-none {
    float: none !important;
  }
  .m-0 {
    margin: 0 !important;
  }
  .mb-0 {
    margin-bottom: 0 !important;
  }
  .mt-0 {
    margin-top: 0 !important;
  }
  .ml-0 {
    margin-left: 0 !important;
  }
  .mr-0 {
    margin-right: 0 !important;
  }
  .mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .p-0 {
    padding: 0 !important;
  }
  .pb-0 {
    padding-bottom: 0 !important;
  }
  .pt-0 {
    padding-top: 0 !important;
  }
  .pl-0 {
    padding-left: 0 !important;
  }
  .pr-0 {
    padding-right: 0 !important;
  }
  .px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  ul.menu__horizontal {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  ul.menu__horizontal li {
    margin-right: 1rem;
  }
  ul.menu__horizontal li:last-child {
    margin-right: 0;
  }
  ul.menu__vertical {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  ul.menu__vertical li {
    margin-bottom: 1rem;
  }
  ul.menu__vertical li:last-child {
    margin-bottom: 0;
  }
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  @keyframes pulseGradient {
    0% {
      background-size: 100% 100%;
      box-shadow: 0 0 0px rgba(239, 50, 81, 0.4);
      transform: scale(1);
    }
    50% {
      background-size: 150% 150%;
      box-shadow: 0 0 20px rgba(252, 86, 7, 0.6);
      transform: scale(1.05);
    }
    100% {
      background-size: 100% 100%;
      box-shadow: 0 0 0px rgba(239, 50, 81, 0.4);
      transform: scale(1);
    }
  }
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px); /* altura do “pulo” */
    }
  }
  .fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
@layer mobile {
  @media screen and (max-width: 768px) {
    h2 {
      font-size: 2rem;
    }
    .tpl__header .flex {
      flex-direction: row;
    }
    .tpl__header .btn {
      padding: 0.5rem 1rem;
      font-size: 1rem;
    }
    .tpl__hero {
      height: 100vh;
      background-image: none;
    }
    .tpl__hero .caption {
      font-size: 1rem;
    }
    .tpl__hero .container.flex {
      flex-direction: column-reverse;
    }
    .tpl__hero h1 {
      font-size: 1.75rem;
      line-height: 2.5rem;
      max-width: 98%;
      margin-bottom: 1rem;
    }
    .tpl__hero p {
      display: none;
      font-size: 1.15rem;
      max-width: 98%;
      margin-bottom: 1rem;
    }
    .tpl__hero .btn {
      flex-direction: column;
      gap: 1rem;
      padding: 1rem 0;
      font-size: 1rem;
      line-height: normal;
      width: 80%;
      margin: 0 auto;
      text-align: center;
    }
    .tpl__hero .hero__image {
      margin-top: 5%;
      position: relative;
      height: 35%;
      width: 100%;
      justify-content: center;
    }
    .tpl__hero .hero__content {
      text-align: center;
    }
    .tpl__dor {
      background-image: none;
    }
    .tpl__dor h2, .tpl__dor ul {
      max-width: 100%;
    }
    .tpl__dor ul.problems li {
      font-size: 1.15rem;
    }
    .tpl__solucao h2 {
      font-size: 1.75rem;
      line-height: 2.5rem;
    }
    .tpl__solucao h2 .space {
      height: 45px;
      width: 50px;
    }
    .tpl__solucao h2 .space::after {
      width: 80px;
      height: 80px;
      top: -15px;
    }
    .tpl__autoridade ul {
      max-width: 100%;
      gap: 2rem 1rem;
      grid-template-columns: 1fr 1fr;
    }
    .tpl__autoridade ul li {
      font-size: 1rem;
      text-wrap: wrap;
    }
    .tpl__autoridade ul li strong {
      font-size: 4rem;
      line-height: 2rem;
    }
    .tpl__autoridade ul li span {
      font-size: 1.1rem;
      line-height: 0.75rem;
      margin-bottom: 0.5rem;
    }
    .tpl__autoridade h2, .tpl__autoridade p {
      max-width: 100%;
    }
    .tpl__autoridade .container {
      background-size: 110px 110px;
      background-position: 100% 15%;
    }
    .tpl__pacote ul.offer li {
      font-size: 1.1rem;
      padding-left: 2.5rem;
      background-size: 32px 32px;
    }
    .tpl__pacote .price-card {
      width: 100%;
    }
    .tpl__pacote .price-card .price {
      font-size: 1.75rem;
    }
    .tpl__cta .cta__content h2 {
      font-size: 1.5rem;
    }
    .tpl__cta .cta__content p {
      max-width: 100%;
      font-size: 1.2rem;
    }
    .tpl__cta .cta__content .btn {
      width: 100%;
      padding: 1rem 0;
      text-align: center;
      justify-content: center;
      font-size: 1.1rem;
    }
    .tpl__page .page__header {
      padding: 3rem 0 1rem 0;
    }
    .tpl__page .page__content {
      padding: 1rem 0;
    }
    .tpl__page h1 {
      font-size: 1.5rem;
    }
    .tpl__page h2 {
      font-size: 1.25rem;
    }
    .tpl__thanks .container {
      min-height: 80vh;
    }
    .tpl__footer .talk {
      grid-template-columns: 1fr;
    }
    .tpl__footer .columns {
      flex-direction: column;
    }
    .tpl__footer h2 {
      font-size: 1.15rem;
      line-height: normal;
    }
    .tpl__footer h2 .color {
      font-size: 3rem;
      line-height: 3rem;
    }
    .tpl__footer .form {
      display: block;
      margin-bottom: 4rem;
    }
    .faq {
      padding: 1rem 0;
    }
    .faq .summary-header {
      gap: 0.5rem;
    }
    .faq .title {
      font-size: 1.15rem;
    }
    .faq .tags span {
      margin-right: 0.4rem;
    }
    .faq .arrow {
      width: 32px;
      height: 32px;
    }
    .faq .arrow:before {
      width: 18px;
      height: 18px;
    }
  }
}
/*# sourceMappingURL=index.css.map */
