/* importing fonts */

@import url("https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:wght@100;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  /* colors */
  --white-color: #ffffff;
  --black-color: #000000;

  --yellow-100: #fffdcf;
  --yellow-200: #fefba0;
  --yellow-300: #fef970;
  --yellow-400: #fdf741;
  --yellow-500: #fdf511;

  --black-100: #cccccc;
  --black-200: #999999;
  --black-300: #666666;
  --black-400: #333333;

  --gray-100: #ebedee;
  --gray-200: #d6d6d6;
  --gray-300: #adadad;
  --gray-400: #858585;
  --gray-500: #5c5c5c;

  /* font-size */
  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;

  /* font-weight */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* border-radius */
  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;

  /* site max width */
  --site-max-width: 1300px;
}

/* stylings for whole site */

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: none;
}

img {
  width: 100%;
}

.section-content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--site-max-width);
}

/* navbar styling */

header {
  position: fixed;
  width: 100%;
  z-index: 5;
  background-color: var(--black-400);
}

header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.nav-logo .logo {
  height: 8vh;
}

.nav-logo .logo img {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-s);
  object-fit: cover;
}

.navbar .nav-menu {
  display: flex;
  gap: 10px;
}

.navbar .nav-menu .nav-link {
  padding: 10px 18px;
  color: var(--white-color);
  font-size: var(--font-size-m);
  border-radius: var(--border-radius-m);
  transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
  color: var(--black-color);
  background-color: var(--yellow-300);
}

.navbar :where(#menu-open-button, #menu-close-button) {
  display: none;
}

/* carousel styling */
.carousel {
  /* padding: 1rem 0; */
}

.slider {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 700px;
  margin: auto;
  overflow: hidden;
}

.list {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  width: max-content;
}

.list img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.slider .buttons {
  display: flex;
  position: absolute;
  justify-content: space-between;
  top: 45%;
  left: 5%;
  width: 90%;
}

.slider .buttons button {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-circle);
  background-color: var(--gray-300);
  color: var(--white-color);
  border: none;
  font-family: monospace;
  font-weight: var(--font-weight-bold);
}

.slider .dots {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  color: var(--white-color);
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}

.slider .dots li {
  list-style: none;
  width: 10px;
  height: 10px;
  background-color: var(--white-color);
  margin: 20px;
  border-radius: var(--border-radius-m);
  transition: 1s;
}

.slider .dots li.active {
  width: 30px;
}

/* HERO SECTION STYLING */

.hero-section {
  background-color: var(--gray-100);
  align-items: center;
  padding: 4rem 0;
}

.hero-section .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 80vh;
  color: var(--black-color);
  justify-content: space-between;
}

.hero-section .section-content {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Cria as duas colunas lado a lado */
  gap: 2rem;
  align-items: center;
}

.hero-section .title {
  font-size: var(--font-size-xxl);
  color: var(--black-color);
  text-align: center;
}

.hero-section .title {
  grid-column: 1 / -1; /* Faz o título ocupar a largura das DUAS colunas */
  text-align: center;
}

.hero-section .title::after {
  content: "";
  width: 50%;
  height: 4px;
  display: block;
  margin: 10px auto;
  border-radius: var(--border-radius-m);
  background-color: var(--yellow-500);
}

.hero-section .hero-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-section .hero-details .description {
  font-size: var(--font-size-m);
  line-height: 2;
  background-color: var(--white-color);
  padding: 1rem;
  border-radius: var(--border-radius-s);
}

.hero-section .hero-details .buttons {
  display: flex;
}

.hero-section .hero-details .button.order-now {
  padding: 10px 26px;
  border: 2px solid transparent;
  color: var(--black-color);
  background-color: var(--yellow-400);
  border-radius: var(--border-radius-m);
  border-color: var(--black-color);
  font-weight: var(--font-weight-medium);
  transition: 0.3s ease;
}

.hero-section .hero-details .button:hover {
  color: var(--white-color);
  border-color: var(--yellow-500);
  background-color: var(--black-color);
}

.hero-section .hero-details .contact-us:hover {
  color: var(--black-color);
  border-color: var(--yellow-500);
  background-color: var(--yellow-500);
}

.hero-section .hero-image-wrapper {
  width: 100%;
}

/* DRACO SECTION STYLING */

.about-section {
  padding: 140px 0;
  background-color: var(--gray-200);
}

.about-section-title {
  text-align: center;
  font-size: var(--font-size-xl);
  margin-bottom: 140px;
  margin-top: -80px;
}

.about-section-title::after {
  content: "";
  width: 140px;
  height: 4px;
  display: block;
  margin: 0 auto;
  border-radius: var(--border-radius-m);
  background-color: var(--yellow-500);
}

.about-section .section-content {
  display: flex;
  position: relative;
  gap: 50px;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
}

.about-section .about-details-title {
  text-align: center;
  text-transform: uppercase;
  font-size: var(--font-size-xl);
  max-width: 70%;
  margin-left: 100px;
  margin-bottom: 40px;
}

.about-section .about-details-title::after {
  content: "";
  width: 80px;
  height: 4px;
  display: block;
  margin: 10px auto;
  border-radius: var(--border-radius-m);
  background-color: var(--yellow-500);
}

.about-section .section-content .about-details {
  background-color: var(--white-color);
  border-radius: var(--border-radius-m);
  padding: 60px 20px;
  flex: 1;
  width: 70%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.about-section .section-content .about-details .about-details-text {
  color: var(--black-color);
  line-height: 2;
  margin-bottom: 20px;
  width: 80%;
  padding: 0 40px;
}

.about-section .about-image-wrapper {
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  margin-left: 50vw;
}

.about-section .about-image-wrapper .about-image {
  width: 550px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius-m);
  opacity: 0.9;
  border: 4px solid var(--black-color);
}

/* MVV SECTION STYLING */
.mvv-section {
  padding: 40px 0;
  background-color: var(--white-color);
}

.mvv-section-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 4rem;
}

.mvv-section-title {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: var(--font-size-xl);
}

.mvv-section-title::after {
  content: "";
  width: 140px;
  height: 4px;
  display: block;
  margin: 5px auto;
  border-radius: var(--border-radius-m);
  background-color: var(--yellow-500);
}

.cards-container {
  display: flex;
  justify-content: space-between;
}

.card {
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 1.5rem;
  background-color: var(--black-color);
  color: var(--white-color);
  padding: 20px;
  border-radius: var(--border-radius-s);
}

.card-title {
  text-align: center;
  font-weight: var(--font-weight-bold);
}

.card-title::after {
  content: "";
  width: 100%;
  height: 4px;
  display: block;
  margin: 8px auto;
  border-radius: var(--border-radius-m);
  background-color: var(--yellow-500);
}

.card-description {
  text-align: justify;
  line-height: 1.6;
  padding: 4px;
}

/* PRODUCTS SECTION */

.product-section {
  background-color: var(--gray-200);
  padding: 80px 20px;
}

.products-section-title {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: var(--font-size-xl);
}

.products-section-title::after {
  content: "";
  width: 140px;
  height: 4px;
  display: block;
  margin: 5px auto;
  border-radius: var(--border-radius-m);
  background-color: var(--yellow-500);
}

.product-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 6% auto 0;
}

.product-card {
  position: relative;
  width: 300px;
  height: 340px;
  margin: 15px;
  box-shadow: 2px 2px var(--yellow-400);
  overflow: hidden;
  background-color: var(--black-color);
  border-radius: var(--border-radius-m);
  transition: all 0.8s ease-in-out;
}

.product-card:hover {
  transform: translateY(-10px);
}

.img-area {
  position: relative;
  width: 100%;
  height: 40%;
  overflow: hidden;
}

.img-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.img-area:hover img {
  transform: scale(1.1);
}

.overlay {
  display: flex;
  position: absolute;
  flex-direction: column;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--yellow-100);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .overlay {
  opacity: 1;
}

.view-details {
  background-color: var(--white-color);
  color: var(--black-color);
  padding: 8px 4px;
  border-radius: var(--border-radius-m);
  font-size: var(--font-size-n);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-bottom: 10px;
  margin: 0 40px;
}

.info {
  padding: 10px;
  text-align: center;
  color: var(--white-color);
}

.info h3 {
  margin: 15px 0 10px;
  font-size: var(--font-size-n);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

.info p {
  font-size: var(--font-size-s);
  line-height: 1.4;
  color: var(--gray-300);
  text-align: justify;
  padding: 0 8px;
}

/* TIMELINE SECTION STYLING */

.timeline-section {
  background-color: var(--gray-100);
  padding: 40px 0;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 100px auto;
}

.timeline-section-title {
  text-align: center;
  font-size: var(--font-size-xl);
}

.timeline-section-title::after {
  content: "";
  width: 140px;
  height: 4px;
  display: block;
  margin: 0 auto;
  border-radius: var(--border-radius-m);
  background-color: var(--yellow-500);
}

.container {
  padding: 10px 50px;
  position: relative;
  width: 50%;
  animation: movedown 1s linear forwards;
  opacity: 0;
}

@keyframes movedown {
  0% {
    transform: translateY(-30px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.container:nth-child(1) {
  animation-delay: 0s;
}

.container:nth-child(2) {
  animation-delay: 1s;
}

.container:nth-child(3) {
  animation-delay: 2s;
}

.container:nth-child(4) {
  animation-delay: 3s;
}

.container:nth-child(5) {
  animation-delay: 4s;
}

.container:nth-child(6) {
  animation-delay: 5s;
}

.container:nth-child(7) {
  animation-delay: 6s;
}

.container:nth-child(8) {
  animation-delay: 7s;
}

.text-box {
  position: relative;
  padding: 20px 30px;
  background: var(--black-color);
  color: var(--white-color);
  border-radius: var(--border-radius-m);
  font-size: var(--font-size-m);
}

.text-box h2 {
  font-weight: var(--font-weight-semibold);
  position: relative;
  padding-left: 24px;
  display: flex;
  align-items: center;
}

.text-box h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 28px;
  background-color: var(--yellow-400);
  border-radius: 2px;
}

.separator {
  display: flex;
  width: 100%;
  height: 4px;
  background-color: var(--yellow-400);
  margin: 20px 0;
}

.text-box h3 {
  margin-bottom: 15px;
}

.text-box p {
  font-size: var(--font-size-s);
  line-height: 1.6;
  padding-left: 1.5rem;
  color: var(--gray-300);
}

.left-container {
  left: 0;
}

.right-container {
  left: 50%;
}

.container img {
  position: absolute;
  width: 40px;
  border-radius: var(--border-radius-circle);
  right: -20px;
  top: 32px;
  z-index: 10;
}

.right-container img {
  left: -20px;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  background-color: var(--black-color);
  top: 0;
  left: 50%;
  margin-left: -3px;
  animation: moveline 6s linear forwards;
}

@keyframes moveline {
  0% {
    height: 0;
  }

  100% {
    height: 100%;
  }
}

.left-container-arrow {
  height: 0;
  width: 0;
  position: absolute;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid var(--black-color);
  right: -14.5455px;
}

.right-container-arrow {
  height: 0;
  width: 0;
  position: absolute;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid var(--black-color);
  left: -14.5455px;
}

/* CONTACT SECTION STYLING */
.contact-section {
  position: relative;
  padding: 40px 0 80px;
  background-color: var(--gray-200);
}

.contact-section .logo {
  position: absolute;
  left: 0;
  top: 0;
  height: 6vh;
  width: 6vw;
  margin-left: 0.2rem;
  margin-top: 0.5rem;
}

.contact-section .logo img {
  border-radius: var(--border-radius-s);
}

.contact-section .section-title {
  width: 100%;
  text-align: center;
}

.contact-section .section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  display: block;
  margin: 0 auto;
  border-radius: var(--border-radius-m);
  background-color: var(--yellow-500);
}

.contact-section .section-content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 2rem;
}

.contact-section .contact-info-list {
  max-width: 50%;
}

.contact-section .contact-info-list .contact-info {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  align-items: center;
}

.contact-section .contact-info-list .contact-info a {
  display: flex;
  justify-content: center;
  font-size: var(--font-size-m);
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--border-radius-circle);
  color: var(--white-color);
}

#whatsapp-link {
  background: linear-gradient(to bottom, #25d366, #128c7e);
}

#instagram-link {
  background: linear-gradient(
    to bottom,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}

#youtube-link {
  background: linear-gradient(to bottom, #ff0000, #cc0000);
}

#linkedin-link {
  background: linear-gradient(to bottom, #0077b5, #005582);
}

.contact-section .contact-info-list .contact-info a:hover {
  opacity: 0.7;
  color: var(--black-color);
}

/* map styling */
.section-map {
  max-width: 50%;
  width: 100%;
  padding: 4px;
  background-color: var(--black-color);
  border-radius: var(--border-radius-s);
  margin: auto 0;
}

.map-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--border-radius-s);
}

/*---------------------------------------------------- PRODUCTS PAGE ----------------------------------------------------*/

.products-page-section {
  display: flex;
  flex-direction: column;
  padding: 10rem 4rem;
}

.products-page-container .heading {
  text-align: center;
  font-size: var(--font-size-xl);
  margin-bottom: 2rem;
}

.products-page-container .heading::after {
  content: "";
  width: 20%;
  height: 4px;
  display: block;
  margin: 4px auto;
  border-radius: var(--border-radius-m);
  background-color: var(--yellow-500);
}

.products-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.products-page-section .row {
  display: flex;
  align-items: center;
  height: 9rem;
  border-radius: var(--border-radius-s);
  overflow: hidden;

  background-color: var(--yellow-100);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.products-page-section .product-card-link:nth-child(odd) .row {
  background-color: var(--yellow-200);
}

.products-page-section .row .product-image {
  height: 100%;
  width: 12rem;
  background-color: var(--black-color);
  border-right: 2px solid var(--yellow-300);
}

.products-page-section .row .product-image img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
}

.products-page-section .row .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
  gap: 0.5rem;
}

.products-page-section .row .content .product-divider {
  height: 1px;
  width: 90%;
  background-color: var(--black-color);
  margin: 0.5rem auto;
}

.products-page-section .row .content h3 {
  font-size: var(--font-size-l);
  color: var(--black-color);
  padding: 0 2rem;
  font-weight: 700;
}

.products-page-section .row .content p {
  font-size: var(--font-size-n);
  color: var(--black-color);
  padding: 1rem;
  line-height: 1.4;
  text-align: justify;
}

.products-page-section .row .content p {
  text-align: left;
  padding: 0 2rem 1rem;
}

.details-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 6rem;
  font-size: 4rem;
  background-color: var(--gray-100);
  border: 2px solid var(--yellow-300);
  border-radius: var(--border-radius-s);
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card-link:hover .details-button {
  background-color: var(--yellow-400);
  border-color: var(--black-color);
}
.product-card-link:hover .details-button i {
  transform: translateX(5px);
}
.details-button i {
  transition: transform 0.3s ease;
}

/* PRODUCTS PAGE SUPORT */

.suport-section {
  display: flex;
  flex-direction: row;
  background-color: var(--gray-100);
  align-items: stretch;
  padding: 0 40px;
  gap: 4rem;
  height: 24rem;
}

.suport-text {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0;
}

.suport-text .suport-title {
  background-color: var(--yellow-300);
  font-weight: var(--font-weight-bold);
  border-radius: var(--border-radius-s);
  text-align: center;
  padding: 8px 0;
  width: 12rem;
}

.suport-text .suport-description {
  display: flex;
  padding: 2rem 1rem;
  border: 1px solid var(--black-color);
  color: var(--black-color);
  border-radius: var(--border-radius-s);
  background-color: var(--white-color);
}

.suport-img {
  width: 20%;
  height: 100%;
  object-fit: cover;
}

/* responsive media query code for max width 900px */

@media screen and (max-width: 900px) {
  :root {
    --font-size-m: 1rem;
    --font-size-l: 1.3rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 1.8rem;
  }

  header .navbar {
    padding: 0 40px;
  }

  .nav-logo .logo {
    height: 3.2rem;
    width: 8rem;
  }

  .nav-logo .logo img {
    object-fit: contain;
  }

  .navbar :where(#menu-open-button, #menu-close-button) {
    display: block;
    font-size: var(--font-size-l);
    background-color: transparent;
    color: var(--white-color);
  }

  body.show-mobile-menu header::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.2);
  }

  .navbar #menu-close-button {
    position: absolute;
    right: 30px;
    top: 30px;
    color: var(--black-color);
  }

  .navbar .nav-menu {
    display: flex;
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    background-color: var(--white-color);
    transition: left 0.3s ease;
  }

  body.show-mobile-menu .navbar .nav-menu {
    left: 0;
  }

  .navbar .nav-menu .nav-link {
    display: block;
    color: var(--black-color);
    margin-top: 17px;
    font-size: var(--font-size-l);
  }

  /*---------------------------------------------- SLIDER RESPONSIVITY ----------------------------------------------*/
  .slider {
    height: 320px;
  }

  .slider .buttons {
    top: 55%;
  }

  .slider .buttons button {
    width: 24px;
    height: 24px;
  }

  .slider .dots li {
    width: 5px;
    height: 5px;
  }

  .slider .dots li.active {
    width: 14px;
  }

  /*---------------------------------------------- HERO RESPONSIVITY ----------------------------------------------*/

  .hero-section .section-content {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    text-align: center;
    justify-content: center;
  }

  .hero-section .hero-details .title {
    font-size: var(--font-size-xl);
    max-width: 100%;
    order: 2;
  }

  .hero-section .hero-details {
    order: 3;
  }

  .hero-section .hero-details .buttons {
    justify-content: center;
  }

  .hero-section .hero-details .description {
    text-align: justify;
  }

  .hero-section .hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
  }

  .hero-section .hero-image-wrapper .hero-image {
    width: 60%;
    height: auto;
  }

  /*---------------------------------------------- DRACO RESPONSIVITY ----------------------------------------------*/

  .about-section-title {
    font-size: var(--font-size-xl);
    margin-bottom: 40px;
  }

  .about-section .section-content {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }

  .about-section .section-content .about-details {
    position: relative;
    flex-direction: column;
    width: 100%;
    transform: none;
    padding: 0;
  }

  .about-section .section-content .about-details .about-details-text {
    text-align: justify;
    font-size: var(--font-size-m);
    line-height: 1.4;
    width: 100%;
    padding: 20px;
  }

  .about-details .about-details-title {
    width: 100%;
    margin: 0 auto;
    font-size: var(--font-size-m);
    text-align: center;
    padding-top: 16px;
  }

  .about-section .about-image-wrapper {
    margin-left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about-section .about-image-wrapper .about-image {
    width: 100%;
    height: auto;
  }

  .section-title {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  /*---------------------------------------------- MVV RESPONSIVITY ----------------------------------------------*/

  .mvv-section-content {
    padding: 8px;
    gap: 2rem;
  }

  .mvv-section-title::after {
    margin: 0 auto;
  }

  .cards-container {
    flex-direction: column;
    width: 100%;
    gap: 1.4rem;
  }

  .card {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .card-title {
    font-size: var(--font-size-l);
  }

  .card-title::after {
    height: 2px;
    display: block;
  }

  .card-description {
    text-align: justify;
    line-height: 1.6;
    padding: 4px;
    font-size: var(--font-size-s);
  }

  /*---------------------------------------------- TIMELINE RESPONSIVITY ----------------------------------------------*/

  .timeline {
    margin: 50px auto;
  }

  .timeline::after {
    left: 31px;
  }

  .container {
    width: 100%;
    padding-left: 80px;
    padding-right: 20px;
  }

  .text-box {
    font-size: var(--font-size-s);
  }

  .right-container {
    left: 0;
  }

  .left-container-arrow,
  .right-container-arrow {
    border-right: 15px solid var(--black-color);
    border-left: 0;
    left: -14.5455px;
  }

  /*---------------------------------------------- CONTACT RESPONSIVITY ----------------------------------------------*/
  .contact-section {
    position: relative;
    padding: 10px;
  }

  .contact-section .logo {
    height: 60px;
    width: 60px;
  }

  .contact-section .logo img {
    border-radius: var(--border-radius-s);
  }

  .contact-section .section-title {
    width: 100%;
    text-align: center;
  }

  .contact-section .section-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
  }

  .contact-section .contact-info-list {
    max-width: 100%;
  }

  .contact-section .contact-info-list .contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .contact-section .contact-info-list .contact-info p {
    margin: 0;
    font-size: var(--font-size-s);
    overflow-wrap: break-word;
    word-break: break-all;
  }

  .section-map {
    display: flex;
    max-width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }

  .contact-info a:active,
  .contact-info a:focus {
    transform: scale(0.9);
    opacity: 0.8;
  }

  /*---------------------------------------------- PRODUCTS PAGE RESPONSIVITY ----------------------------------------------*/
  .products-page-section {
    padding: 4rem 1rem;
  }

  .products-page-section .heading {
    text-align: center;
  }

  .products-page-section .row {
    flex-direction: column;
    height: auto;
  }

  .products-page-section .row .product-image {
    width: 100%;
    height: 12rem;
    border-bottom: 2px solid var(--yellow-300);
  }

  .products-page-section .row .content {
    width: 100%;
  }

  .products-page-section .row .content h3 {
    padding-top: 1rem;
    text-align: center;
    font-size: var(--font-size-xl);
  }

  .products-page-section .row .content p {
    text-align: justify;
    font-size: var(--font-size-m);
  }

  .products-page-section .row .content .product-divider {
    width: 100%;
  }

  .details-button {
    width: 100%;
    height: 5rem;
    font-size: 2.5rem;
    border-radius: 0 0 var(--border-radius-s) var(--border-radius-s);
  }

  /* PRODUCTS PAGE SUPORT */

  .suport-section {
    display: flex;
    flex-direction: column-reverse;
    background-color: var(--gray-100);
    align-items: stretch;
    padding: 0 40px;
    gap: 0;
    height: auto;
  }

  .suport-text {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
  }

  .suport-text .suport-title {
    width: 100%;
  }

  .suport-text .suport-description {
    padding: 1rem;
    font-size: var(--font-size-s);
    text-align: justify;
  }

  .suport-img {
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .suport-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}
