@charset "UTF-8";
/*
  Centraliza
*/
/*
Calculo automatico da largura
*/
/*
Margins e paddins responsivos
*/
/*
Font size responsiva para titulos. De 33 a 999;
*/
/*
Font size responsiva para subtitulos. De 24 a 32;
*/
/*
Font size responsiva para paragrafo. De 18 a 24;
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", "nunito-sans-v2", sans-serif;
  color: rgb(40, 38, 38);
  background-color: #ffffff;
  line-height: 1.5;
}

body {
  font-size: 16px;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  color: rgb(40, 38, 38);
}

.section-title {
  font-size: 32px;
  text-transform: uppercase;
}

.section-title--center {
  text-align: center;
}

.section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.section--light {
  background-color: #ffffff;
}

.section--gray {
  background-color: rgb(204, 204, 204);
}

.section--blue {
  background-color: rgb(0, 119, 189);
  color: #ffffff;
}

.container {
  width: 100%;
  max-width: 1300px;
  padding: 0 120px;
  box-sizing: border-box;
  margin: 0 auto;
}
@media (max-width: 1366px) {
  .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 1200px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 1000px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 450px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 350px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.hidden {
  opacity: 0;
  filter: blur(10px);
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.hidden.to-left {
  -webkit-transform: translateX(5vw);
  -moz-transform: translateX(5vw);
  -ms-transform: translateX(5vw);
  -o-transform: translateX(5vw);
  transform: translateX(5vw);
}
.hidden.to-right {
  -webkit-transform: translateX(-5vw);
  -moz-transform: translateX(-5vw);
  -ms-transform: translateX(-5vw);
  -o-transform: translateX(-5vw);
  transform: translateX(-5vw);
}
.hidden.to-top {
  -webkit-transform: translateY(5vh);
  -moz-transform: translateY(5vh);
  -ms-transform: translateY(5vh);
  -o-transform: translateY(5vh);
  transform: translateY(5vh);
}
.hidden.to-bottom {
  -webkit-transform: translateY(-5vh);
  -moz-transform: translateY(-5vh);
  -ms-transform: translateY(-5vh);
  -o-transform: translateY(-5vh);
  transform: translateY(-5vh);
}

.show {
  opacity: 1;
  filter: blur(0);
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-transform: translateX(0) translateY(0) !important;
  -moz-transform: translateX(0) translateY(0) !important;
  -ms-transform: translateX(0) translateY(0) !important;
  -o-transform: translateX(0) translateY(0) !important;
  transform: translateX(0) translateY(0) !important;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 10;
  background-color: #ffffff;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 5px;
  padding-bottom: 5px;
}
.site-header__right {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1100px) {
  .site-header__right {
    gap: 20px;
  }
}
.site-header {
  /* quando menu aberto no mobile */
}
.site-header.is-menu-open .main-nav {
  display: block;
}

/* LOGO */
.logo img {
  display: block;
  width: 245px;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.logo img:hover {
  opacity: 0.6;
}
@media (max-width: 1100px) {
  .logo img {
    width: 200px;
  }
}
@media (max-width: 600px) {
  .logo img {
    width: 160px;
  }
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 70px;
  list-style: none;
}
@media (max-width: 1100px) {
  .main-nav__list {
    gap: 40px;
  }
}

.main-nav__link {
  text-decoration: none;
  font-size: 15px;
  text-transform: uppercase;
  color: rgb(40, 38, 38);
  font-weight: 700;
  transition: color 0.2s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.main-nav__link:hover {
  opacity: 0.6;
}

/* REDES SOCIAIS */
.header-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-social__link img {
  width: 39px;
  height: 39px;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.header-social__link img:hover {
  opacity: 0.6;
}
@media (max-width: 1100px) {
  .header-social__link img {
    width: 30px;
    height: 30px;
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: rgb(40, 38, 38);
  margin: 3px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ======= RESPONSIVO ======= */
@media (max-width: 850px) {
  .site-header__right {
    gap: 12px;
  }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }
  .header-social {
    display: none;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    display: none;
    z-index: 15;
  }
  .main-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .main-nav__item {
    width: 100%;
  }
  .main-nav__link {
    display: block;
    width: 100%;
    padding: 10px 40px;
  }
  /* animação simples do icone hambúrguer quando menu aberto */
  .site-header.is-menu-open .nav-toggle__line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .site-header.is-menu-open .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }
  .site-header.is-menu-open .nav-toggle__line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}
.site-footer {
  background-color: rgb(40, 38, 38);
  color: #ffffff;
  padding: 15px 0;
  text-align: center;
}
.site-footer p {
  line-height: 1.3em;
  text-align: center;
  font-size: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  min-height: 680px;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 1;
}
.hero__slide--active {
  opacity: 1;
}
.hero__content {
  position: relative;
  z-index: 3;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero__form-wrapper {
  margin-right: 60px;
}
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.hero__arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}
.hero__arrow--prev {
  left: 20px;
}
.hero__arrow--next {
  right: 20px;
}

/* ===== HERO RESPONSIVO ===== */
@media (max-width: 992px) {
  .hero {
    min-height: 540px;
  }
  .hero__content {
    min-height: 540px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 420px;
  }
  .hero__content {
    min-height: 420px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero__form-wrapper {
    margin: 0;
  }
  .hero__arrow {
    display: none;
  }
}
.features {
  background-color: rgb(0, 119, 189);
  padding: 25px 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  align-items: start;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.feature-item__icon img {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
}
.feature-item__text {
  font-size: 16px;
  line-height: 1.4;
  color: #ffffff;
}
@media (max-width: 900px) {
  .feature-item__text br {
    display: none !important;
  }
}
.feature-item__text strong {
  font-weight: 700;
}

@media (max-width: 800px) {
  .features {
    padding: 32px 0;
  }
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
  }
  .feature-item__icon img {
    width: 48px;
    margin-bottom: 10px;
  }
  .feature-item__text {
    font-size: 15px;
  }
}
/* Mobile: 1 coluna */
@media (max-width: 420px) {
  .features {
    padding: 28px 0;
  }
  .features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-item {
    max-width: 260px;
    margin: 0 auto; /* centraliza o bloco na tela */
  }
  .feature-item__icon img {
    width: 44px;
  }
  .feature-item__text {
    font-size: 14px;
  }
}
.about {
  padding: 40px 0 40px;
  background: radial-gradient(circle at top left, #f3f3f3 0, #ffffff 55%);
}
.about__inner {
  display: flex;
  align-items: center;
}
.about__images {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 54%;
}
.about__image img {
  width: 100%;
  display: block;
}
.about__card {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  margin-left: -5%;
}

.about-card {
  background-color: rgb(40, 38, 38);
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  width: 100%;
}
.about-card__accent {
  display: block;
  width: 75px;
  height: 10px;
  background-color: #db473d;
  margin-bottom: 16px;
}
.about-card__title {
  font-size: 40px;
  line-height: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ffffff;
}
.about-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.about-card__highlight {
  font-size: 23px !important;
  font-weight: 600;
  margin-bottom: 0 !important;
}

@media (max-width: 992px) {
  .about-card {
    padding: 20px 25px;
    max-width: 100%;
  }
  .about-card__title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .about-card p {
    font-size: 14px;
  }
  .about-card__highlight {
    font-size: 18px !important;
  }
}
/* Mobile: empilha card e imagens */
@media (max-width: 768px) {
  .about__inner {
    gap: 30px;
  }
  .about__images {
    width: 50%;
  }
  .about__card {
    margin: 0;
    width: 50%;
  }
  .about-card {
    width: 100%;
    max-width: 420px;
    padding: 20px;
  }
  .about-card__title {
    font-size: 20px;
  }
  .about-card p {
    font-size: 13px;
  }
  .about__images {
    max-width: 480px;
    margin: 0 auto;
  }
}
/* Mobile menor: aperta um pouco mais os espaços */
@media (max-width: 650px) {
  .about__inner {
    flex-direction: column;
  }
  .about__images {
    width: 100%;
    max-width: 100%;
    order: 2;
  }
  .about__card {
    margin: 0;
    width: 100%;
    order: 1;
  }
  .about-card {
    max-width: 100%;
  }
}
.products-highlight {
  background-color: rgb(0, 119, 189);
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
}
.products-highlight__header {
  margin-bottom: 40px;
}
.products-highlight__title {
  font-size: 40px;
  line-height: 1.1em;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.01em;
}
.products-highlight__underline {
  display: inline-block;
  width: 60px;
  height: 6px;
  background-color: #db473d;
  margin-top: 20px;
}
.products-highlight__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  justify-items: center;
  margin-bottom: 32px;
}
.products-highlight__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.products-highlight__more {
  font-size: 40px;
  line-height: 1.1em;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}
.products-highlight .btn--outline-red {
  background-color: #ffffff;
  color: #db473d;
  transition: inherit;
  display: initial;
  font-size: 28px;
  font-weight: bold;
  font-style: normal;
  color: #d9473c;
  transition: all 0.2s ease, visibility 0s;
  border-radius: 7px;
  background: #ffffff;
  border: 3px solid #d9473c;
  padding: 8px 15px;
}
.products-highlight .btn--outline-red:hover {
  border-radius: 20px;
}

.product-line__image {
  margin-bottom: 10px;
}
.product-line__image img {
  display: block;
  max-width: 230px;
  border-radius: 16px;
  width: 100%;
}
.product-line__title {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
}

@media (max-width: 992px) {
  .products-highlight__title {
    font-size: 30px;
  }
  .product-line__image img {
    max-width: 200px;
  }
}
/* Mobile: 1 coluna */
@media (max-width: 768px) {
  .products-highlight__title {
    font-size: 26px;
  }
  .products-highlight__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .products-highlight__more {
    font-size: 30px;
  }
  .products-highlight .btn--outline-red {
    font-size: 22px;
    padding: 5px 10px;
  }
}
/* Mobile pequeno */
@media (max-width: 450px) {
  .products-highlight__title {
    font-size: 20px;
  }
  .products-highlight__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }
  .product-line__image img {
    max-width: 200px;
  }
  .products-highlight__more {
    font-size: 20px;
  }
  .products-highlight .btn--outline-red {
    font-size: 18px;
  }
}
.brands {
  background-color: #ffffff;
  padding: 30px 0;
  overflow: hidden;
}
.brands__wrapper {
  width: 100%;
  overflow: hidden;
}
.brands__track {
  display: flex;
  width: max-content;
  animation: brands-slide 25s linear infinite;
  gap: 20px;
}
.brands__items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.brands img {
  height: 80px;
  width: auto;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 768px) {
  .brands img {
    height: 60px;
  }
}

@keyframes brands-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.contact {
  background-color: #ffffff;
  padding: 30px 0;
}
.contact__header {
  text-align: center;
  margin-bottom: 32px;
}
.contact__title {
  font-size: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1.1em;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.contact__underline {
  display: inline-block;
  width: 60px;
  height: 6px;
  background-color: #db473d;
}
.contact__inner {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 768px) {
  .contact__inner {
    flex-direction: column;
  }
}
.contact__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 30%;
  max-width: 300px;
}
@media (max-width: 768px) {
  .contact__brand {
    order: 2;
    width: 100%;
  }
}
.contact__logo {
  max-width: 275px;
  height: auto;
  display: block;
}
@media (max-width: 992px) {
  .contact__logo {
    max-width: 200px;
  }
}
.contact .contact__store_wrapper {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .contact .contact__store_wrapper {
    order: 1;
    width: 100%;
  }
}
.contact .contact__store_wrapper p {
  font-size: 18px;
  line-height: 1.5em;
}
.contact__store-name {
  font-size: 18px;
  font-weight: 700;
  color: #db473d;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.3em;
}
.contact__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 4px;
  font-size: 18px;
}
@media (max-width: 550px) {
  .contact__cols {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.contact__label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
}
.contact a {
  display: table;
  font-size: 18px;
  line-height: 1.5em;
  color: #282626;
  text-decoration: none;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.contact a:hover {
  opacity: 0.6;
}
.contact .header-social {
  display: flex !important;
}

/* Mobile: tudo empilhado */
@media (max-width: 768px) {
  .contact__title {
    font-size: 22px;
  }
  .contact__store-name {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.floating-badge {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 90;
}
.floating-badge img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .floating-badge img {
    max-width: 200px;
  }
}
@media (max-width: 450px) {
  .floating-badge img {
    max-width: 150px;
  }
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.btn--primary {
  background-color: #db473d;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: rgb(206.0617391304, 48.86, 38.2382608696);
  transform: translateY(-2px);
}
.btn--outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid currentColor;
}
.btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.product-card {
  background-color: #ffffff;
  color: rgb(40, 38, 38);
  text-align: center;
  padding: 24px;
  border-radius: 4px;
}
.product-card__image img {
  max-width: 100%;
  margin-bottom: 16px;
  display: block;
}
.product-card__title {
  font-weight: 700;
}

.hero-form {
  width: 360px;
  padding: 32px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}
.hero-form__title {
  font-size: 37px;
  line-height: 1.2em;
  text-align: center;
  text-transform: uppercase;
  color: rgb(40, 38, 38);
  margin-bottom: 8px;
}
.hero-form__subtitle {
  font-size: 16px;
  color: #000000;
  margin-bottom: 16px;
}
.hero-form__form {
  margin-top: 8px;
}
.hero-form__group {
  margin-bottom: 12px;
}
.hero-form__group input,
.hero-form__group select {
  width: 100%;
  height: 60px;
  padding: 10px 25px;
  border-radius: 10px;
  border: 2px solid rgb(0, 119, 189);
  font-family: "Nunito Sans", "nunito-sans-v2", sans-serif;
  font-size: 16px;
  outline: none;
  background-color: #ffffff;
  appearance: none;
}
.hero-form__group select {
  background-image: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23000000' height='20' width='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><polygon points='5,7 15,7 10,13'/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 20px;
}
.hero-form__group input::placeholder {
  color: rgb(40, 38, 38);
}
.hero-form__group select:invalid {
  color: rgb(40, 38, 38);
}
.hero-form__group input:focus,
.hero-form__group select:focus,
.hero-form__group input:hover,
.hero-form__group select:hover {
  border-color: #000000;
  border: 3px solid;
}
.hero-form__button {
  width: 100%;
  font-size: 22px;
  border: 2px solid #fff;
  height: 80px;
  border-radius: 10px;
}

/* HERO FORM RESPONSIVO */
@media (max-width: 768px) {
  .hero-form {
    width: 100%;
    max-width: 360px;
  }
  .hero-form__title {
    font-size: 26px;
  }
  .hero-form__subtitle {
    font-size: 14px;
  }
  .hero-form__group input, .hero-form__group select {
    height: 55px;
  }
  .hero-form__button {
    height: 70px;
  }
}
@media (max-width: 500px) {
  .hero-form__group input, .hero-form__group select {
    height: 50px;
    font-size: 14px;
  }
  .hero-form__button {
    font-size: 16px;
    height: 60px;
  }
}
.contact-form__group {
  margin-bottom: 16px;
}
.contact-form__group label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.contact-form__group input,
.contact-form__group textarea {
  width: 100%;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid rgb(204, 204, 204);
  font-family: "Nunito Sans", "nunito-sans-v2", sans-serif;
  font-size: 14px;
}
.contact-form__group textarea {
  resize: vertical;
}

/*# sourceMappingURL=main.css.map */
