/* Versão 1.0.0 */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* ========================================================
   BASE
======================================================== */
body {
  background-color: #1d1d1d;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

p {
  font-size: 18px;
}

p,
h1,
h2,
h3,
h4,
h5 {
  font-family: "Manrope", sans-serif;
  color: white;
}

.manrope,
p,
a {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.eastman {
  font-family: "Eastman", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.laranja {
  color: #f15a25;
}

.bg-laranja {
  background-color: #f15a25;
}

/* ========================================================
   TÍTULOS PADRONIZADOS
   - titulo-hero: H1 principal (hero/página)
   - titulo-secao: H2 de seção
======================================================== */
.titulo-hero {
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  font-family: "Manrope", sans-serif;
}

.titulo-secao {
  font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  font-family: "Manrope", sans-serif;
}

/* ========================================================
   HEADER / NAV — sticky com transição suave
   - #topo-site: normal flow, rola junto com a página
   - .site-header: position fixed, acompanha o scroll
======================================================== */
.site-header {
  position: fixed;
  top: var(--topo-height, 30px);
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
  transition: top 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.rolling {
  top: 0;
  background-color: #1d1d1d;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.nav {
  -ms-flex-wrap: wrap;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 3px 0;
  width: 100%;
}

nav ul {
  margin: 0;
}

nav ul a {
  font-size: 18px;
  transition: color 0.2s ease;
}

nav ul a:hover {
  background-color: transparent;
}

nav .logo {
  margin: 5px 20px 0;
}

.nav-logo-link {
  height: 60px;
  display: flex;
  align-items: center;
}

.nav-menu-icon {
  width: 22px;
  height: 22px;
  fill: #fff;
  vertical-align: middle;
}

/* Topo de contato */
#topo-site {
  position: relative;
  z-index: 3;
  padding: 5px 0;
  margin-bottom: 0;
}

#topo-site a {
  color: #fff;
  font-size: 12px;
}

.topo-icon {
  width: 14px;
  height: 14px;
  fill: #f15a25;
  vertical-align: middle;
  margin-right: 4px;
  position: relative;
  bottom: 1px;
}

#topo-site a img {
  margin-bottom: -2px;
}

#topo-site-coluna2 {
  overflow: hidden;
  max-height: 21px;
}

/* Sidenav */
#slide-out {
  background-color: #f1f1f1;
}

#slide-out a.active {
  color: #f15a25;
  font-weight: bold;
}

#slide-out .background {
  padding: 20px;
}

/* ========================================================
   BOTÕES DE AÇÃO
======================================================== */
.btn-glass {
  position: relative;
  width: 155px;
  height: 50px;
  margin: 20px;
}

.btn-glass a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  border-radius: 30px;
  color: #fff;
  z-index: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-decoration: none;
  overflow: hidden;
  transition: 0.5s;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  font-family: "Roboto Condensed", sans-serif;
}

.btn-glass:hover a {
  letter-spacing: 3px;
}

.btn-glass a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, .15), transparent);
  transform: skewX(45deg) translateX(0);
  transition: 0.5s;
}

.btn-glass:hover a::before {
  transform: skewX(45deg) translateX(200%);
}

.btn-glass::before,
.btn-glass::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 10px;
  background: #f15a25;
  border-radius: 10px;
  transition: 0.5s;
  transition-delay: 0s;
}

.btn-glass::before {
  bottom: -5px;
}

.btn-glass::after {
  top: -5px;
}

.btn-glass:hover::after {
  top: 0;
  height: 50%;
  width: 80%;
  border-radius: 30px 30px 0 0;
  transition-delay: 0.5s;
}

.btn-glass:hover::before {
  bottom: 0;
  height: 50%;
  width: 80%;
  border-radius: 0 0 30px 30px;
  transition-delay: 0.5s;
}

.btn-glass:nth-child(1)::after,
.btn-glass:nth-child(1)::before {
  background: #f15a25;
  box-shadow: 0 0 5px #f15a25, 0 0 15px #f15a25, 0 0 30px #f15a25, 0 0 60px #f15a25;
}

.button-86,
.button-87,
.button-88,
.button-89 {
  all: unset;
  width: 100px;
  height: 30px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  background: transparent;
  border: none;
  position: relative;
  color: #f0f0f0;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-87 {
  width: 150px;
  height: 40px;
  font-size: 24px;
}

.button-88 {
  width: 220px;
  height: 40px;
  font-size: 25px;
}

.button-89 {
  width: fit-content !important;
  height: 40px;
  font-size: 15px !important;
}

.button-86:hover,
.button-87:hover,
.button-88:hover,
.button-89:hover {
  color: #f15a25 !important;
}

.button-86::after,
.button-86::before,
.button-87::after,
.button-87::before,
.button-88::after,
.button-88::before,
.button-89::after,
.button-89::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.button-86::before,
.button-87::before,
.button-88::before,
.button-89::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #1d1d1d;
  border-radius: 10px;
}

.button-86::after,
.button-87::after,
.button-88::after,
.button-89::after {
  transform: translate(1px, 1px);
  width: 10px;
  height: 10px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

.button-86:hover::before,
.button-87:hover::before,
.button-88:hover::before,
.button-89:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.button-86:hover::after,
.button-87:hover::after,
.button-88:hover::after,
.button-89:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.button-86:active::after,
.button-87:active::after,
.button-88:active::after,
.button-89:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

/* ========================================================
   FOOTER
======================================================== */
footer {
  background-color: #1d1d1d;
  padding-top: 30px;
  /* border-top: 5px solid rgba(0, 0, 0, 0.1); */
}

.itemst {
  margin-left: 35px;
}

#contato-left h2,
#contato-right h3 {
  color: #fff !important;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 2px;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
}

#contato-left p {
  color: white;
  margin-bottom: 30px;
  font-family: 'Roboto Condensed', sans-serif;
}

address {
  color: white;
  font-family: 'Roboto Condensed', sans-serif;
}

address strong {
  font-size: 17px;
}

#contato-info {
  background-image: var(--world-map-url);
  background-repeat: no-repeat;
  background-size: contain;
}

form .form-control {
  background: transparent !important;
  border-radius: 0 !important;
  border-color: rgb(255, 255, 255) !important;
  font-size: 17px !important;
  font-weight: 300 !important;
  padding: 8px 17px !important;
  margin-bottom: 20px !important;
  color: white !important;
  border: 1px solid #ced4da !important;
  width: 100%;
}

form .form-button {
  padding: 10px 20px;
  background-color: #f15a25;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form .form-button:hover {
  opacity: 0.8;
}

::-ms-input-placeholder,
::placeholder {
  color: #7e7e7e;
  opacity: 1;
}

footer form input::placeholder {
  color: #999;
}

#footer-bottom {
  background-color: rgba(0, 0, 0, 0.1) !important;
  padding: 20px 0;
}

#footer-copyright p {
  margin: 0;
  color: white;
}

#footer-copyrights p {
  font-family: 'Roboto Condensed', sans-serif !important;
  text-transform: uppercase !important;
  color: white !important;
}

#footer-menu {
  float: left !important;
  color: white !important;
  font-size: 17px !important;
  font-weight: 300 !important;
}

#footer-menu ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

#footer-menu li {
  display: inline-block;
}

#footer-menu a {
  color: white !important;
  font-size: 17px !important;
  font-weight: 300 !important;
  margin: 0 10px !important;
  text-decoration: none !important;
  font-family: 'Roboto Condensed', sans-serif !important;
  text-transform: uppercase !important;
}

#footer-menu a:hover {
  color: #29ABE2 !important;
}

ul.social-list {
  display: flex !important;
  color: white !important;
  gap: 10px;
}

ul.social-list li a {
  color: white;
  display: flex;
  align-items: center;
}

.social-icon-sm {
  width: 20px;
  height: 20px;
  fill: #fff;
  vertical-align: middle;
}

#btn-white {
  border-color: white !important;
  color: white !important;
}

#btn-white:hover {
  border-color: white !important;
  color: white !important;
}

.btn-general {
  border-width: 2px !important;
  border-radius: 0 !important;
  padding: 10px 20px !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  font-family: 'Roboto Condensed', sans-serif !important;
  color: white !important;
  border-color: white !important;
}

/* ========================================================
   SUBMENU
======================================================== */
.sub-menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 8;
  background-color: white !important;
  color: black;
  box-shadow: var(--sombra-1);
  margin-left: 450px;
  margin-top: -360px;
  transition: margin 0.5s ease-out;
  opacity: 0;
}

.sub-menu.ativo {
  position: fixed;
  margin-top: 0px;
  opacity: 1;
}

.sub-menu a {
  color: black !important;
  padding: 10px 20px 10px 10px;
  font-family: 'Roboto condensed';
  text-transform: uppercase;
  transition: all 0.3s;
}

.sub-menu a:hover {
  color: white !important;
  background-color: var(--cor-principal);
  padding-left: 20px;
  padding-right: 10px;
}

/* ========================================================
   SHAPE DIVIDERS
======================================================== */
.custom-shape-divider-top-1695910736 {
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1695910736 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 68px;
  fill: #3d3d3d;
}

/* ========================================================
   SOCIAL ICONS
======================================================== */
#secao-1 .box-social .social-botao,
.social-botao {
  padding-top: 14px;
  border-radius: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 1) 53%);
}

/* ========================================================
   BOTÃO WHATSAPP FLUTUANTE
======================================================== */
#btn-whatsapp-flutuante {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #00d757;
  text-decoration: none;
}

#btn-whatsapp-flutuante:hover {
  width: 310px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

#btn-whatsapp-flutuante:active {
  transform: translate(2px, 2px);
}

#btn-whatsapp-flutuante .sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#btn-whatsapp-flutuante:hover .sign {
  width: 50px;
  padding-left: 0px;
}

#btn-whatsapp-flutuante .sign svg {
  width: 25px;
  fill: white;
}

#btn-whatsapp-flutuante .text {
  position: absolute;
  right: 0;
  width: 0;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
  white-space: nowrap;
  font-family: "Manrope", sans-serif;
}

#btn-whatsapp-flutuante:hover .text {
  opacity: 1;
  width: calc(100% - 50px);
  padding-right: 10px;
}

.slider-botao {
  border-radius: 20px;
  padding: 10px 20px;
  background-color: #f15a25;
  color: white;

  &:hover {
    background-color: #ff7340;
  }
}

.slider-slim {
  padding: 10px 20px;
  color: white;
  background-color: #197cfe;
  border-radius: 20px;
  margin-left: 10px;

  &:hover {
    background-color: #529af9;
  }
}


/* ========================================================
   RESPONSIVO — MOBILE
======================================================== */

/* Esconde links do nav em telas pequenas (mantém hamburger + logo) */
@media only screen and (max-width: 900px) {

  .nav ul li:nth-child(2),
  .nav ul li:nth-child(3),
  .nav ul li:nth-child(4),
  .nav ul li:nth-child(6),
  .nav ul li:nth-child(7),
  .nav ul li:nth-child(8) {
    display: none;
  }
}

@media only screen and (max-width: 650px) {
  .site-header {
    top: var(--topo-height-mobile, 50px);
  }

  nav .logo {
    margin: 0 20px 0 0;
  }

  #topo-site-coluna2 {
    text-align: right;
  }

  #topo-site-coluna2 span,
  #topo-site-coluna2 a.redes {
    display: none;
  }

  #footer-menu {
    display: none;
  }
}

@media only screen and (max-width: 500px) {
  #topo-site-email {
    display: none;
  }
}

@media only screen and (max-width: 450px) {
  nav .logo {
    margin: 0;
  }

  nav .sidenav-trigger {
    margin: 0;
    padding: 0;
  }

  #topo-site-contato,
  #topo-site-coluna2 {
    width: 50%;
  }

  p {
    font-size: 16px !important;
  }

  .sub-menu {
    margin-left: 0;
    margin-top: -360px;
    opacity: 0;
  }
}
