.elementor-kit-12{--e-global-color-primary:#242424;--e-global-color-secondary:#54595F;--e-global-color-text:#414141;--e-global-color-accent:#2CA63D;--e-global-color-af5a223:#E9DF16;--e-global-color-21af100:#76DCDE;--e-global-color-2f749fd:#E9FFF7;--e-global-color-b10bff4:#025159;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-weight:600;--e-global-typography-primary-line-height:45px;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Nunito";--e-global-typography-text-font-size:19px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Nunito";--e-global-typography-accent-font-weight:500;}.elementor-kit-12 e-page-transition{background-color:#FFBC7D;}.elementor-kit-12 button,.elementor-kit-12 input[type="button"],.elementor-kit-12 input[type="submit"],.elementor-kit-12 .elementor-button{border-radius:50px 50px 50px 50px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */:root {
  /* CORES PERSONALIZADAS */
  --color-primary: #3DD0B1;
  --color-secondary: #007293;
  --color-accent: #F4D95F;
  --color-highlight: #FDD835;
  --color-differential-bg: #7f6a93;
}

/* Estilos globais e utilitários */
body {
  font-family: 'Nunito', sans-serif;
  color: #4B5563; /* Text-gray-700 ajustado para RGB */
  overflow-x: hidden;
  line-height: 1.625; /* leading-relaxed */
  margin: 0;
  padding: 0;
}
h1, h2 {
  font-family: 'Poppins', sans-serif;
  color: #3d3d3d;
}
h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
}

/* Botão Base e Efeito Hover (Global) */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px; /* text-lg */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); /* shadow-lg */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border: none;
  font-weight: 200;
  font-family: 'Poppins', sans-serif;
  appearance: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 12px 45px;
  border-radius: 60px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Botão Call-to-Action Padrão (Verde) */
.btn-cta {
  background-color: #039d00;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}

/* Efeito HOVER do círculo interno - CTA PADRÃO */
.btn-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(40%, -50%);
  z-index: -1;
  transition: transform 0.4s ease;
}
.btn-cta:hover::after {
  transform: translate(-50%, -50%) scale(3.5);
}

/* Estilo específico para o botão do header (Verde) */
.btn-header {
  background-color: #039d00;
  color: #fff;
  font-weight: 700;
  padding: 8px 45px;
}
.btn-header::after { /* Efeito hover do header */
  content: '';
  position: absolute; top: 50%; right: 0; width: 80px; height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%; transform: translate(40%, -50%); z-index: -1;
  transition: transform 0.4s ease;
}
.btn-header:hover::after {
  transform: translate(-50%, -50%) scale(3.5);
}

/* Ícones de Lista */
.list-icon {
  color: var(--color-primary);
  margin-right: 8px; /* 0.5rem */
  width: 19.2px; /* 1.2em (se 1em=16px) */
  text-align: center;
}

/* Animações (Scroll Reveal) */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fadeIn {
    animation: fadeIn 0.8s ease-out forwards;
}
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* EFEITO DE TRANSIÇÃO (LIFT ON HOVER) */
.interactive-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.interactive-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Estilos para o modal (Deixe no CSS adicional para funcionar em toda a página) */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex; justify-content: center; align-items: center;
  z-index: 2000; opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-content {
  background-color: white; padding: 32px; border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-width: 90%; width: 400px; text-align: center;
  position: relative; transform: translateY(-20px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-content { transform: translateY(0); }
.modal-close-button {
  position: absolute; top: 16px; right: 16px;
  font-size: 24px; cursor: pointer; color: var(--color-secondary);
}

/* Estilos para o Banner de Cookies */
#cookieBanner {
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 16px;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  background-color: #004b57;
}
#cookieBanner.show-banner {
  transform: translateY(0);
}
#cookieBanner a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
}
#cookieBanner .btn-cta {
  padding: 10px 30px;
  font-size: 16px;
}

/* MARCA TEXTO */
mark {
  background: linear-gradient(
    to top,
    rgba(243, 232, 90, 0.55) 0%,
    rgba(243, 232, 90, 0.35) 50%,
    rgba(243, 232, 90, 0.0) 100%
  );
  padding: 2px 4px;
  border-radius: 2px;
  font-weight: 600;
  color: inherit;
  transition: background 0.3s ease;
}
mark:hover {
  background: linear-gradient(
    to top,
    rgba(243, 232, 90, 0.75) 0%,
    rgba(243, 232, 90, 0.45) 50%,
    rgba(243, 232, 90, 0.1) 100%
  );
}

/* TEXTO DECORATIVO */
.sketch-highlight{
  position:relative;
  padding: 2px 25px;
  font-size: 22px;
}
.sketch-highlight:before{
  content:""; z-index:-1; left:0em; top:0em; border-width:2px;
  border-style:solid; border-color:darkblue; position:absolute;
  border-right-color:transparent; width:100%; height:30px;
  transform:rotate(2deg); opacity:0.5; border-radius:0.25em;
}
.sketch-highlight:after{
  content:""; z-index:-1; left:0em; top:0em; border-width:2px;
  border-style:solid; border-color:darkblue; border-left-color:transparent;
  border-top-color:transparent; position:absolute; width:100%;
  height:30px; transform:rotate(-1deg); opacity:0.5; border-radius:0.25em;
}

/* Responsividade de Botões CTA */
@media (max-width: 1024px) {
  .btn-cta { font-size: 18px; padding: 11px 35px; }
}
@media (max-width: 768px) {
  .btn-cta { font-size: 13px; padding: 10px 30px; min-height: 48px; border-radius: 50px; white-space: normal; line-height: 1.3; text-align: center; }
  section#hero .btn-cta, section#solution .btn-cta { font-size: 15px; padding: 9px 25px; }
}
@media (max-width: 480px) {
  .btn-cta { font-size: 14px; padding: 8px 22px; min-height: 44px; }
  .btn-header { font-size: 12px; padding: 6px 16px; }
  .btn-cta::after { width: 50px; height: 50px; }
  .btn-cta:hover::after { transform: translate(-50%, -50%) scale(2.5); }
}

/* Classe isolada para o botão CTA da Hero */
.btn-hero-isolated { font-size: 12px !important; padding: 10px 30px !important; }
@media (min-width: 769px) and (max-width: 1024px) {
  .btn-hero-isolated { font-size: 24px !important; padding: 14px 35px !important; }
}
@media (min-width: 1025px) {
  .btn-hero-isolated { font-size: 17px !important; padding: 14px 35px !important; }
}
.btn-social-proof::after { display: none !important; }/* End custom CSS */