* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: #FF0000 solid 2px; */
}

:root {
  --bk-color: #000;
  --font-color: #fff;
  --sec-color: #0095FF;
}

@font-face {
  font-family: 'montserrat';
  src: url(../assets/fonts/Montserrat-VariableFont_wght.woff2);
  font-display: swap;
}

@font-face {
  font-family: 'bebas';
  src: url(../assets/fonts/BebasNeue-Regular.woff2);
  font-display: swap;
}

body,
html {
  overflow-x: hidden;
}

body {
  background: var(--bk-color);
  font-family: 'montserrat';
  color: var(--font-color);
}

p {
  font-size: clamp(16px, 3vw, 22px);
  font-family: 'montserrat';
}



h1 {
  font-size: clamp(42px, 4vw, 90px);
  font-weight: 400;
}

h2 {
  font-size: clamp(40px, 3vw, 90px);
  font-weight: 400;
}

h3 {
  font-size: clamp(20px, 5vw, 18px);
  font-weight: 400;
}

h4 {
  font-weight: 100;
}

/* auxiliares */
.small {
  font-size: clamp(10px, 4vw, 14px);
}

.grow {
  font-size: clamp(60px, 5vw, 100px);
}

.grower {
  font-size: clamp(50px, 4vw, 60px);
}

.blue {
  color: var(--sec-color);
}

.tin {
  font-weight: 400;
}

.all--center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.container {
  padding-top: 5%;
  max-width: min(1200px, 90vw);
  margin: 0 auto;
  height: 100%;
  gap: 30px;
}

.f--column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.bebas {
  font-family: 'bebas';
  font-weight: 100;
}

.border--top {
  border-top: var(--sec-color) solid 1px;
}

.border--bottom {
  border-bottom: solid 1px var(--font-color);
}

.button {
  background: var(--sec-color);
  border: none;
  cursor: pointer;
  margin-top: 20px;
  color: #fff;
  font-weight: 600;
  padding: 18px;
  font-size: clamp(16px, 3vw, 18px);
  border-radius: 10px;
  width: 400px;
  transition: .2s;
  border: var(--sec-color) 1px solid;
  font-family: 'montserrat';
}

.button:hover {
  background-color: transparent;
  color: var(--sec-color);
  transition: .5s;
}

.button-check {
  background: var(--sec-color);
  border: none;
  cursor: pointer;
  margin-top: 20px;
  color: #fff;
  font-weight: 600;
  padding: 18px;
  font-size: clamp(16px, 3vw, 18px);
  border-radius: 10px;
  width: 400px;
  transition: .2s;
  border: var(--sec-color) 1px solid;
  font-family: 'montserrat';
}

.button-check:hover {
  background-color: transparent;
  color: var(--sec-color);
  transition: .5s;
}

.white {
  color: var(--bk-color);
}

.f--column {
  display: flex;
  flex-direction: column;
}

.d--flex {
  display: flex;
}

.tittle {
  font-weight: 800;
  font-family: 'bebas';
}

.sub--title {
  padding: 15px;
  border-radius: 50px;
  border: var(--font-color) solid 1px;
}

.font {
  font-family: 'bebas';
}

.borders {
  border: 1px solid black;
  border-radius: 20px;
  padding: 20px;
}

/* hero */

#hero {
  background-image: url(/assets/images/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 140vh;
}

#hero .box {
  width: 50%;
  text-align: center;
  top: 300px;
  position: relative;
}

#first .container {
  padding-top: 350px;
}

#first {
  text-align: center;
}

footer {
  text-align: center;
  padding-bottom: 30px;
}

/* modal */

#modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

#modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 149, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 0.5rem;
  color: #fff;
  width: 90%;
  max-width: 400px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

#modal[style="display: none"],
#modal-overlay[style*="display: none"] {
  display: none;
}

#close-modal-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

.left {
  margin-top: -20px;
}

/* Formulário */
#popup-form label {
  display: flex;
  flex-direction: column;
  margin-top: 0.85rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

#popup-form input[type="text"],
#popup-form input[type="email"],
#popup-form input[type="tel"] {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-size: 1rem;

}

input:focus {
  outline: none;
}


#popup-form .button {
  width: 100%;
  margin-top: 1.2rem;
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 20px;
  border: none;
  color: #fff;
  background-color: #1E2017;
  font-family: "Montserrat";
}

#modal .modal-header button {
  color: var(--font-color);
  width: 5px;
}

#modal .modal-header {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}

#modal p {
  text-align: center;
  margin-bottom: 20px;
  font-size: medium;
}

#first .box__mob {
  display: none;
}

/* vide */

.box__video video {
  width: 100%;
  margin-top: 60px;
  border-radius: 20px;
}

#obrigado .container {
  display: flex;
  align-items: center;
  justify-content: start;
}

#obrigado {
  height: 100vh;
  background-image: url(/workshop/assets/image/hero-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#obrigado a {
  text-decoration: none;
  text-align: center;
}

#obrigado .box__info {
  width: 45%;
  text-align: left;
}



@media(max-width:1240px) {

  .button {
    width: 100%;
  }

  #obrigado {
    background-image: none;
    background-image: url(/workshop/assets/image/trava-bk.png);
    background-position: top;
  }

  #obrigado .box__info {
    width: 100%;
    text-align: center;
    position: relative;
  }

  #hero {
    background-image: url(/assets/images/hero-bg-mobile.png);
    background-size: contain;
    background-position: top;
    min-height: 100vh;
  }

  #hero .box {
    width: 100%;
    top: 50px;
  }

  #first .container {
    padding-top: 20px;
  }

  #first img {
    width: 100%;
  }

  #first .box__image {
    display: none;
  }

  #first .box__mob {
    display: flex;
    background-image: url(/assets/images/a-mobile.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 35vh;
    width: 100%;
  }

  footer img {
    margin-top: 50px;
    width: 50%;
  }

  .box__video video {
    width: 100%;
    border-radius: 20px;

  }
}