:root {
    --fs-xxl: clamp(2.4rem, 5vw, 2.8rem);
    --fs-biggest: clamp(3.2rem, 5vw, 6rem);
    --height-header: 10rem;
  }
  
  /* ------------------ */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  h1,h2,h3,h4 {
    font-family:"Poppins", sans-serif;
    color: #002317;
    font-weight: 700;
  }
  html {
    font-size: 61.9%;
    scroll-behavior: smooth;
  }
  body,h1,h2,h3,h4,ul,p {
    margin: 0;
    padding: 0;
  }
  ul {
    list-style: none;
  }
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  a {
    text-decoration: none;
    color: #686666;
  }
  input, button {
    font: inherit;
    outline: none;
  }
  button {
    cursor: pointer;
    border: none;
  }
  main {
    overflow: hidden;
  }
  body {
    font-family:"Rubik", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color:#000000;
    margin-top: var(--height-header);
  }
   /* ------------------- */
  .section {
    padding: 4rem ;
  }
  .section__header {
    text-align: center;
    padding-bottom: 3rem;
  }
  .section__title {
    font-size: var(--fs-xxl);
    color: #002317;
    margin-bottom: 2rem;
    font-size: 2.5rem;
  }
  .section__subtitle {
    font-size: 4rem;
    font-weight: 700;
    color: #ff7b00;
    font-family: "Poppins", sans-serif;
  }
  .container {
    width: 100%;
    max-width: 100rem;
    margin: auto;
  }
  .d-grid {
    display: grid;
    gap: 3rem;
  }  
  .btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    border-radius: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
    transition: 0.4s ease-in-out;
  }  
  .btn--primary {
    background-color: #ff6600;
    color: #ffff;
  }  
  .btn--primary:hover {
    background-color: #ff9924;
  }

  @media (max-width: 768px) {
    .section {
      padding: 2rem;
    }
  
    .section__title {
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }
  
    .section__subtitle {
      font-size: 3rem;
    }
  
    .d-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .btn {
      padding: 1rem 2rem;
      font-size: 1.7rem;
    }
  }
  
  @media (max-width: 480px) {
    .section {
      padding: 1rem;
    }
  
    .section__title {
      font-size: 1.8rem;
    }
  
    .section__subtitle {
      font-size: 2.5rem;
    }
  
    .btn {
      padding: 0.8rem 1.5rem;
      font-size: 1.7rem;
    }
  }
  
  /* ---------------- */
  .header {
    background-color: #ffff;
    width: 100%;
    height: var(--height-header);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    transition: 0.4s ease-in-out;
    z-index: 1010;
  }
  .header--scroll {
    --height-header: 7rem;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
  }
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  .nav__brand {
    font-size: 1.8rem;
    font-weight: 700;
    color:#002317;
  }
  .nav__brand span {
    color: #ff7b00;
  }  
  .nav__open, .nav__close {
    font-size: 2.5rem;
    color: #002317;
    cursor: pointer;
    transition: 0.4s ease-in-out;
  }  
  .nav__open:hover, .nav__close:hover {
    color: #ff7b00;
  }  
  .nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }  
  .nav__link {
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #002317;
    transition: 0.4s ease-in-out;
  }  
  .nav__link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0.3rem;
    background-color: #ff7b00;
    bottom: -1rem;
    transition: 0.4s ease-in-out;
  }  
  .nav__link--active::before {
    width: 50%;
  }  
  .nav__link--active, .nav__link:hover {
    color:#ff7b00;
  }  
  @media screen and (max-width: 968px) {
    .nav__menu {
      position: fixed;
      top: 0;
      right: -100%;
      background-color: #ffff;
      box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      max-width: 28rem;
      height: 100vh;
      transition: 0.4s ease-in-out;
    }  
    .nav__menu--open {
      right: 0;
    }  
    .nav__close {
      position: absolute;
      top: 3rem;
      right: 3rem;
    }
  }
   /* -------------- */
  .home {
    background: linear-gradient(180deg, #ffffff 0%, #d48815 100%);
  }
  .home__img{
    max-width: 218%;  
    height: auto;  
    margin-right: -40rem;
    filter: drop-shadow(0 2rem 1rem rgba(39, 38, 38, 0.616));
  }
  .home__wrapper {
    min-height: calc(100vh - var(--height-header));
    padding: 3rem 0;
    align-content: center;
    justify-items: center;
  }  
  .home__content {
    text-align: center;
  }  
  .home__title {
    font-size: 50px;
    color: #002317;
    margin-bottom: 0.9rem;
    font-weight: bold;
  }  
  .home__title span {
    color: #ff5e00;
  }  
  .home__description {
    margin-bottom: 3.9rem;
    color: #e1fff1;
    font-size: 20px;
    font-weight: 500;
  }  

  @media (max-width: 768px) { 
    .home__img {
      max-width: 100%;
      margin-right: 0; 
      margin-left: auto;
      margin-right: auto; 
    }
    .home__description {
      font-size: 16px;
    }  
    .home__title {
      font-size: 30px;
    }  
  }

  /* ------------------ */
  .about__wrapper {
    justify-items: center;
  }  
  .about__content {
    text-align: center;
  }  
  .about__description {
    margin-bottom: 2.5rem;
  }  
  .about__img {
    border-radius: 2%;
    width: 80%;
    height: auto; 
  }  

  @media (max-width: 768px) {
    .about__img {
      display: none; 
    }
    .about__description {
      font-size: 14.7px;
    }  
  }

  /* ------------- */

  .Coffee__item {
    position: relative;
    width: 100%;
    max-width: 26rem;
    margin: auto;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Coffee__img {
    width: 100%;
    height: 200px; 
    object-fit: cover; 
    transition: 0.4s ease-in-out;
    border-radius: 2rem;
}

.Coffee__item:hover .Coffee__img {
    transform: scale(1.1);
}

.Coffee__info {
    margin-top: 1rem;
    text-align: center;
}

.Coffee__name {
    color: #000000;
    font-weight: 500;
    font-size: 2rem;
}
.btnn-container {
  text-align: center;
}
.btnn {
  display: inline-block;
  padding: 1.5rem 3rem;
  border-radius: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
  transition: 0.4s ease-in-out;
}  
.btnn--primary {
  background-color: #ff6600;
  color: #ffff;
}  
.btnn--primary:hover {
  background-color: #ff9924;
}


@media (max-width: 768px) {

  .btnn {
    padding: 1rem 2rem;
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {

  .btnn {
    padding: 0.8rem 1.5rem;
    font-size: 1.7rem;
  }
}

  /* ----------------*/
  .newsletter__wrapper {
    background-color:#021527;
    border-radius: 2rem;
    padding: 5rem;
    justify-content: center;
    text-align: center;
    max-width: 80rem;
  }  
  .newsletter__title,
  .newsletter__description {
    color:#ffff;
    margin-bottom: 2rem;
  }  
  .form__group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }  
  .nn {
    width: 100%;
    max-width: 30rem;
    color: #ffffff;
    padding: 1.3rem 1.5rem;
    font-weight: bold;
  }  
  /* ---------------- */
  .footer__wrapper {
    padding: 8rem 0 3rem;
  }  
  .footer__brand {
    color: #002317;
    font-size: 2rem;
    margin-bottom: 1rem;
  }  
  .footer__brand span {
    color: #ff5e00;
  }  
  .footer__description {
    margin-bottom: 1.2rem;
    color: #848181;
  }  
  .social__list {
    display: flex;
    align-items: center;
    column-gap: 2rem;
  }  
  .social__link {
    font-size: 1.8rem;
    color: #002317;
    transition: 0.4s ease-in-out;
  }  
  .social__link:hover {
    color: #ff9100;
  }  
  .footer__title {
    color: #002317;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
  }  
  .footer__item {
    margin-bottom: 1rem;
  }  
  .footer__link {
    transition: 0.4s ease-in-out;
  }  
  .footer__link:hover {
    color: #ff7b00;
  }  
  .footer__copyright {
    text-align: center;
    font-size: 1.4rem;
    padding: 3rem 0;
    color: #000;
    font-weight: 500;
  }
  .footer__copyright span{
    color: #ff5e00;
  }  

  .fotimg {
    display: grid;
    justify-content: center; 
    align-items: center; 
  }
  
  .fotimg img {
    width: 100%; 
    max-width: 1200px; 
    height: auto; 
  }
  .footer__logo {
    width: 300px; 
    height: auto;
  }
  
  .logo__img {
    width: 100%; 
    height: auto;
  }
  
  @media only screen and (max-width: 768px) { 
    .footer__logo {
      display: none; 
    }
  }  
  /* ---------------*/
  ::-webkit-scrollbar {
    width: 1rem;
    background-color: #adb1b4;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #ff7b00;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #fc9c30;
  }  
  /* --------------- */
  @media screen and (min-width: 768px) {
    .home__wrapper {
      grid-template-columns: repeat(2, 1fr);
      align-items: center;
    }  
    .home__content {
      text-align: initial;
    }  
    .home__img {
      justify-self: end;
    }  
    .about__wrapper {
      grid-template-columns: repeat(2, 1fr);
      align-items: center;
    }  
    .about__content {
      text-align: initial;
    }  
    .about__img {
      order: -1;
    }  
    .swiper__navigation {
      justify-content: flex-end;
    }  
    .discover__wrapper {
      grid-template-columns: repeat(2, max-content);
    }  
    .offer__wrapper {
      grid-template-columns: repeat(2, 1fr);
      align-items: center;
    }  
    .offer__content {
      text-align: initial;
    }
    .offer__img {
      justify-self: end;
    }  
    .footer__wrapper {
      grid-template-columns: repeat(2, 1fr);
    }
  }  
  @media screen and (min-width: 968px) {
    .nav__open, .nav__close {
      display: none;
    }  
    .nav__list {
      flex-direction: initial;
    }  
    .Coffee__wrapper {
      max-width: 85rem;
    }  
    .discover__wrapper {
      grid-template-columns: repeat(3, max-content);
    }
    .discover__item:nth-child(2) {
      transform: translateY(2rem);
    }  
    .footer__wrapper {
      grid-template-columns: 2fr 1fr 1fr 1fr;
      justify-items: center;
    }
  }
  

  .whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon {
    width: 100%;
    height: auto;
    border-radius: 50px;
}

@media screen and (max-width: 767px) {
    .whatsapp_float {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 10px;
        font-size: 22px;
    }
    
    .whatsapp-icon {
        width: 100%;
        height: auto;
    }
}

