.elementor-kit-8{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:020px;}.elementor-element{--widgets-spacing:020px 020px;--widgets-spacing-row:020px;--widgets-spacing-column:020px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@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 *//* ===== RESET GLOBAL ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BASE HTML/BODY ===== */
html {
  height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh; /* corrige barra mobile */
  min-height: -webkit-fill-available; /* Safari */
  overflow-x: hidden;
  position: relative;
  font-family: sans-serif;
}

/* ===== CORREÇÃO DE OVERFLOW GLOBAL ===== */
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* ===== IMAGENS E MÍDIA ===== */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* ===== TIPOGRAFIA RESPONSIVA ===== */
h1 {
  font-size: clamp(24px, 5vw, 48px);
}

h2 {
  font-size: clamp(20px, 4vw, 36px);
}

h3 {
  font-size: clamp(18px, 3vw, 28px);
}

p {
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.5;
}

/* evita quebra de layout por texto */
h1, h2, h3, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ===== LINKS ===== */
a {
  text-decoration: none;
  color: inherit;
}

/* ===== LISTAS ===== */
ul, ol {
  list-style: none;
}

/* ===== FORMULÁRIOS ===== */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* ===== CONTAINER PADRÃO ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== SEÇÕES ===== */
section {
  width: 100%;
  max-width: 100%;
}

/* ===== FLEX E GRID SAFE ===== */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.grid {
  display: grid;
}

/* ===== EVITA ELEMENTOS ESTOURANDO A TELA ===== */
div, section, header, footer, main {
  max-width: 100%;
}

/* ===== HERO / FULL HEIGHT ===== */
.full-height {
  min-height: 100vh;
  min-height: 100dvh;
}

/* ===== HEADER FIXO (SE USAR) ===== */
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* compensação de header fixo */
.has-fixed-header {
  padding-top: 80px; /* ajuste conforme seu header */
}

/* ===== CORREÇÕES MOBILE ===== */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  /* evita zoom estranho em inputs no iOS */
  input, textarea {
    font-size: 16px;
  }

}

/* ===== BUG COMUM: 100vw ===== */
/* Evite usar 100vw — use 100% */
/* Se tiver algo quebrando, pode forçar: */

.full-width-safe {
  width: 100%;
  max-width: 100%;
}

/* ===== SCROLLBAR (opcional) ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}/* End custom CSS */