/* AREA RESERVADA PARA LAYOUT GERAL DO SITE */

/* START HTML STRUCT */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


main, header, footer, nav, section, .container {
    position: relative;
    z-index: 1;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.full-width-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  /* padding: 0rem 0; */
}


header {
    background: #FFFF;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

footer {
    background: #DD8240;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

form button {
    background: #DD404D;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

form button:hover {
    background: #c43a43;
}

/* END HTML STRUCT */

/* START NAV AREA */

nav, footer {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.nav-link-hover {
  color: #FFFF;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.nav-link-hover span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* controla a distância entre o texto e o sublinhado */
  width: 100%;
  height: 2px;
  background-color: #FFFF;
  transform: scaleX(0);
  transition: transform 0.15s ease;
}

.nav-link-hover:hover span::after {
  transform: scaleX(1);
}

.nav-link-hover:hover {
  color: #FFFF;
}

/* END NAV AREA */

/* START BODY AREA */
body {
    margin: 0;
    background: #f7f6ee;
    color: #000;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    padding-top: 41px; /* altura da navbar */
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.5);
    pointer-events: none;
    z-index: 0;
}
/* END BODY AREA */

/* 
    START TEXTO PARA AS SECTIONS 
    E HREF PARA DIVS ANCHOR
*/

.sectionStyled {
  padding: 2rem;
  margin-bottom: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.anchor-offset {
  position: relative;
  top: -90px; /* altura da sua navbar */
  height: 0;
  visibility: hidden;
}

section h2 {
  color: #000;
  font-weight: bold;
  font-size: 20px;
}

.destaqueImpacto{
  font-size: 50px;
}

/* 
    END TEXTO PARA AS SECTIONS 
    E HREF PARA DIVS ANCHOR
*/

/* START CONFIGURAÇÃO DE TEXTOS */

.labelDetail {
  background-color: #B92A79;
  border-radius: 50px;
  color: #FFFF;
  padding: 0.5rem 0.5rem 0.5rem; 
  border: none;
  width: 60%;
  text-align: center;
  font-size: 1.3rem;
  font-family: "Rubik Dirt", system-ui;
  font-weight: 400;
  font-style: normal;
  /* transition: all 0.15s ease; */
}

.destaque{
  text-decoration: underline;
}

/* END CONFIGURAÇÃO DE TEXTOS */

/* START CONFIGURAÇÃO BOTÕES */
.btn-success,
.btn-success:focus {
  background-color: #25d366 !important;
  border-color: #25d366 !important;
  color: #000;
}

.btn-success:hover {
    color: white;
}
/* END CONFIGURAÇÃO BOTÕES */