:root {
  --container-offset: max(20px, calc((100vw - 1200px) / 2 + 20px));
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Franie Test", sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.26);
  line-height: 1.5em;
  -webkit-font-smoothing: antialiased;
}

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

input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

address {
  font-style: inherit;
}

textarea {
  resize: none;
}

button {
  font-size: 1em;
  border: 0;
  cursor: pointer;
}

input {
  border: none;
  outline: none;
  background: none;
}

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.5em;
}

.no-overflow {
  position: relative;
  overflow-x: clip;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.title-24 {
  font-size: 24px;
  font-weight: bold;
}

.title-36 {
  font-size: 36px;
  font-weight: bold;
}

.title-48 {
  font-size: 48px;
  font-weight: bold;
}

.title-88 {
  font-size: 88px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .title-88 {
    font-size: 48px;
  }
}

.title-122 {
  font-size: 122px;
  font-weight: bold;
}

.title-124 {
  font-size: 124px;
  font-weight: bold;
  line-height: 1em;
}

.title-128 {
  font-size: 128px;
  font-weight: bold;
}

.white {
  color: #fff;
}

.d-blue {
  color: #0B0E3B;
}

.d-yellow {
  color: #D3AB66;
}

.bg-blue {
  background-color: #0B0E3B;
}

.flex-d-row-reverse {
  flex-direction: row-reverse;
}

@media (min-width: 992px) {
  .visible-mobile {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .visible-desktop {
    display: none !important;
  }
}
.default-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 16px;
  background-color: #0B0E3B;
  gap: 10px;
}
.default-button span {
  color: #fff;
  text-transform: uppercase;
}
.default-button .wpp-icon {
  background-image: url("../images/whatsapp.svg");
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.c-wpp {
  background-color: #43CD66;
}

.catalog-header {
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .catalog-header {
    margin-bottom: 20px;
  }
}
.catalog-header::before {
  content: "";
  position: absolute;
  display: block;
  bottom: -110px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/d-yellow.svg");
  background-repeat: no-repeat;
  width: 1404px;
  height: 268px;
  z-index: 1;
}
@media (max-width: 992px) {
  .catalog-header::before {
    display: none;
  }
}
.catalog-header__content {
  position: relative;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}
@media (max-width: 768px) {
  .catalog-header__content {
    height: 170px;
  }
}
.catalog-header__content figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
}
.catalog-header__content h1 {
  position: relative;
  z-index: 1;
  margin-left: 24px;
  display: flex;
  align-items: end;
  margin-bottom: -40px;
}
@media (max-width: 768px) {
  .catalog-header__content h1 {
    margin-bottom: -10px;
    font-size: 36px;
    margin-left: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .catalog-header__content h1 {
    margin-bottom: -24px;
    font-size: 88px;
  }
}

.catalog-content .grid-products {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.catalog-content .grid-products .product {
  grid-column: span 3;
}
.catalog-content .grid-products .product:first-of-type {
  grid-column: span 6;
  grid-row: span 2;
}

.product {
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1/1.4;
  height: 100%;
}
.product__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product .text-content {
  height: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 18px;
  justify-content: flex-end;
}
.product .text-content h3 {
  font-size: 14px;
  color: #D3AB66;
  font-weight: 700;
}
.product .text-content p {
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.single-header {
  position: relative;
  padding-top: 116px;
}
.single-header .bg-header {
  background-color: #D3AB66;
  position: absolute;
  width: 100%;
  height: 84vh;
  top: 0;
  left: 0;
  background-image: url("../images/single-detail.svg");
  background-repeat: no-repeat;
  background-size: 1418px;
  background-position: right -60% bottom 35%;
}
.single-header .container {
  position: relative;
  display: grid;
  gap: 120px;
  grid-template-columns: 3fr 4fr;
}
@media (max-width: 992px) {
  .single-header .container {
    display: flex;
    flex-direction: column-reverse;
  }
}
.single-header__content {
  padding-top: 24px;
}
.single-header__content .text {
  margin-bottom: 24px;
  min-height: 420px;
}
.single-header__content .text h1 {
  margin-bottom: 4px;
}
.single-header__content .text p {
  color: #fff;
  margin-bottom: 16px;
}
.single-header__content .color-options {
  margin-bottom: 92px;
}
.single-header__content .color-options h3 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.single-header__content .color-options button {
  border-radius: 50%;
  border: 1px solid #fff;
  width: 32px;
  height: 32px;
}
.single-header__content .color-options button.color.light-pink {
  background-color: #d0b6bc;
}
.single-header__content .color-options button.color.brown {
  background-color: #987c7e;
}
.single-header__content .color-options button.color.yellow {
  background-color: #dcbc99;
}
.single-header__content .color-options button.color.grey {
  background-color: #535962;
}
.single-header__content .color-options button:focus {
  border: 2px solid #fff;
}
.single-header__gallery-content .product-gallery__image {
  position: relative;
  aspect-ratio: 1/1.3;
  border-radius: 16px;
  overflow: hidden;
}
.single-header__gallery-content .product-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
}
.single-header .contact-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.single-header .product-mesures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
  padding-bottom: 46px;
  border-bottom: 1px solid #D3AB66;
}
.single-header .product-mesures .mesure-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.single-header .product-mesures .mesure-item .scale-icon {
  display: block;
  background-image: url("../images/scale.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 12px;
}
.single-header .product-mesures .mesure-item h4 {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.single-header .product-mesures .mesure-item p {
  color: #D3AB66;
  font-weight: 700;
}
.single-header article {
  margin-top: 48px;
}
.single-header article h3 {
  font-size: 36px;
  color: #D3AB66;
  font-weight: 700;
  margin-bottom: 14px;
}
.single-header article p {
  margin-bottom: 16px;
}
.single-header article figure {
  aspect-ratio: 1/1.3;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}
.single-header article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.related-products h2 {
  margin-bottom: -75px;
}
.related-products .swiper-products {
  position: relative;
}
.related-products .swiper-products::before {
  content: "";
  position: absolute;
  width: var(--container-offset);
  height: 100%;
  bottom: 0;
  right: 100%;
  z-index: 2;
  background-color: #fff;
}

@font-face {
  font-family: "Franie Test";
  src: url("../fonts/Franie-Black.woff2") format("woff2"), url("../fonts/Franie-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Franie Test";
  src: url("../fonts/Franie-Bold.woff2") format("woff2"), url("../fonts/Franie-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Franie Test";
  src: url("../fonts/Franie-ExtraBold.woff2") format("woff2"), url("../fonts/Franie-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Franie Test Hair";
  src: url("../fonts/Franie-Light.woff2") format("woff2"), url("../fonts/Franie-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Franie Test";
  src: url("../fonts/Franie-Regular.woff2") format("woff2"), url("../fonts/Franie-Regular.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Franie Test SemiLight";
  src: url("../fonts/Franie-SemiBold.woff2") format("woff2"), url("../fonts/Franie-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Franie Test";
  src: url("../fonts/Franie-SemiLight.woff2") format("woff2"), url("../fonts/Franie-SemiLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
.header {
  background-color: rgba(211, 171, 102, 0.26);
  padding: 48px 0;
}
@media (max-width: 768px) {
  .header {
    padding: 24px 0;
  }
}
.header__content {
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  background-color: #0B0E3B;
}
.header__content svg {
  position: absolute;
  width: 543px;
  height: auto;
  top: -230px;
  right: 77px;
  fill: #FBF7F0;
}
@media (max-width: 992px) {
  .header__content svg {
    width: 250px;
    top: -70px;
    right: -70px;
  }
}

.header-vasos {
  background-color: transparent;
}
.header-vasos .header__content {
  background-color: #D3AB66;
}

.header-tubos {
  background-color: transparent;
}
.header-tubos .header__content {
  background-color: #0B0E3B;
}

.header-single {
  background-color: transparent;
  padding: 0;
}
.header-single .header__content {
  position: absolute;
  z-index: 1;
  background-color: transparent;
  padding: 48px 0;
}
.header-single .header__content svg {
  display: none;
}

@media (max-width: 992px) {
  .footer {
    margin-top: 40px;
  }
}
.footer__content {
  background-color: rgba(211, 171, 102, 0.1);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  margin: 48px 0;
}
@media (max-width: 992px) {
  .footer__content {
    display: grid;
    gap: 24px 16px;
    justify-content: normal;
    margin: 0;
    padding: 24px 24px 53px 24px;
  }
}
.footer__content h3 {
  color: #D3AB66;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer__content address,
.footer__content a {
  font-size: 12px;
  line-height: 1.5em;
}
.footer__content .address-info h3,
.footer__content .contact-info h3 {
  font-size: 12px;
}
@media (max-width: 992px) {
  .footer__content .address-info,
  .footer__content .contact-info {
    grid-column: auto;
  }
}
.footer__content .contact-info a {
  display: block;
}
@media (max-width: 992px) {
  .footer__content .newsletter {
    grid-column: 2 span;
  }
}
.footer__content .newsletter input {
  width: 576px;
  border: 1px solid #D3AB66;
  border-radius: 4px;
  padding: 12px;
  color: rgba(0, 0, 0, 0.26);
  font-size: 12px;
}
@media (max-width: 992px) {
  .footer__content .newsletter input {
    width: 100%;
  }
}
.footer__content .newsletter input::placeholder {
  color: rgba(0, 0, 0, 0.26);
  font-size: 12px;
}
.footer__logo {
  margin-bottom: -30px;
}
@media (max-width: 992px) {
  .footer__logo {
    margin-top: -24px;
    margin-bottom: 0;
  }
}

.home__hero {
  position: relative;
}
@media (max-width: 992px) {
  .home__hero {
    padding-bottom: 32px;
  }
}
.home__hero .bg-home {
  background-color: rgba(211, 171, 102, 0.26);
  position: absolute;
  width: 100%;
  height: 108vh;
  top: 0;
  left: 0;
}
@media (max-width: 992px) {
  .home__hero .bg-home {
    height: 100%;
  }
}
.home__hero .container {
  position: relative;
}
.home__hero .container::before {
  content: "";
  display: block;
  position: absolute;
  width: 1444px;
  height: 100%;
  background-image: url("../images/teste.svg");
  background-repeat: no-repeat;
  background-size: contain;
  left: -121px;
  top: 210px;
}
@media (max-width: 768px) {
  .home__hero .container::before {
    width: 400px;
    background-image: url("../images/d-home-mobile.svg");
    left: 15px;
    top: 106px;
  }
}
.home__hero .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 992px) {
  .home__hero .wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.home__hero .wrapper .content-left {
  padding-top: 32px;
}
@media (max-width: 992px) {
  .home__hero .wrapper .content-left {
    padding-top: 0;
  }
}
.home__hero .wrapper .content-left h1 {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .home__hero .wrapper .content-left h1 {
    font-size: 16px;
  }
}
.home__hero .wrapper .content-left h2 {
  margin-bottom: 32px;
  line-height: 1em;
}
.home__hero .wrapper .content-left picture {
  margin-left: 48px;
}
@media (max-width: 992px) {
  .home__hero .wrapper .content-left picture {
    margin-left: 0;
  }
}
.home__hero .wrapper .content-right picture {
  margin-right: 48px;
}
@media (max-width: 992px) {
  .home__hero .wrapper .content-right picture {
    margin-right: 0;
  }
}
.home__hero .wrapper .content-right h2 {
  margin-top: 32px;
  text-align: end;
  line-height: 1em;
}
.home__hero picture {
  border-radius: 16px;
  overflow: hidden;
  height: 736px;
  max-width: 528px;
  position: relative;
}
@media (max-width: 992px) {
  .home__hero picture {
    max-width: 100%;
    height: auto;
    aspect-ratio: 1/0.5;
  }
}
@media (max-width: 768px) {
  .home__hero picture {
    aspect-ratio: 1/1;
  }
}
.home__hero picture::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000000;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  opacity: 0.36;
}
.home__hero picture img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.home__hero .catalog-link {
  position: relative;
  transition: opacity 0.3s ease;
  display: block;
  cursor: none;
}
@media (max-width: 768px) {
  .home__hero .catalog-link {
    margin: 0 20px;
  }
}
.home__hero .catalog-link .circle-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  width: 176px;
  height: 176px;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 992px) {
  .home__hero .catalog-link .circle-link {
    background-color: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
    opacity: 1;
    right: 10px;
    bottom: 16px;
  }
}
.home__hero .catalog-link .circle-link span {
  text-align: center;
  display: block;
  color: #60565e;
}
@media (max-width: 992px) {
  .home__hero .catalog-link .circle-link span {
    color: #fff;
  }
}
.home__hero .catalog-link.cursor-active .circle-link {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.timeline {
  margin-top: 16px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  display: block;
  right: 65%;
  top: 260px;
  background-image: url("../images/bg-timeline.svg");
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 1871px;
  width: 100%;
  height: 100%;
}
@media (max-width: 1200px) {
  .timeline::before {
    display: none;
  }
}
.timeline__content {
  position: relative;
}
.timeline__content .date {
  font-size: 36px;
  color: #D3AB66;
  text-align: end;
  position: sticky;
  top: 0;
}
@media (max-width: 1200px) {
  .timeline__content .date {
    font-size: 24px;
    background-color: #fff;
    position: relative;
    display: block;
    padding: 20px 0;
  }
}
.timeline__content .content-info h3 {
  margin-bottom: 8px;
}
.timeline__content picture {
  aspect-ratio: 2/1.2;
  max-width: 550px;
  min-width: 548px;
  overflow: hidden;
  border-radius: 16px;
}
@media (max-width: 1200px) {
  .timeline__content picture {
    aspect-ratio: 2/1.3;
    max-width: 100%;
    min-width: 100%;
  }
}
.timeline__content picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.timeline__container {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 128px 128px 128px 0;
}
@media (max-width: 1200px) {
  .timeline__container {
    flex-direction: column-reverse;
    gap: 16px;
    padding: 24px 30px 16px 0;
  }
}
.timeline__container:last-child {
  padding: 64px 210px;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .timeline__container:last-child {
    padding: 24px 0;
  }
}
.timeline__line {
  background-image: url("../images/timeline-detail.svg");
  background-repeat: no-repeat;
  height: 528px;
  width: 16px;
  position: absolute;
  top: 75px;
  right: 32px;
}
@media (max-width: 1200px) {
  .timeline__line {
    right: 0;
    height: 100%;
    background-repeat: repeat;
  }
}

.find-us {
  padding-bottom: 124px;
  position: relative;
}
@media (max-width: 768px) {
  .find-us {
    padding-bottom: 28px;
  }
}
.find-us::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 655px;
  background-color: rgba(211, 171, 102, 0.26);
  right: 0;
  top: 110px;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .find-us::before {
    top: 360px;
    height: 395px;
  }
}
.find-us .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .find-us .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.find-us .link {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 24px 23px;
  aspect-ratio: 1/0.4;
  display: flex;
  align-items: end;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .find-us .link {
    aspect-ratio: 1/0.5;
  }
}
.find-us .link::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000000;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.36;
  z-index: 1;
}
.find-us .link picture img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.find-us .link .content {
  position: relative;
  color: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: transform 0.3s ease;
}
.find-us .link .content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 4px;
}
.find-us .link .content p {
  font-weight: 300;
}
.find-us .link .content .arrow-icon {
  background-image: url("../images/arrow.svg");
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.find-us .link.tubos::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(11, 14, 59, 0.5);
  z-index: 1;
}
.find-us .link.vasos::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(211, 171, 102, 0.5);
  z-index: 1;
}
.find-us .link:hover .content .arrow-icon {
  transform: rotate(-35deg);
}
.find-us__content {
  position: relative;
}
.find-us__content::before {
  content: "";
  display: block;
  position: absolute;
  width: 1392px;
  height: 576px;
  background-image: url("../images/map-detail.svg");
  background-repeat: no-repeat;
  background-size: contain;
  right: -100px;
  bottom: -75px;
}
@media (max-width: 768px) {
  .find-us__content::before {
    display: none;
  }
}
.find-us__content h2 {
  margin-top: 45px;
  line-height: 1em;
}
.find-us__content .iframe-map {
  overflow: hidden;
  border-radius: 16px;
  height: 424px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .find-us__content .iframe-map {
    height: 260px;
  }
}

.insta-posts {
  padding: 64px 0 128px 0;
  position: relative;
}
.insta-posts::before {
  content: "";
  position: absolute;
  display: block;
  left: 45%;
  top: -90px;
  background-image: url("../images/bg-insta-sec.svg");
  background-repeat: no-repeat;
  max-width: 1871px;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .insta-posts::before {
    display: none;
  }
}
.insta-posts .posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.insta-posts .posts .item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1/1.7;
}
.insta-posts .posts .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
}
.insta-posts .swiper-posts-insta .swiper-slide .item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1/1.7;
  display: flex;
}
.insta-posts .swiper-posts-insta .swiper-slide .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
}

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