@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1210px;
  margin: 0 auto;
}

.header {
  position: relative;
  width: 100%;
  z-index: 100;
  min-height: 87px;
  background: #ffffff;
  border-bottom: 1px solid #0F2E27;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 24px 0;
}
@media (max-width: 768px) {
  .header__inner {
    padding: 24px 20px;
    justify-content: center;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  text-decoration: none;
}
.header__logo-leaf {
  height: 63px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .header__nav {
    position: absolute;
    top: 87px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .header__nav.is-open {
    max-height: 320px;
    padding: 16px 0 24px;
  }
}
.header__nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #0F2E27;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.header__nav-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .header__nav-link {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 16px;
  }
  .header__nav-link:hover {
    background: rgba(15, 46, 39, 0.06);
    opacity: 1;
    text-decoration: none;
  }
}
.header__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  border: 1px solid #516D6A;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #0F2E27;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: background 0.25s ease;
}
.header__cta:hover {
  background: rgba(15, 46, 39, 0.08);
}
@media (max-width: 768px) {
  .header__cta {
    display: none;
  }
}
.header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #0F2E27;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 101;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.header__toggle:hover {
  background: #20594D;
}
@media (max-width: 768px) {
  .header__toggle {
    display: flex;
  }
}
.header__toggle span {
  display: block;
  position: absolute;
  width: 16px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.header__toggle span:nth-child(1) {
  transform: translateY(-5px);
}
.header__toggle span:nth-child(2) {
  transform: translateY(0);
}
.header__toggle span:nth-child(3) {
  transform: translateY(5px);
}
.header__toggle.is-active span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__toggle.is-active span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-image: url("../../assets/image/bg-hero.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .hero {
    background-image: url("../../assets/image/bg-hero-mobile.png");
    background-position: center top;
  }
}
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 800px;
  padding: 80px 0;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .hero__inner {
    min-height: 0;
    padding: 80px 0 0;
  }
}
.hero__content {
  width: 518px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 1100px) {
  .hero__content {
    width: 460px;
  }
}
@media (max-width: 768px) {
  .hero__content {
    width: 100%;
  }
}
.hero__txt {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  border-radius: 100px;
  background: rgba(235, 254, 255, 0.07);
  border: 1px solid rgba(207, 223, 217, 0.32);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #CFDFD9;
  white-space: nowrap;
}
.hero__tag img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .hero__tag {
    font-size: 14px;
    padding: 8px 20px;
    white-space: normal;
  }
}
.hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 36px;
  }
}
.hero__title--accent {
  color: #E7B545;
}
.hero__desc {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #CFDFD9;
  max-width: 469px;
}
.hero__desc strong {
  font-weight: 700;
  color: #CFDFD9;
}
@media (max-width: 480px) {
  .hero__desc {
    font-size: 16px;
    line-height: 1.5;
  }
}
.hero__btn {
  display: inline-block;
  line-height: 0;
  cursor: pointer;
  animation: heroPulse 0.9s ease-in-out infinite alternate;
  transition: filter 0.2s ease;
}
.hero__btn img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}
.hero__btn:hover {
  filter: brightness(0.95);
}
@media (max-width: 768px) {
  .hero__btn {
    width: 100%;
  }
  .hero__btn img {
    width: 100%;
  }
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__badge img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.hero__badge span {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #CFDFD9;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .hero__badge span {
    font-size: 14px;
  }
}
.hero__scene {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  aspect-ratio: 1920/800;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero__scene > img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
}
@media (max-width: 768px) {
  .hero__scene {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    aspect-ratio: 540/563;
    margin-top: 40px;
  }
}
.hero__rock {
  left: 44.896%;
  top: 14.423%;
  width: 42.604%;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero__rock {
    left: -2.35%;
    top: 16.6%;
    width: 105.48%;
  }
}
.hero__leaf {
  z-index: 2;
}
.hero__leaf--right {
  left: 73.863%;
  top: 50.908%;
  width: 6.747%;
  filter: blur(1.848px);
  animation: heroLeafFloatA 7.5s ease-in-out 0s infinite;
}
@media (max-width: 768px) {
  .hero__leaf--right {
    left: 69.36%;
    top: 52.69%;
    width: 16.7%;
    filter: blur(1.286px);
  }
}
.hero__leaf--down-left {
  left: 17.176%;
  top: 90.529%;
  width: 7.017%;
  animation: heroLeafFloatB 9s ease-in-out 0.8s infinite;
}
@media (max-width: 768px) {
  .hero__leaf--down-left {
    display: none;
  }
}
.hero__leaf--right-top {
  left: 84.303%;
  top: 29.832%;
  width: 3.947%;
  rotate: 38.2deg;
  filter: blur(1.848px);
  animation: heroLeafFloatC 6.5s ease-in-out 0.4s infinite;
}
@media (max-width: 768px) {
  .hero__leaf--right-top {
    left: 95.21%;
    top: 31.841%;
    width: 9.772%;
    filter: blur(1.286px);
  }
}
.hero__leaf--behind {
  left: 45.255%;
  top: 29.288%;
  width: 8.187%;
  rotate: -88.56deg;
  filter: blur(1.848px);
  animation: heroLeafFloatA 8s ease-in-out 1.1s infinite;
}
@media (max-width: 768px) {
  .hero__leaf--behind {
    left: -1.459%;
    top: 31.304%;
    width: 20.269%;
    filter: blur(1.286px);
  }
}
.hero__leaf--big {
  left: 67.01%;
  top: 62.167%;
  width: 15.945%;
  rotate: 45deg;
  animation: heroLeafFloatB 11s ease-in-out 0.2s infinite;
}
@media (max-width: 768px) {
  .hero__leaf--big {
    left: 52.396%;
    top: 63.835%;
    width: 39.476%;
  }
}
.hero__bottles {
  left: 39.479%;
  top: 0;
  width: 50.153%;
  z-index: 3;
  transform-origin: bottom center;
  animation: heroBottlesIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
@media (max-width: 768px) {
  .hero__bottles {
    left: -15.76%;
    top: 2.32%;
    width: 124.16%;
  }
}

@keyframes heroPulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.03);
  }
}
@keyframes heroLeafFloatA {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 6px -14px;
  }
}
@keyframes heroLeafFloatB {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: -9px -10px;
  }
}
@keyframes heroLeafFloatC {
  0%, 100% {
    translate: 0 0;
  }
  33% {
    translate: 5px -9px;
  }
  66% {
    translate: -5px -13px;
  }
}
@keyframes heroBottlesIn {
  from {
    opacity: 0;
    transform: translateY(56px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__leaf,
  .hero__bottles,
  .hero__btn {
    animation: none !important;
  }
}
.stats {
  background: linear-gradient(90deg, #E7B545 0%, #F5DA8C 50%, #E7B545 100%);
}
.stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .stats__inner {
    flex-direction: column;
    gap: 10px;
  }
}
.stats__item {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  word-break: break-word;
}
@media (max-width: 768px) {
  .stats__item {
    flex: none;
    width: 100%;
  }
}
.stats__num {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  width: 100%;
  font-variant-numeric: tabular-nums;
  background-image: linear-gradient(90deg, #0F2E27 0%, #20594D 74.09%, #0F2E27 99.52%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 1100px) {
  .stats__num {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .stats__num {
    font-size: 32px;
  }
}
.stats__label {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #516D6A;
  width: 100%;
}
@media (max-width: 480px) {
  .stats__label {
    font-size: 16px;
    line-height: 1.5;
  }
}
.stats__divider {
  flex-shrink: 0;
  width: 1px;
  height: 138px;
  background: #385355;
}
@media (max-width: 768px) {
  .stats__divider {
    width: 138px;
    height: 1px;
  }
}

.about {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-image: url(../../assets/image/about-bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .about {
    background-image: url(../../assets/image/about-bg-mobile.png);
  }
}
.about__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  min-height: 714px;
  padding: 80px 0;
}
@media (max-width: 1100px) {
  .about__inner {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .about__inner {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 80px 0;
    gap: 64px;
  }
}
.about {
  /* ---- textos + botão ---- */
}
.about__content {
  position: relative;
  z-index: 3;
  width: 390px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .about__content {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }
}
.about__txt {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: flex-start;
}
.about__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #516D6A;
}
.about__title {
  font-family: "Montserrat", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #d4a23a;
}
@media (max-width: 480px) {
  .about__title {
    font-size: 56px;
  }
}
.about__desc {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #516D6A;
}
.about__desc strong {
  font-weight: 700;
  color: #516D6A;
}
@media (max-width: 480px) {
  .about__desc {
    font-size: 16px;
    line-height: 1.5;
  }
}
.about__btn {
  display: inline-block;
  line-height: 0;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.about__btn img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}
.about__btn:hover {
  filter: brightness(0.97);
}
@media (max-width: 768px) {
  .about__btn {
    width: 100%;
  }
  .about__btn img {
    width: 100%;
  }
}
.about {
  /* ---- card ---- */
}
.about__card {
  position: relative;
  z-index: 3;
  align-self: flex-end;
  width: 295px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 40px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #c3c3c3;
}
@media (max-width: 768px) {
  .about__card {
    display: none;
  }
}
.about__card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  color: #0F2E27;
}
.about__tags {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.about__tag {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about__tag img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.about__tag span {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  color: #4a5b5e;
}
.about {
  /* ---- produto (imagem) ---- */
}
.about__product {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  z-index: 1;
  pointer-events: none;
}
.about__product img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1100px) {
  .about__product {
    width: 440px;
  }
}
@media (max-width: 768px) {
  .about__product {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    align-self: center;
    width: 360px;
    max-width: 90%;
  }
}

.benefits {
  position: relative;
  width: 100%;
}
.benefits__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 80px 0;
}
@media (max-width: 1100px) {
  .benefits__inner {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .benefits__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 64px;
  }
}
.benefits {
  /* ---- imagem + molduras ---- */
}
.benefits__media {
  position: relative;
  flex-shrink: 0;
  width: 570px;
  height: 874px;
}
@media (max-width: 1100px) {
  .benefits__media {
    width: 440px;
    height: 680px;
  }
}
@media (max-width: 768px) {
  .benefits__media {
    width: 100%;
    height: 0;
    padding-bottom: 153%;
  }
}
.benefits__frame {
  position: absolute;
  background: linear-gradient(90deg, #0F2E27 0%, #20594D 74.09%, #0F2E27 99.52%);
  border-radius: 20px;
  z-index: 1;
}
.benefits__frame--tr {
  top: 0;
  right: 0;
  width: 33.33%;
  height: 23.34%;
}
.benefits__frame--bl {
  bottom: 0;
  left: 0;
  width: 33.33%;
  height: 23.34%;
}
@media (max-width: 768px) {
  .benefits__frame {
    border-radius: 14px;
  }
}
.benefits__photo {
  position: absolute;
  top: 2.5%;
  left: 5.3%;
  width: 91%;
  height: 94.4%;
  border-radius: 30px;
  overflow: hidden;
  z-index: 2;
}
.benefits__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .benefits__photo {
    border-radius: 21px;
  }
}
.benefits {
  /* ---- textos ---- */
}
.benefits__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .benefits__content {
    width: 100%;
  }
}
.benefits__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.benefits__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 9.44px;
  text-transform: uppercase;
  color: #0F2E27;
}
.benefits__title {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  color: #0F2E27;
}
@media (max-width: 480px) {
  .benefits__title {
    font-size: 36px;
  }
}
.benefits__title--accent {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #E7B545;
}
.benefits {
  /* ---- cards ---- */
}
.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.benefits__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 40px;
  border-radius: 30px;
  background: #DEFFF8;
  border: 1px solid #d8d8d8;
}
@media (max-width: 480px) {
  .benefits__card {
    padding: 20px 24px;
  }
}
.benefits__icon {
  width: 29px;
  height: 29px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.benefits__card-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.benefits__card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  color: #0F2E27;
}
.benefits__card-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  color: #516D6A;
  margin-top: 8px;
}

.ingredients {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-image: linear-gradient(90deg, #0F2E27 0%, #20594D 50.96%, #0F2E27 99.52%);
}
.ingredients::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/image/bg-ingredientes.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .ingredients::before {
    background-image: url(../../assets/image/bg-ingredientes-mobile.png);
    background-position: center top;
  }
}
.ingredients__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 80px 0;
}
.ingredients__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  width: 100%;
}
.ingredients__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 9.44px;
  text-transform: uppercase;
  color: #d4a23a;
}
.ingredients__title {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  color: #f2f4f6;
}
@media (max-width: 480px) {
  .ingredients__title {
    font-size: 34px;
  }
}
.ingredients__title--accent {
  color: #E7B545;
}
.ingredients__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #f2f4f6;
  max-width: 960px;
}
@media (max-width: 480px) {
  .ingredients__subtitle {
    font-size: 16px;
  }
}
.ingredients__grid {
  display: grid;
  grid-template-columns: 1fr 550px 1fr;
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 24px;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 1100px) {
  .ingredients__grid {
    grid-template-columns: 1fr 420px 1fr;
  }
}
@media (max-width: 768px) {
  .ingredients__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.ingredients__list {
  display: contents;
}
@media (max-width: 768px) {
  .ingredients__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .ingredients__list:first-of-type {
    order: 2;
  }
  .ingredients__list:last-of-type {
    order: 3;
  }
}
.ingredients__list:first-of-type .ingredients__card {
  grid-column: 1;
}
.ingredients__list:last-of-type .ingredients__card {
  grid-column: 3;
}
.ingredients__list .ingredients__card:nth-child(1) {
  grid-row: 1;
}
.ingredients__list .ingredients__card:nth-child(2) {
  grid-row: 2;
}
.ingredients__list .ingredients__card:nth-child(3) {
  grid-row: 3;
}
.ingredients__media {
  grid-area: 1/2/4/3;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
.ingredients__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .ingredients__media {
    order: 1;
    width: 100%;
    height: auto;
    border-radius: 22px 22px 0 0;
  }
  .ingredients__media img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.ingredients__card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  border-radius: 30px;
  background: #FCFFFA;
  border-bottom: 4px solid #d4a23a;
}
@media (max-width: 480px) {
  .ingredients__card {
    padding: 28px;
  }
}
.ingredients__icon {
  width: 29px;
  height: 29px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.ingredients__card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  color: #0F2E27;
}
.ingredients__card-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #4a5b5e;
}

.reviews {
  position: relative;
  width: 100%;
  background: #E5FFF9;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}
.reviews__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 80px 0;
  max-width: 1280px;
}
@media (max-width: 1400px) {
  .reviews__inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .reviews__inner {
    align-items: stretch;
    gap: 32px;
  }
}
.reviews {
  /* ---- coluna esquerda ---- */
}
.reviews__intro {
  flex-shrink: 0;
  width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
@media (max-width: 1400px) {
  .reviews__intro {
    width: 100%;
    max-width: 748px;
  }
}
@media (max-width: 768px) {
  .reviews__intro {
    max-width: none;
  }
}
.reviews__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reviews__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 9.44px;
  text-transform: uppercase;
  color: #0F2E27;
}
.reviews__title {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  color: #0F2E27;
}
@media (max-width: 480px) {
  .reviews__title {
    font-size: 36px;
  }
}
.reviews__title--accent {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #d4a23a;
}
.reviews__disclaimer {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #516D6A;
}
.reviews__cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .reviews__cta {
    width: 100%;
  }
}
.reviews__btn {
  display: inline-block;
  line-height: 0;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.reviews__btn img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}
.reviews__btn:hover {
  filter: brightness(0.97);
}
@media (max-width: 768px) {
  .reviews__btn {
    width: 100%;
  }
  .reviews__btn img {
    width: 100%;
  }
}
.reviews__rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.reviews__stars {
  font-family: "Montserrat", sans-serif;
  font-size: 20.179px;
  font-weight: 700;
  letter-spacing: 1.5522px;
  color: #f4b740;
  line-height: 1;
}
.reviews__rating-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #51616d;
}
.reviews__carousel {
  flex: 1 0 0;
  min-width: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1400px) {
  .reviews__carousel {
    flex: none;
    width: 100%;
    max-width: 748px;
  }
}
@media (max-width: 768px) {
  .reviews__carousel {
    max-width: none;
  }
}
.reviews__track {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.reviews__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .reviews__slide {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}
.reviews__photo {
  flex-shrink: 0;
  width: 316px;
  height: 442px;
  border-radius: 16px;
  overflow: hidden;
}
.reviews__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .reviews__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 316/442;
  }
}
.reviews__card {
  flex: 1 0 0;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 24px;
  border-radius: 16px;
  border: 1px solid #c0c0c0;
  background: #ffffff;
}
.reviews__quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.reviews__quote-stars {
  width: 130px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}
.reviews__quote-text {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #516D6A;
}
.reviews__quote-text strong {
  font-weight: 700;
  color: #516D6A;
}
.reviews__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.reviews__author-name {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: #516D6A;
  white-space: nowrap;
}
.reviews__verified {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.reviews__verified img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.reviews__verified span {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  color: #516D6A;
  white-space: nowrap;
}
.reviews__arrows {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 24px;
  padding-left: 348px;
}
@media (max-width: 768px) {
  .reviews__arrows {
    padding-left: 0;
    justify-content: center;
  }
}
.reviews__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49.388px;
  height: 29.932px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.reviews__arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.reviews__arrow:hover {
  opacity: 0.7;
}
.reviews__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}
.reviews__arrow--prev img {
  transform: rotate(180deg);
}

.shipping {
  width: 100%;
  background: var(--degrade-verde, linear-gradient(90deg, #0F2E27 0%, #20594D 74.09%, #0F2E27 99.52%));
}
.shipping__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .shipping__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 38px;
  }
}
.shipping__truck {
  flex-shrink: 0;
  width: 212px;
  height: 116px;
}
.shipping__truck img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .shipping__truck {
    width: 160px;
    height: auto;
  }
}
.shipping__txt {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .shipping__txt {
    width: 100%;
  }
}
.shipping__title {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  color: #f2f4f6;
}
@media (max-width: 480px) {
  .shipping__title {
    font-size: 28px;
    max-width: 240px;
  }
}
.shipping__note {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
}
@media (max-width: 480px) {
  .shipping__note {
    font-size: 16px;
  }
}

.oferta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px 0;
}
.oferta .eyebrow {
  margin: 0;
  color: #0F2E27;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 9.44px;
  text-transform: uppercase;
  text-align: center;
}
.oferta .title {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  background-image: linear-gradient(90deg, #0F2E27 0%, #20594D 74.09%, #0F2E27 99.52%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 768px) {
  .oferta .title {
    font-size: 34px;
  }
}
.oferta .title i {
  font-style: normal;
  font-weight: 700;
  background: none;
  color: inherit;
  -webkit-text-fill-color: inherit;
}
.oferta .sub {
  text-align: center;
  color: #516D6A;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.4;
}
.oferta .cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
.oferta .plan {
  position: relative;
  width: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 80px 24px 40px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.oferta .plan:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.3));
  z-index: 2;
}
.oferta .head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  border-radius: 20px 20px 0 0;
  background: #0F2E27;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
}
.oferta .top {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 210px;
}
.oferta .thumb {
  position: relative;
  width: 45%;
  height: 100%;
  flex-shrink: 0;
}
.oferta .thumb > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.oferta .thumb .ship {
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 62px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 768px) {
  .oferta .thumb .ship {
    width: 54px;
    bottom: 12px;
  }
}
.oferta .seal {
  position: absolute;
  top: 92px;
  left: 39%;
  width: 75px;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 768px) {
  .oferta .seal {
    left: 35%;
  }
}
.oferta .seal img {
  width: 100%;
  height: auto;
  display: block;
}
.oferta .seal .seal-text {
  position: absolute;
  inset: 0;
  display: flex;
  transform: translateX(-1px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}
.oferta .seal .seal-text small {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.oferta .seal .seal-text b {
  font-size: 11px;
  font-weight: 700;
  margin: 2px 0;
}
.oferta .cards .plan:nth-child(3) .seal {
  left: 29%;
}
.oferta .stars {
  width: 45%;
  margin-bottom: 8px;
}
.oferta .info {
  flex: 1;
}
@media (max-width: 768px) {
  .oferta .info {
    padding-left: 25px;
  }
}
.oferta .info h3 {
  color: #0d2538;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 130%;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .oferta .info h3 {
    font-size: 22px;
  }
}
.oferta .info .supply {
  color: #516D6A;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 768px) {
  .oferta .info .supply {
    font-size: 13px;
  }
}
.oferta .info .price {
  color: #0F2E27;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 130%;
}
.oferta .info .price span {
  color: #51616d;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .oferta .info .price span {
    font-size: 12px;
  }
}
.oferta .feats {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.oferta .feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 20px;
  border-radius: 5px;
  border: 1px solid #ededed;
  background: #EEFFEE;
  color: #516D6A;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}
.oferta .feats li img {
  width: 24px;
  flex-shrink: 0;
}
.oferta .buy {
  width: 100%;
}
.oferta .cc {
  align-self: center;
  width: 280px;
}
.oferta .total {
  align-self: center;
  color: #0F2E27;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}
.oferta .total s {
  color: #6e7278;
  text-decoration-line: line-through;
  text-decoration-color: #0F2E27;
}
.oferta .total b {
  color: #0F2E27;
  font-weight: 700;
}
.oferta .featured {
  width: 454px;
  padding: 80px 24px 64px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: linear-gradient(90deg, #0F2E27 0%, #20594D 74.09%, #0F2E27 99.52%);
  z-index: 1;
}
.oferta .featured .head {
  background: linear-gradient(270deg, #F6D67A 0%, #C58D22 28.13%, #F6D67A 56.88%, #C58D22 100%);
  color: #0F2E27;
  font-size: 24px;
}
.oferta .featured .thumb {
  width: 55%;
}
.oferta .featured .info h3,
.oferta .featured .info .price {
  color: #ffffff;
}
.oferta .featured .info .supply,
.oferta .featured .info .price span {
  color: #dedede;
}
.oferta .featured .total,
.oferta .featured .total b {
  color: #f2f4f6;
}
.oferta .featured .feats li {
  background: #ffffff;
}
.oferta .featured .buy-wrap {
  position: relative;
  display: inline-block;
}
.oferta .featured .buy-wrap .buy {
  transform-origin: center;
  animation: buyPress 3s ease-in-out infinite;
}
.oferta .featured .buy-wrap .cursor {
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
  z-index: 5;
  transform-origin: 8px 4px;
  animation: cursorMove 3s ease-in-out infinite;
}
@keyframes cursorMove {
  0% {
    transform: translate(40px, 55px) scale(1);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  40% {
    transform: translate(-4px, -2px) scale(1);
    opacity: 1;
  }
  48% {
    transform: translate(-4px, -2px) scale(0.8);
  }
  56% {
    transform: translate(-4px, -2px) scale(1);
  }
  85% {
    transform: translate(-4px, -2px) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(40px, 55px) scale(1);
    opacity: 0;
  }
}
@keyframes buyPress {
  0%, 40% {
    transform: scale(1);
  }
  48% {
    transform: scale(0.93);
  }
  56% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.oferta .featured .total s {
  text-decoration-line: line-through;
  text-decoration-color: #f2f4f6;
}
@media (max-width: 768px) {
  .oferta .featured .info {
    padding-left: 0;
  }
}
@media (max-width: 900px) {
  .oferta .cards {
    flex-direction: column;
  }
  .oferta .plan,
  .oferta .featured {
    width: 100%;
    max-width: 454px;
  }
  .oferta .featured {
    order: 1;
  }
  .oferta .plan:nth-child(3) {
    order: 2;
  }
  .oferta .plan:nth-child(1) {
    order: 3;
  }
}

.guarantee {
  background: linear-gradient(90deg, #0F2E27 0%, #20594D 74.09%, #0F2E27 99.52%);
  padding: 40px 20px;
}
.guarantee__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.guarantee__seal {
  --seal-w: 291.121px;
  position: relative;
  flex-shrink: 0;
  width: var(--seal-w);
  height: calc(var(--seal-w) * 1.034377);
}
.guarantee__seal img {
  position: absolute;
  left: calc(var(--seal-w) * -0.098241);
  top: calc(var(--seal-w) * -0.172781);
  width: calc(var(--seal-w) * 1.209117);
  max-width: none;
  display: block;
}
.guarantee__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.guarantee__title {
  width: 716px;
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}
.guarantee__desc {
  width: 757px;
  margin: 0;
  color: #f2f4f6;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.guarantee__desc a {
  color: inherit;
  text-decoration: underline;
}
@media (max-width: 1023px) {
  .guarantee {
    padding: 40px 0;
  }
  .guarantee__inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 73.333vw;
    max-width: 396px;
  }
  .guarantee__seal {
    --seal-w: min(53.911vw, 291.121px);
  }
  .guarantee__content {
    width: 100%;
  }
  .guarantee__title {
    width: 100%;
    font-size: clamp(28px, 8.889vw, 48px);
  }
  .guarantee__desc {
    width: 100%;
    font-size: clamp(14px, 3.333vw, 18px);
    line-height: 1.556;
  }
}

.faq {
  padding: 80px 20px;
  background-color: #E5FFF9;
  border: 1px solid #f2b2ad;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}
.faq__container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
  width: 100%;
  max-width: 1312px;
  margin: 0 auto;
}
.faq__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 525px;
  max-width: 100%;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  align-self: flex-start;
}
.faq__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq__tag {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 9.44px;
  text-transform: uppercase;
  color: #0F2E27;
}
.faq__title {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  background-image: linear-gradient(90deg, #0F2E27 0%, #20594D 74.09%, #0F2E27 99.52%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.faq__description {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #516D6A;
  margin: 0;
}
.faq__button {
  display: inline-block;
  width: 404px;
  max-width: 100%;
  transition: transform 0.2s ease;
}
.faq__button img {
  display: block;
  width: 100%;
  height: auto;
}
.faq__button:hover {
  transform: translateY(-2px);
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 723px;
  max-width: 100%;
  flex: 1;
}
@media (max-width: 1024px) {
  .faq {
    padding: 60px 20px;
  }
  .faq__container {
    flex-direction: column;
    gap: 48px;
  }
  .faq__intro {
    width: 100%;
    position: static;
  }
  .faq__list {
    width: 100%;
  }
  .faq__title {
    font-size: 40px;
  }
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}
.faq-item__question {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #516D6A;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faq-item__question::-webkit-details-marker {
  display: none;
}
.faq-item__question::marker {
  display: none;
}
.faq-item__icon {
  width: 29.564px;
  height: 30.668px;
  grid-row: 1/span 1;
  grid-column: 2/span 1;
  justify-self: end;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  background-image: url("../image/faq.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.faq-item[open] .faq-item__question {
  font-weight: 600;
}
.faq-item[open] .faq-item__icon {
  transform: rotate(180deg);
}
.faq-item__answer {
  padding: 0 24px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #516D6A;
  margin: 0;
}
@media (max-width: 640px) {
  .faq-item__question {
    padding: 16px 20px;
    font-size: 16px;
  }
  .faq-item__answer {
    padding: 0 20px 16px;
    font-size: 15px;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 29px;
  padding-top: 40px;
  background: var(--degrade-verde, linear-gradient(90deg, #0F2E27 0%, #20594D 74.09%, #0F2E27 99.52%));
  font-family: "Montserrat", sans-serif;
}
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 0 20px;
}
.footer__logo {
  display: inline-block;
}
.footer__logo img {
  display: block;
  height: 56px;
  width: auto;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.footer__nav a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #f2f4f6;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer__nav a:hover {
  text-decoration: underline;
}
.footer__disclaimer {
  width: calc(100% - 40px);
  max-width: 1007px;
  margin: 0 auto;
  padding: 24px 32px;
  border-top: 1px solid #f2f4f6;
  border-radius: 20px;
  box-sizing: border-box;
}
.footer__disclaimer p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #f2f4f6;
  text-align: center;
}
.footer__copy {
  width: 100%;
  padding: 32px 20px;
  text-align: center;
  background: var(--Brand-primary-dark, #0F2E27);
}
.footer__copy span {
  color: #FFF;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .footer__disclaimer {
    padding: 24px 20px;
  }
}/*# sourceMappingURL=style.css.map */