/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

@font-face {
  font-family: "Roustel";
  src: url("https://biscuitbelly.com/wp-content/themes/biscuit-belly-consumer-website/resources/fonts/Roustel.ttf")
    format("truetype");
}

:root {
  --blue: #054477;
  --yellow: #f4af00;
  --green: #4ac2bf;
  --red: #f2746b;

  --font-title: "termina", sans-serif;
  --font-title-weight: 700;
  --font-text: "proxima-nova", sans-serif;
  --font-text-weight: 500;
  --font-special: "Roustel", serif;
}

html {
  overflow-x: hidden;
}
body {
  overflow-x: clip;
}

/* First */

.first-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 2%;
  gap: 16px;
}

.header-image {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.second-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.second-header-image {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  flex: 1;
  @media (max-width: 768px) {
    display: none;
  }

  & img {
    object-fit: cover;
  }
}

.header-text {
  background-color: var(--blue);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  flex: 2;
  padding: 5%;
  justify-content: center;
}

.first-section .title {
  text-transform: uppercase;
  letter-spacing: 16px;
  line-height: 4vw;
  font-size: 3.5vw;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  @media (max-width: 768px) {
    font-size: 7vw;
    line-height: 32px;
    letter-spacing: 8px;
  }
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 16px;
  line-height: 4vw;
  font-size: 3.5vw;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  color: var(--blue);
  text-shadow: 1px 0 0 #fff, /* Desplaza a la derecha */ -1px 0 0 #fff,
    /* Desplaza a la izquierda */ 0 1px 0 #fff,
    /* Desplaza abajo */ 0 -1px 0 #fff; /* Desplaza arriba */

  @media (max-width: 768px) {
    font-size: 4.8vw;
    line-height: 40px;
    letter-spacing: 8px;
  }
}

.paragraph {
  font-size: 1.3vw;
  line-height: 1;
  letter-spacing: 1px;
  font-family: var(--font-text);
  font-weight: var(--font-text-weight);
  margin-top: 16px;
  @media (max-width: 768px) {
    font-size: 20px;
    line-height: 24px;
  }
}

/* Second */

.second-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5% 2%;
  width: 100%;
  position: relative;

  @media (max-width: 768px) {
    padding: 10% 5%;
    margin: 10% 0;
  }
}

.second-section .title {
  position: relative;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 16px;
  line-height: 4vw;
  font-size: 3vw !important;

  @media (max-width: 768px) {
    font-size: 8vw !important;
    line-height: 7vw;
    letter-spacing: 1vw !important;
  }
}

.second-section .title::before {
  content: "";
  position: absolute;
  background: url("https://biscuitbelly.com/wp-content/uploads/2026/01/wavy-pattern.png")
    no-repeat center / contain;
  top: 0;
  left: -50%;
  width: 45%;
  height: 100%;

  @media (max-width: 768px) {
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
  }
}

.second-section .title::after {
  content: "";
  position: absolute;
  background: url("https://biscuitbelly.com/wp-content/uploads/2026/01/wavy-pattern.png")
    no-repeat center / contain;
  top: 0;
  right: -50%;
  width: 45%;
  height: 100%;

  @media (max-width: 768px) {
    display: none;
  }
}

.items-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
  gap: 40px;
  margin: 40px 0;

  @media (max-width: 768px) {
    grid-template-columns: unset;
    grid-template-rows: repeat(3, 1fr);
    width: 100%;
  }
}

.item-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5% 7%;
  border: 2px solid;
  border-radius: 10%;

  @media (max-width: 768px) {
    padding: 0% 8%;
  }
}

.item-container:nth-of-type(1) {
  border-color: var(--red);
}
.item-container:nth-of-type(2) {
  border-color: var(--yellow);
}
.item-container:nth-of-type(3) {
  border-color: var(--green);
}

.item-container .item-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
}

.item-container .item-image-container img {
  width: 95%;
  height: 90%;
  object-fit: contain;
}

.item-container .item-title {
  text-transform: uppercase;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  text-align: center;
  font-size: 1.7vw;
  letter-spacing: 0.3vw;
  line-height: 1.2;
  margin: 16px 0;

  @media (max-width: 768px) {
    font-size: 6vw;
    letter-spacing: 4px;
    margin: 16px 0 !important;
  }
}

.item-container:nth-of-type(1) .item-title {
  color: var(--red);
}
.item-container:nth-of-type(2) .item-title {
  color: var(--yellow);
}
.item-container:nth-of-type(3) .item-title {
  color: var(--green);
}

.item-container .item-description {
  font-family: var(--font-text);
  font-weight: var(--font-text-weight);
  text-align: center;
  font-size: 1.5vw;
  line-height: 1;
  flex-grow: 1;
  display: flex;
  align-items: center;

  @media (max-width: 768px) {
    font-size: 24px;
    line-height: 1.2;
    flex-grow: 0;
  }
}

.second-section-footer {
  width: 80%;
  display: flex;
  gap: 80px;

  @media (max-width: 768px) {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
}

.second-section-footer .first {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;

  @media (max-width: 768px) {
    margin-top: 32px;
    align-items: center;
  }
}

.second-section-footer .first .special-text {
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  text-transform: uppercase;
  font-size: 2.4vw;
  letter-spacing: 0.8vw;
  line-height: normal;
  text-align: end;

  @media (max-width: 768px) {
    text-align: center;
    font-size: 7vw;
    letter-spacing: 1.5vw;
  }
}

.second-section-footer .first .everyone-text {
  font-family: var(--font-special);
  font-weight: normal;
  color: var(--yellow);
  font-size: 8vw;
  letter-spacing: 0.1vw;
  position: absolute;
  top: 0;
  right: 0;

  @media (max-width: 768px) {
    position: relative;
    left: -2vw;
    text-align: center;
    font-size: 22vw;
    line-height: 1;
    width: min-content;
  }
}

.second-section-footer .second {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;


  @media (max-width: 768px) {
    margin-top: 20px;
  }
}

.second-section-footer .second .paragraph {
  margin-top: 0;
  margin-left: 12px;
  margin-bottom: 16px !important;
  font-size: 22px;
}

.second-section-footer .second .button-container {
  justify-content: flex-start;

  & .button {
    padding: 15px 40px;
    @media (max-width: 768px) {
      margin-left: 10px;
    }
  }
}

/* Sliding banner */

.sliding-banner {
  width: 100%;
  background-color: var(--red);
  overflow: hidden;
  padding: 20px 0;
  position: relative;

  @media (max-width: 768px) {
    padding: 15px 0;
  }
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;

  @media (max-width: 768px) {
    gap: 40px;
  }
}

.banner-text {
  font-size: 2vw;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  color: #fff;
  letter-spacing: 2px;
  flex-shrink: 0;

  @media (max-width: 768px) {
    font-size: 18px;
    letter-spacing: 1px;
  }
}

.banner-separator {
  height: 40px;
  width: auto;
  flex-shrink: 0;

  @media (max-width: 768px) {
    height: 30px;
  }
}

/* Third */

.third-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  /* margin-top: 40px; */
  margin-top: 14vw;
  margin-bottom: 24px;
  color: #fff;
  /* gap: 40px; */
  column-gap: 40px;

  .left-right-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6% 0 2% 0;
  }

  @media (max-width: 768px) {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 25% 10%;
    margin-bottom: 0;
    margin-top: 50%;
  }
}

.third-section .background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  padding-left: 2vw;
  padding-right: 2vw;
  transition: opacity 0.25s ease;
}

.third-section .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding: 12% 0 3% 5%; */
  padding: 0% 0 0% 7%;
  width: 100%;

  & .title {
    margin-bottom: 0px;
    font-family: var(--font-title);
    font-weight: var(--font-title-weight);
    text-transform: uppercase;
    letter-spacing: 16px;
    line-height: 3vw;
    font-size: 3vw;
    color: #054477;
    /* color: var(--blue); */
    text-shadow: 1px 0 0 #fff,
      /* Desplaza a la derecha */ -1px 0 0 #fff,
      /* Desplaza a la izquierda */ 0 1px 0 #fff,
      /* Desplaza abajo */ 0 -1px 0 #fff; /* Desplaza arriba */
    
  }

  & .title2 {
    font-family: var(--font-title);
    font-weight: var(--font-title-weight);
    text-transform: uppercase;
    letter-spacing: 1vw;
    line-height: 3vw;
    font-size: 2.5vw;
    margin-bottom: 0px;
  }

  & .special-text {
    font-family: var(--font-special);
    font-size: 4vw;
    margin-top: 8px;
  }

  & .paragraph {
    font-size: 1.3vw;
    line-height: 1.3vw;
    letter-spacing: 1px;
    font-family: var(--font-text);
    font-weight: var(--font-text-weight);
    margin-top: 16px;
  }

  & .paragraph2 {
    font-size: 0.9vw;
    line-height: 1vw;
    letter-spacing: 1px;
    font-family: var(--font-text);
    font-weight: var(--font-text-weight);
    margin-top: 32px;
    margin-bottom: 20px !important;
  }

  @media (max-width: 768px) {
    display: none;
  }
}

.third-section .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding: 10% 10% 5% 0; */
  padding: 1% 8% 2% 0;
  /* gap: 40px; */
  gap: 20px;
  width: 100%;
  height: 100%;
  align-self: end;

  & .top {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    & .earn-item {
      display: flex;
      flex-direction: column;
      width: 50%;
      max-width: 200px;
      text-align: center;
      text-wrap: balance;
      & .first,
      .last {
        font-size: 1.3vw;
        line-height: 1.3vw;
        letter-spacing: 1px;
        font-family: var(--font-text);
        font-weight: var(--font-text-weight);
      }

      & .number {
        font-size: 3vw;
        font-family: var(--font-title);
        font-weight: var(--font-title-weight);
        color: #054477;
        /* color: var(--blue); */
        text-shadow: 1px 0 0 var(--yellow),
          /* Desplaza a la derecha */ -1px 0 0 var(--yellow),
          /* Desplaza a la izquierda */ 0 1px 0 var(--yellow),
          /* Desplaza abajo */ 0 -1px 0 var(--yellow); /* Desplaza arriba */
      }
    }
  }

  @media (max-width: 768px) {
    display: none;
  }
}

.third-section .button-container {
  align-items: end;

  @media (max-width: 768px) {
    align-items: center;
    width: 100%;
    margin-top: 16px;
  }
}


.third-section .button-container .button {
  font-size: 1.5vw;
  padding: 15px 40px;

  @media (max-width: 768px) {
    font-size: 4.5vw;
    padding: 8px 32px;
  }
}

.primary-button {
  background-color: var(--green);
  color: #fff;
}

.primary-button:hover {
  background-color: var(--red);
  color: #fff;
  border-color: #fff;
}

.secondary-button {
  background-color: var(--yellow);
  color: var(--blue);
  margin-top: 0px !important;
}

.secondary-button:hover {
  background-color: var(--blue);
  color: #fff;
  border-color: #fff;
}

.button-disabled {
  background-color: #bbb !important;
}

.button-disabled:hover {
  background-color: #bbb !important;
  cursor: default !important;
}


.third-section .how-it-works-desktop {
  .accordion-header {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 1vw 4vw;
    width: 100%;
    margin-top: auto;

    &:hover {
      cursor: pointer;
    }

    .container-text {
      font-family: var(--font-title);
      font-weight: var(--font-title-weight);
      font-size: 1.3vw;
      letter-spacing: 0.6vw;
    }
  }
}

.third-section {
  .accordion-content {
    width: 100%;
    transition:
      max-height 0.7s ease,
      padding 0.7s ease;
    overflow: hidden;
    max-height: 0;
    text-align: left;
    padding: 0 5% 0 4%;
    margin-left: 10vw;
    padding-right: 16vw !important; 

    .item-title {
      margin-left: 1vw;
    }

    li::marker,
    .item-title {
      font-family: var(--font-title);
      font-weight: var(--font-title-weight);
      color: var(--green);
      font-size: 1.5vw;
      line-height: 1.2;
    }

    .item-text {
      font-family: var(--font-text);
      font-weight: 400;
      font-size: 1.3vw;
      line-height: 1.1;
      margin-top: 0.6vw;
      margin-bottom: 1vw !important;
      margin-left: 1vw;
    }
  }
}

/* Third mobile */

.third-section .bill {
  position: absolute;
  /* top: -40vw; */
  top: -11vw;
  /* left: 50%; */
  right: -1.3vw;
  /* transform: translateX(-50%); */
  /* width: 90%; */
  width: 30%;

  @media (max-width: 768px) {
    top: -30vw;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }
}

.third-section {
  .title {
    margin-bottom: 0px !important;
    font-family: var(--font-title);
    font-weight: var(--font-title-weight);
    text-transform: uppercase;
    letter-spacing: 2vw;
    line-height: 6vw;
    font-size: 7vw;
    color: #054477;
    /* color: var(--blue); */
    text-shadow: 1px 0 0 #fff, 
      /* Desplaza a la derecha */ -1px 0 0 #fff,
      /* Desplaza a la izquierda */ 0 1px 0 #fff,
      /* Desplaza abajo */ 0 -1px 0 #fff; /* Desplaza arriba */
    
      @media (max-width: 768px) {
        font-size: 6vw !important;
        margin-bottom: 0px !important;
        letter-spacing: 2vw !important;
      }
  }

  .title2 {
    font-family: var(--font-title);
    font-weight: var(--font-title-weight);
    text-transform: uppercase;
    /* letter-spacing: 2.3vw; */
    letter-spacing: 2vw;
    line-height: 1.2;
    font-size: 6vw;
    margin-bottom: 0px;
  }

  .special-text {
    font-family: var(--font-special);
    font-size: 10vw;
    line-height: 1;
    margin: 8px 0;
  }

  .paragraph {
    font-size: 5vw;
    max-width: 60vw;
    /* text-wrap: balance; */
    line-height: 1;
    letter-spacing: 1px;
    font-family: var(--font-text);
    font-weight: var(--font-text-weight);
    margin: 8px 0 16px 0;
  }

  .earn-container {
    display: none;
    flex-direction: column;
    position: relative;
    gap: 40px;
    margin-top: 40px;

    &::before {
      position: absolute;
      content: "";
      top: -30px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      height: 2vw;
      background: url("https://biscuitbelly.com/wp-content/uploads/2026/01/wavy-pattern.png") no-repeat center / contain;
    }

    .earn-item {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 50vw;
      text-align: center;
      text-wrap: balance;

      .first,
      .last {
        font-size: 6vw;
        line-height: 1.1;
        letter-spacing: 1px;
        font-family: var(--font-text);
        font-weight: 700;
      }
      .number {
        font-size: 15vw;
        line-height: 1.2;
        font-family: var(--font-title);
        font-weight: var(--font-title-weight);
        color: #054477;
        /* color: var(--blue); */
        -webkit-text-stroke-width: thin;
        background-position: center center;
        -webkit-text-stroke-color: var(--yellow);
      }
    }
    @media (max-width: 768px) {
      display: flex;
    }
  }

  .paragraph2 {
    font-size: 4vw;
    line-height: 5vw;
    letter-spacing: 1px;
    font-family: var(--font-text);
    font-weight: var(--font-text-weight);
    margin-top: 8px;
  }
}

.third-section .how-it-works-mobile {
  .accordion-header {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 3vw 0;
    width: 100%;
    margin-top: 6vw;

    &:hover {
      cursor: pointer;
    }

    .container-text {
      font-family: var(--font-title);
      font-weight: var(--font-title-weight);
      font-size: 5vw;
      letter-spacing: 0.6vw;
    }
  }

  .accordion-content {
    margin-top: 4vw;
    width: 100%;
    transition: max-height 0.7s ease;
    overflow: hidden;
    max-height: 0;
    text-align: left;
    padding: 0 5% 0 10%;

    li {
      margin-top: 6vw;
    }

    li::marker,
    .item-title {
      font-family: var(--font-title);
      font-weight: var(--font-title-weight);
      color: var(--green);
      font-size: 5vw;
      line-height: 1.2;
    }

    .item-text {
      font-family: var(--font-text);
      font-weight: 400;
      margin-left: -7vw;
      font-size: 5vw;
      line-height: 1.2;
      margin-top: 2vw;
    }
  }
}

/* Before fourth section */

.before-fourth {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 2%; */
  margin-top: 5%;

  @media (max-width: 768px) {
    width: 90%;
    margin: 40px 5% 0 5%;
  }
}



/* Fourth section */

.fourth-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5% 2%;
  width: 100%;

  @media (max-width: 768px) {
    /* background-color: var(--red);
    padding: 10%;
    margin: 10% 5%;
    width: 90%; */
    width: 90%;
    background-color: var(--red);
    padding: 10%;
    margin: 5%;
  }
}

.fourth-section .title {
  position: relative;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 16px;
  line-height: 4vw;
  font-size: 2.6vw !important;
  text-align: center;

  @media (max-width: 768px) {
    color: #fff;
    text-align: left;
    font-size: 30px !important;
    /* line-height: 40px; */
    line-height: 7vw;
    letter-spacing: 8px;
    width: 100%;
  }
}

.fourth-section .title .andmore {
  display: inline-block;
  vertical-align: middle;
  text-transform: lowercase;
  font-family: var(--font-special);
  font-size: 2vw;
  font-weight: 200;
  transform: rotate(-8deg);
  letter-spacing: 1px;
  color: var(--red);
  height: 80%;
  position: relative;
  top: -10px;

  @media (max-width: 768px) {
    height: 100%;
    font-size: 10vw;
    color: var(--blue);
  }
}

.fourth-section .title::before {
  content: "";
  position: absolute;
  background: url("https://biscuitbelly.com/wp-content/uploads/2026/01/wavy-pattern.png")
    no-repeat center / contain;
  top: 0;
  left: -35%;
  width: 30%;
  height: 100%;

  @media (max-width: 768px) {
    display: none;
  }
}

.fourth-section .title::after {
  content: "";
  position: absolute;
  background: url("https://biscuitbelly.com/wp-content/uploads/2026/01/wavy-pattern.png")
    no-repeat center / contain;
  top: 0;
  right: -35%;
  width: 30%;
  height: 100%;

  @media (max-width: 768px) {
    display: none;
  }
}

.fourth-section .paragraph {
  width: 60%;
  font-size: 1.3vw;
  line-height: 1.3vw;
  letter-spacing: 1px;
  font-family: var(--font-text);
  font-weight: var(--font-text-weight);
  margin-top: 16px;
  text-align: center;

  @media (max-width: 768px) {
    text-align: left;
    width: 100%;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
  }
}

.fourth-section-desktop {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  padding: 5% 2%;
  width: 100%;
  gap: 24px;
  @media (max-width: 768px) {
    display: none;
  }
}

.fourth-section-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5%;
  width: 100%;
  flex: 2;
  background-color: var(--red);
  gap: 32px;
  height: 100%;

  & .button-container {
    justify-content: flex-start;

    & .button {
      padding: 16px 40px;
    }
  }
}

.fourth-section-text .title {
  position: relative;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  text-transform: uppercase;
  letter-spacing: 16px;
  line-height: 3vw;
  font-size: 2.6vw !important;
  color: #fff;
  margin-bottom: 0px !important;
}

.fourth-section-text .title .andmore {
  display: inline-block;
  vertical-align: middle;
  text-transform: lowercase;
  font-family: var(--font-special);
  font-size: 2vw;
  font-weight: 500;
  transform: rotate(-8deg);
  letter-spacing: 1px;
  color: var(--blue);
  position: relative;
  top: -10px;
}

.fourth-section-text .paragraph {
  width: 100%;
  font-size: 1.3vw;
  line-height: 1.3vw;
  letter-spacing: 1px;
  font-family: var(--font-text);
  font-weight: var(--font-text-weight);
  margin-top: 0px;
  color: #fff;
}

.fourth-section-image {
  display: flex;
  width: 100%;
  flex: 1;

  & img {
    width: 100%;
    object-fit: cover;
  }
}

/* Carousel */

.carousel-swiper {
  width: 100%;
  margin-bottom: 24px;
  padding: 40px 0;
  position: relative;

  @media (max-width: 768px) {
    width: 90%;
  }
}

.carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 400px !important;

  @media (max-width: 768px) {
    width: 100% !important;
  }
}

.carousel-item-image {
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;

  @media (max-width: 768px) {
    width: 100%;
    height: 300px;
  }
}

.carousel-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-item-title {
  font-size: 14px;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 8px;

  @media (max-width: 768px) {
    font-size: 4vw;
  }
}

.carousel-button-prev,
.carousel-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px !important;
  height: 90% !important;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: all 0.3s ease;
  color: #fff;

  @media (max-width: 768px) {
    width: 40px;
    height: 40px;
  }
}

.carousel-button-prev {
  left: 0 !important;
  background: linear-gradient(to left, transparent, rgba(74, 194, 191, 0.9));

  &::after {
    content: "‹";
    font-size: 30px;
    font-weight: bold;
    color: #fff;
  }

  &:hover::after {
    color: var(--green);
  }
}

.carousel-button-next {
  right: 0 !important;
  background: linear-gradient(to right, transparent, rgba(74, 194, 191, 0.9));

  &::after {
    content: "›";
    font-size: 30px;
    font-weight: bold;
    color: #fff;
  }

  &:hover::after {
    color: var(--green);
  }
}

/* Fin carousel */

/* Fifth section */

.fifth-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 95%;
  /* padding: 2%; */
  margin: 2.5%;
  border: 4px solid var(--yellow);
  /* background-color: #eee; */

  @media (max-width: 768px) {
    margin: 10% 2.5%;
    padding: 10%;
    width: 95%;
    background-color: #f7f9fb;
  }

  &::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 4px solid var(--red);
    pointer-events: none;
    z-index: 1;
  }
}

.fifth-section .inside {
  padding: 3%;
  background-color: #f7f9fb;
}

.fifth-section .first-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.fifth-section .first-container .title {
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 16px;
  line-height: 4vw;
  font-size: 3vw;

  @media (max-width: 768px) {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 8px;
    color: #f7f9fb;
    text-shadow: 1px 0 0 #000, /* Desplaza a la derecha */ -1px 0 0 #000,
      /* Desplaza a la izquierda */ 0 1px 0 #000,
      /* Desplaza abajo */ 0 -1px 0 #000; /* Desplaza arriba */
    margin-top: 32px;
    margin-bottom: -10px !important;
  }
}

.fifth-section .first-container .paragraph {
  font-family: var(--font-text);
  font-weight: var(--font-text-weight);
  width: 100%;
  font-size: 1.3vw;
  line-height: 1.3vw;
  letter-spacing: 1px;
  margin: 32px 0;
  text-align: center;
  width: 80%;

  @media (max-width: 768px) {
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    width: 100%;
  }
}

.fifth-section .buttons-container {
  align-items: center;
  margin-top: 0;
}

.fifth-section .second-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;

  @media (max-width: 768px) {
    display: none;
  }
}

.fifth-section .second-container .image-container {
  width: 80%;
}

.fifth-section .second-container form {
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 2;

  & .row {
    display: flex;
    gap: 16px;
  }

  & input,
  textarea,
  select {
    margin-bottom: 16px;
    width: 100%;
    background-color: #fff;
    color: var(--red);
    font-family: var(--font-text);
    font-weight: bold;
    padding: 16px 10px;
    border: 1px solid #00000032;
    outline: none;
  }

  & input::placeholder,
  textarea::placeholder {
    color: var(--red);
  }

  & label {
    visibility: hidden;
    display: none;
  }

  textarea {
    resize: none;
    width: 100%;
    overflow-x: hidden;
  }

  & .form-button {
    width: fit-content;
    align-self: center !important;
    padding: 2% 10%;
    font-size: 1.2vw;
    background-color: var(--blue);
    color: #fff;
    outline: none;
    cursor: pointer;
  }

  & .form-button:hover {
    background-color: var(--red);
    color: #fff;
    border-color: #fff;
  }
}

/* Sixth section */

.sixth-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2% 2%;
  width: 100%;
  margin-top: 40px;

  @media (max-width: 768px) {
    padding: 5%;
    margin-top: 30%;
  }
}

.sixth-section .title {
  position: relative;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 16px;
  line-height: 4vw;
  font-size: 2.6vw !important;
  text-align: center;

  @media (max-width: 768px) {
    font-size: 7vw !important;
    line-height: 40px;
    letter-spacing: 2vw !important;
    width: 100%;
    margin-bottom: 0px !important;
  }
  .sixth-section .title .separador1 {
    margin-right: 15px !important;
  }
}

.sixth-section .title .separador {
  margin-right: 15px;
  @media (max-width: 768px) {
    margin-right: 0px !important;
  }
}
.sixth-section .title .separador1 {
  margin-left: 15px;
  @media (max-width: 768px) {
    margin-right: 15px !important;
    margin-left: 0px;
  }
}

.sixth-section .title::before {
  content: "";
  position: absolute;
  background: url("https://biscuitbelly.com/wp-content/uploads/2026/01/wavy-pattern.png")
    no-repeat center / contain;
  top: 0;
  left: -35%;
  width: 30%;
  height: 100%;

  @media (max-width: 768px) {
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 100%;
  }
}

.sixth-section .title::after {
  content: "";
  position: absolute;
  background: url("https://biscuitbelly.com/wp-content/uploads/2026/01/wavy-pattern.png")
    no-repeat center / contain;
  top: 0;
  right: -35%;
  width: 30%;
  height: 100%;

  @media (max-width: 768px) {
    display: none;
  }
}

.sixth-section .paragraph {
  width: 70%;
  font-size: 1.6vw;
  line-height: 1;
  letter-spacing: 1px;
  font-family: var(--font-text);
  font-weight: var(--font-text-weight);
  margin: 32px 0;
  text-align: center;

  @media (max-width: 768px) {
    width: 100%;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
    text-wrap: balance;
  }
}


/* Photos section */

.photos-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5% 10%;

  @media (max-width: 768px) {
    padding: 0;
    margin: 20% 0;
  }

  & .photo {
    width: 100%;
    height: auto;
  }
}

.photos-container {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  min-height: 230vw;
}

.photo-card {
  position: relative;
  width: 80%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.photo-card-1 {
  top: 0;
  left: 3%;
  z-index: 1;
}

.photo-card-2 {
  top: -20%;
  right: -25%;
  z-index: 3;
}

.photo-card-3 {
  top: -40%;
  left: -5%;
  transform: rotateZ(-10deg);
  z-index: 2;
}

/* FAQ section */

.faq-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f7f9fb;
  padding: 5% 10%;

  @media (max-width: 768px) {
    padding: 10% 0;
    background-color: #fff;
  }
}

.faq-section .title {
  position: relative;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 16px;
  line-height: 4vw;
  font-size: 4vw !important;
  color: #f7f9fb;
  -webkit-text-stroke-width: 3px;
        background-position: center center;
        -webkit-text-stroke-color: #054477;

  @media (max-width: 768px) {
    font-size: 16vw !important;
    line-height: 40px;
    letter-spacing: 20px;
    background-color: #fff;
    color: #fff;
    -webkit-text-stroke-width: thin;
        background-position: center center;
        -webkit-text-stroke-color: #054477;
  }
}

.faq-section .title::before {
  content: "";
  position: absolute;
  background: url("https://biscuitbelly.com/wp-content/uploads/2026/01/wavy-pattern.png")
    no-repeat center / contain;
  top: 0;
  left: -115%;
  width: 100%;
  height: 100%;

  @media (max-width: 768px) {
    top: -15vw;
    left: 50%;
    transform: translateX(-55%);
    width: 100%;
    height: 100%;
  }
}

.faq-section .title::after {
  content: "";
  position: absolute;
  background: url("https://biscuitbelly.com/wp-content/uploads/2026/01/wavy-pattern.png")
    no-repeat center / contain;
  top: 0;
  right: -105%;
  width: 100%;
  height: 100%;

  @media (max-width: 768px) {
    display: none;
  }
}

.faq-container {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;

  @media (max-width: 768px) {
    padding: 5%;
    background-color: #f7f9fb;
  }
}

.faq-item {
  border-bottom: 1px solid #000;
  padding: 16px 0 10px 0;

  @media (max-width: 768px) {
    padding: 16px 0;
  }

  &:first-child {
    padding-top: 0;
  }

  &:last-child {
    border-bottom: none;
  }
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  padding: 10px 0;

  & span {
    font-family: var(--font-text);
    font-weight: bold;
    font-size: 2vw;
    color: var(--green);
    text-align: left;
    flex: 1;

    @media (max-width: 768px) {
      font-size: 18px;
    }
  }
}

.faq-toggle {
  position: relative;
  background: none;
  border: none;
  font-size: 2vw;
  /* color: var(--yellow); */
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
  margin-left: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 2;

  @media (max-width: 768px) {
    font-size: 24px;
    width: 40px;
    height: 40px;
  }

  &:hover {
    transform: scale(1.1);
  }

  &::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: url("https://biscuitbelly.com/wp-content/uploads/2026/01/dough.svg")
      no-repeat center / contain;
    z-index: -1;
  }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;

  & p {
    font-family: var(--font-text);
    font-weight: var(--font-text-weight);
    font-size: 1.2vw;
    line-height: 1.5;
    color: #000;
    margin: 0 0 10px 0;

    @media (max-width: 768px) {
      font-size: 16px;
    }
  }

  & a {
    color: #000;
    text-decoration: underline;
    cursor: pointer;

    &:hover {
      color: var(--blue);
    }
  }

  & ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    columns: 2;

    @media (max-width: 768px) {
      columns: 1;
    }

    & li {
      margin-bottom: 8px;
      break-inside: avoid;
    }

    & a {
      color: #000;
      text-decoration: underline;
      cursor: pointer;
      font-family: var(--font-text);
      font-weight: var(--font-text-weight);
      font-size: 1.1vw;

      @media (max-width: 768px) {
        font-size: 16px;
      }

      &:hover {
        color: var(--blue);
      }
    }
  }
}

/* PUNTOS AMARILLOS MOBILE */
@media (max-width: 768px) {
  .article-single .article__body ul li:before {
    display: none;
  }
}

@media (max-width: 768px) {
  .faq-answer#cities {
    display: block !important;
  }
}

.faq-answer#cities {
  display: flex;
  gap: 40px;
  height: 100%;

  & ul {
    display: flex;
    flex-direction: column;
    /* margin: 0; */
    margin-left: -20px;
    & li {
      margin: 0;
    }
  }
}

.faq-item.active .faq-answer {
  padding: 20px 0;

  @media (max-width: 768px) {
    padding: 16px 0;
  }
}

/* Button container */

.button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-container.left-aligned {
  @media (max-width: 768px) {
    justify-content: flex-start;
    margin-left: 5%;
  }
}

.button-container .button {
  font-size: 1.5vw;
  padding: 1% 3%;

  @media (max-width: 768px) {
    font-size: 4vw;
    padding: 15px 40px;
  }
}

.buttons-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 16px;
}

.button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 40px;
  text-transform: uppercase;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  font-size: 1.2vw;
  margin: 16px 0;
  -webkit-box-shadow: 5.56px 5.75px 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 5.56px 5.75px 0 0 rgba(0, 0, 0, 0.2);
  border: 1px solid transparent;
  line-height: 1.15;
  transition: all 0.4s;

  @media (max-width: 768px) {
    font-size: 4vw;
    letter-spacing: 1px;
  }
}

.primary-button {
  background-color: var(--green);
  color: #fff;
}

.primary-button:hover {
  background-color: var(--red);
  color: #fff;
  border-color: #fff;
}

.secondary-button {
  background-color: var(--yellow);
  color: var(--blue);
  margin-top: 0px !important;
}

.secondary-button:hover {
  background-color: var(--blue);
  color: #fff;
  border-color: #fff;
}

/* General */

.mobile {
  @media (min-width: 769px) {
    display: none;
  }
}

.desktop {
  @media (max-width: 768px) {
    display: none;
  }
}

/* Modal Styles */

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  /* left: 0;
  top: 13%; */
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: #eee;
  padding: 30px;
  border: 4px solid var(--yellow);
  box-shadow: 0 0 0 4px var(--red), 0 10px 25px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  /* width: 80%; */
  max-width: 80%;
  /* max-height: calc(90vh - 70px); */
  overflow-y: auto;
  position: absolute;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 32px;
  font-weight: bold;
  color: var(--red);
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  transform: scale(1.2);
  color: var(--blue);
}

.modal-title {
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 8px;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
  color: var(--blue);
}

.modal-paragraph {
  font-family: var(--font-text);
  font-weight: var(--font-text-weight);
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #000;
}

.modal-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.modal-form .row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.modal-form input,
.modal-form textarea {
  margin-bottom: 16px;
  width: 100%;
  background-color: #fff;
  color: var(--red);
  font-family: var(--font-text);
  font-weight: bold;
  padding: 12px 10px;
  border: 1px solid #000;
  outline: none;
  font-size: 16px;
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
  color: var(--red);
}

.modal-form label {
  visibility: hidden;
  display: none;
}

.modal-form textarea {
  resize: none;
  overflow-x: hidden;
}

.modal-form .form-button {
  width: fit-content;
  align-self: center;
  padding: 12px 32px;
  font-size: 16px;
  background-color: var(--blue);
  color: #fff;
  outline: none;
  cursor: pointer;
  margin-top: 16px;
}

.modal-form .form-button:hover {
  background-color: var(--red);
  color: #fff;
  border-color: #fff;
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 20px;
    margin: 20px;
  }

  .modal-close {
    right: 15px;
    top: 10px;
    font-size: 28px;
  }

  .modal-title {
    font-size: 16px !important;
    line-height: 28px !important;
    letter-spacing: 4px !important;
    margin-bottom: 16px !important;
  }

  .modal-paragraph {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .modal-form .form-button {
    padding: 12px 25px !important;
    font-size: 14px !important;

  }

  /* .modal-form input[type="date"] {
   height: 50px;
   width: 78vw;
} */

.modal-form input {
   /* height: 30px !important;
   width: 69vw !important; */
   font-size: 14px !important;
}
}

@media (min-width: 769px) {
  .modal {
    display: none !important;
  }
}
