@charset "UTF-8";
/* Reset básico e moderno */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 100%;
}

html {
  scroll-behavior: auto !important;
}

html,
body {
  height: 100%;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Open Sans", sans-serif;
}

body {
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  position: relative;
  font-family: "Roboto", sans-serif;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  background-color: #c63426;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 4px solid #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  font-family: "Roboto", sans-serif;
}
.header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
}
.header .logo {
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: bold;
  z-index: 10;
}
.header .hamburger {
  display: block;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 10;
}
.header .hamburger span,
.header .hamburger span::before,
.header .hamburger span::after {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}
.header .hamburger span {
  position: relative;
}
.header .hamburger span::before,
.header .hamburger span::after {
  content: "";
  position: absolute;
}
.header .hamburger span::before {
  transform: translateY(-8px);
}
.header .hamburger span::after {
  transform: translateY(8px);
}
.header .hamburger.active span {
  background-color: transparent;
}
.header .hamburger.active span::before {
  transform: rotate(45deg);
}
.header .hamburger.active span::after {
  transform: rotate(-45deg);
}
.header .nav-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.header .nav-menu.active {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #c63426;
}
.header .nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 400;
}
.header .social-link {
  color: #fff;
  font-size: 1rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  transition: background-color 0.3s, color 0.3s;
}
.header .social-link:hover {
  background-color: #fff;
  color: #c63426;
}
@media (min-width: 992px) {
  .header .navbar {
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .header .hamburger {
    display: none;
  }
  .header .nav-menu {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin: 0 auto;
  }
  .header .nav-link {
    font-size: 1rem;
  }
}

.footer {
  background-color: #c63426;
  color: #fff;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  padding: 3rem 1.5rem;
  text-align: center;
}
.footer .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.footer .footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer .nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
}
.footer .social-icons {
  display: flex;
  gap: 1.5rem;
}
.footer .social-icons .social-link {
  color: #fff;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  transition: background-color 0.3s, color 0.3s;
}
.footer .social-icons .social-link:hover {
  background-color: #fff;
  color: #c63426;
}
.footer .footer-image {
  max-width: 180px;
  height: auto;
}
@media (min-width: 992px) {
  .footer .footer-container {
    flex-direction: row;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
  }
  .footer .footer-menu {
    flex-direction: row;
    gap: 2rem;
  }
}

.contato {
  position: relative;
  padding: 60px 0px 80px 0px;
  overflow: hidden;
}
.contato::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../img/backgroundContact.webp");
  background-size: cover;
  background-position: center;
  filter: blur(8px);
}
@media (min-width: 767px) {
  .contato {
    padding: 120px 0px;
  }
}
.contato input, .contato textarea {
  padding: 10px 10px;
  border-radius: 10px;
  width: 100%;
  display: block;
  background: white;
  font-size: 16px;
  margin-bottom: 20px;
}
.contato input::placeholder, .contato textarea::placeholder {
  color: #aaaaaa;
}
.contato .text {
  font-size: 16px;
  font-weight: 400;
  color: #aaaaaa;
  line-height: 1.5;
  padding: 10px 10px;
  border-radius: 10px;
  display: block;
  background: white;
  font-size: 16px;
}
@media (min-width: 767px) {
  .contato .text {
    max-width: 45%;
  }
}
.contato .row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 767px) {
  .contato .row {
    flex-direction: row;
    gap: 20px;
  }
  .contato .row .item input {
    margin-bottom: 20px;
  }
  .contato .row.submit-container {
    justify-content: space-between;
  }
}
.contato .row .item {
  flex: 1;
}
.contato .term {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .contato .term {
    width: 50%;
  }
}
.contato .term input {
  width: 20px;
  height: 20px;
  margin: 0;
  margin-top: 5px;
  flex-shrink: 0;
}
.contato .term strong {
  font-weight: bold;
}
.contato .term label {
  line-height: 1.2rem;
  flex: 1;
}
.contato .btn-submit {
  background: #dd5901;
  border: 2px solid #dd5901;
  padding: 10px 30px;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s ease all;
  margin-top: 30px;
  cursor: pointer;
}
.contato .btn-submit:hover {
  background: white;
  border-color: white;
  color: black;
}
.contato .title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: bold;
  color: white;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
}
@media (min-width: 767px) {
  .contato .title {
    font-size: 60px;
    margin-bottom: 50px;
  }
}

.faq-section {
  background-color: #E76B1E;
  padding: 60px 0;
  color: #fff;
}
@media (min-width: 767px) {
  .faq-section {
    padding: 100px 0;
  }
}
.faq-section .faq-title {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (min-width: 767px) {
  .faq-section .faq-title {
    font-size: 3rem;
  }
}
.faq-section .accordion-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-section .accordion-item {
  margin-bottom: 16px;
  border-radius: 5px;
  overflow: hidden;
}
.faq-section .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #C62828;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-section .accordion-header .question-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
  flex: 1;
}
.faq-section .accordion-icon {
  position: relative;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.faq-section .accordion-icon::before, .faq-section .accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.faq-section .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-section .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 1.5rem;
  background-color: #E76B1E;
}
.faq-section .accordion-content p {
  padding: 1.5rem 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}
.faq-section .accordion-item.active .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-section .accordion-item.active .accordion-content {
  max-height: 500px;
}

.familia-section {
  padding: 60px 0 36px 0px;
  color: white;
  text-align: center;
  overflow: hidden;
  background: #C62828;
  background: radial-gradient(circle, #E76B1E 0%, #C62828 40%, #B71C1C 100%);
}
@media (min-width: 767px) {
  .familia-section {
    padding-top: 100px;
  }
}
.familia-section .familia-logo-img {
  max-width: 300px;
  margin: 0 auto 60px auto;
}
@media (min-width: 767px) {
  .familia-section .familia-logo-img {
    max-width: 300px;
    margin-bottom: 80px;
  }
}
.familia-section .product-slider .slide-item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.familia-section .product-slider .product-display {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 40px;
  width: 100%;
}
@media (min-width: 767px) {
  .familia-section .product-slider .product-display {
    margin-bottom: 60px;
  }
}
.familia-section .product-slider .side-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFD600;
  position: absolute;
}
.familia-section .product-slider .side-text.left {
  left: 0px;
}
.familia-section .product-slider .side-text.right {
  right: -10vw;
}
@media (min-width: 767px) {
  .familia-section .product-slider .side-text {
    font-size: 1.8rem;
  }
}
@media (max-width: 580px) {
  .familia-section .product-slider .side-text {
    display: none;
  }
}
.familia-section .product-slider .product-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.familia-section .product-slider .product-image-wrapper .product-image-combined {
  z-index: 2;
  max-width: 100%;
  max-height: 80%;
  object-fit: contain;
}
.familia-section .product-slider .product-image-wrapper .product-image-combined--desktop {
  display: none;
}
@media (min-width: 767px) {
  .familia-section .product-slider .product-image-wrapper .product-image-combined {
    max-height: 100%;
  }
  .familia-section .product-slider .product-image-wrapper .product-image-combined--mobile {
    display: none;
  }
  .familia-section .product-slider .product-image-wrapper .product-image-combined--desktop {
    display: block;
  }
}
.familia-section .product-slider .product-info {
  margin-bottom: 1rem;
}
.familia-section .product-slider .product-brand-logo {
  max-width: 260px;
  margin: 0 auto;
}
.familia-section .product-slider .product-name {
  margin-top: 17px;
  font-size: 30px;
  font-weight: 500;
}
.familia-section .product-slider .product-details {
  font-weight: 400;
  font-size: 25px;
}
.familia-section .product-slider .product-name, .familia-section .product-slider .product-details {
  line-height: 1.4;
  font-style: italic;
}
.familia-section .product-slider .lorem-text {
  font-size: 0.75rem;
  max-width: 400px;
  opacity: 0.7;
}
.familia-section .product-slider .slick-prev,
.familia-section .product-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-250%);
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  display: flex !important;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.familia-section .product-slider .slick-prev {
  left: 15px;
}
.familia-section .product-slider .slick-next {
  right: 15px;
}
.familia-section .product-slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}
.familia-section .product-slider .slick-dots li {
  margin: 0 6px;
}
.familia-section .product-slider .slick-dots li button::before {
  display: none;
  content: "";
}
.familia-section .product-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #fff;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
  outline: none;
}
.familia-section .product-slider .slick-dots li.slick-active button {
  background: #fff;
  transform: scale(1.05);
}

.compre-aqui {
  padding: 50px 0px 70px 0px;
  background-color: #c63426;
}
@media (min-width: 767px) {
  .compre-aqui {
    padding: 80px 0px;
  }
}
.compre-aqui .title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: bold;
  color: white;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (min-width: 767px) {
  .compre-aqui .title {
    font-size: 60px;
    margin-bottom: 25px;
  }
}
.compre-aqui .subtitle {
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: white;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 767px) {
  .compre-aqui .subtitle {
    font-size: 25px;
    margin-bottom: 50px;
  }
}
.compre-aqui .logos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
  justify-content: center;
}
@media (min-width: 767px) {
  .compre-aqui .logos {
    gap: 12px;
  }
}
@media (min-width: 1200px) {
  .compre-aqui .logos {
    gap: 15px;
  }
}
.compre-aqui .logos a {
  display: block;
}
.compre-aqui .logos .item_logo {
  width: 100%;
  max-width: calc(50% - 10px);
  height: auto;
}
@media (min-width: 767px) {
  .compre-aqui .logos .item_logo {
    max-width: calc(33% - 8px);
  }
}
@media (min-width: 1200px) {
  .compre-aqui .logos .item_logo {
    max-width: calc(20% - 12px);
  }
}
.compre-aqui .logos .item_logo img {
  width: 241px;
  max-width: 100%;
}

.image-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 0px 20px;
  box-sizing: border-box;
  background-color: #ffecc7;
}

.image-container {
  position: relative;
  max-width: 100%;
  border-radius: 15px;
}
.image-container img {
  display: block;
  width: 100%;
  height: auto;
}

.overlay-box {
  position: absolute;
  top: -15px;
  left: 10px;
  background-color: #c63426;
  padding: 8px 12px;
  border-radius: 8px;
}

.overlay-text {
  margin: 0;
  color: #ffffff;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: bold;
}

.center-left-container {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  max-width: 50%;
}

@media (min-width: 768px) {
  .image-container {
    padding-top: 80px;
    padding-left: 100px;
    padding-right: 100px;
  }
  .overlay-box {
    top: 65px;
    left: 170px;
    padding: 10px 15px;
  }
  .overlay-text {
    font-size: 24px;
  }
  .center-left-container {
    left: 170px;
  }
}
.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 20px 20px;
  box-sizing: border-box;
  background-image: url("../img/backgroundImageVideoSection.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  position: relative;
}
.video-section .video-container {
  max-width: 100%;
  border-radius: 15px;
}
.video-section .video-container iframe {
  width: 374px;
  height: 210px;
  display: block;
  border-radius: 15px;
}
.video-section .overlay-box {
  position: absolute;
  top: -15px;
  left: 25px;
  background-color: #ff9324;
  padding: 8px 35px;
  border-radius: 8px;
}
.video-section .overlay-box .overlay-text {
  margin: 0;
  color: #ffffff;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: bold;
}

@media (min-width: 768px) {
  .video-section {
    padding: 130px 100px 100px 100px;
  }
  .video-section .video-container {
    width: 100%;
  }
  .video-section .video-container iframe {
    width: 100%;
    height: 65vh;
  }
  .video-section .overlay-box {
    left: 120px;
  }
  .video-section .overlay-box .overlay-text {
    font-size: 24px;
  }
}
.mix-section {
  padding: 70px 0 85px 0;
  color: #c63426;
  text-align: center;
  background-image: url("../img/backgroundImageMixErvas.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  position: relative;
}
.mix-section .title {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  max-width: 970px;
  margin: 0 auto;
}
.mix-section .title strong {
  font-weight: 800;
}
.mix-section .overlay-box {
  position: absolute;
  top: -15px;
  left: 25px;
  background-color: #B71C1C;
  padding: 8px 35px;
  border-radius: 8px;
}
.mix-section .overlay-box .overlay-text {
  margin: 0;
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: bold;
}
.mix-section .ervas-slider .slide-item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mix-section .ervas-slider .erva-display {
  margin-bottom: 2rem;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mix-section .ervas-slider .erva-display .erva-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 300px;
}
.mix-section .ervas-slider .erva-display .erva-image-wrapper .erva-image {
  z-index: 2;
  max-width: 100%;
  max-height: 80%;
  object-fit: contain;
}
@media (min-width: 767px) {
  .mix-section .ervas-slider .erva-display .erva-image-wrapper .erva-image {
    max-height: 100%;
  }
}
.mix-section .ervas-slider .erva-display .title-text {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
}
.mix-section .ervas-slider .erva-display .subtitle-text {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
}
.mix-section .ervas-slider .erva-info {
  margin: 0 auto;
  max-width: 560px;
}
.mix-section .ervas-slider .erva-info .erva-details {
  font-weight: 400;
  line-height: 1.4;
  font-size: 18px;
}
.mix-section .ervas-slider .erva-info .erva-details strong {
  font-weight: 800;
}
.mix-section .ervas-slider .slick-prev,
.mix-section .ervas-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-250%);
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #c63426;
  background: transparent;
  display: flex !important;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.mix-section .ervas-slider .slick-prev {
  left: 120px;
}
.mix-section .ervas-slider .slick-next {
  right: 120px;
}
.mix-section .ervas-slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mix-section .ervas-slider .slick-dots li {
  margin: 0 6px;
}
.mix-section .ervas-slider .slick-dots li button::before {
  display: none;
  content: "";
}
.mix-section .ervas-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #c63426;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
  outline: none;
}
.mix-section .ervas-slider .slick-dots li.slick-active button {
  background: #c63426;
  transform: scale(1.05);
}
@media (min-width: 767px) {
  .mix-section {
    padding: 120px 0px 160px 0px;
  }
  .mix-section .overlay-box {
    left: 120px;
  }
  .mix-section .overlay-box .overlay-text {
    font-size: 24px;
  }
}

.banner {
  padding: 150px 0 40px 0;
  color: white;
  text-align: center;
  overflow: hidden;
  background-image: url("../img/backgroundImageBannerPrincipal.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 16px;
}
.banner .title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 24px;
  max-width: 970px;
  margin: 0 auto;
  position: relative;
  bottom: 0;
}
.banner .title strong {
  font-weight: 800;
}
.banner .container {
  padding: 0;
}
.banner .banners-slider {
  max-width: 100vw;
}
.banner .banners-slider .slide-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.banner .banners-slider .slide-item .slide-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.banner .banners-slider .slide-item .slide-wrapper img {
  width: 90%;
  height: 100%;
  object-fit: cover;
}
.banner .banners-slider .slick-prev,
.banner .banners-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(160%);
  z-index: 2;
  font-size: 35px;
  width: 50px;
  height: 50px;
  background: transparent;
  display: flex !important;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.banner .banners-slider .slick-prev {
  left: -50px;
}
.banner .banners-slider .slick-next {
  right: -50px;
}
.banner .banners-slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner .banners-slider .slick-dots li {
  margin: 0 6px;
}
.banner .banners-slider .slick-dots li button::before {
  display: none;
  content: "";
}
.banner .banners-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: 2px solid white;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
  outline: none;
}
.banner .banners-slider .slick-dots li.slick-active button {
  background: white;
  transform: scale(1.05);
}
@media (min-width: 767px) {
  .banner {
    padding: 150px 0px 80px 0px;
  }
  .banner .slick-dots {
    margin-top: -35px;
    margin-bottom: 35px;
    z-index: 10;
  }
}

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