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

body {
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

#coffee-detail {
  display: block;
  width: 100%;
  background-color: #FEFCF6;
  position: relative;
  overflow: hidden;
  min-height: 900px;
  max-height: 900px;
}

@media (max-width: 768px) {
  #coffee-detail {
    min-height: auto;
    max-height: none;
  }
}

@media (max-width: 900px) {
  #coffee-detail {
    max-height: auto;
  }
}

#coffee-detail .bandola {
  position: absolute;
  top: 0;
  right: 0%;
  z-index: 2;
}

#coffee-detail .hoja {
  position: absolute;
  bottom: 0;
  left: 0%;
  z-index: 2;
}

#coffee-detail .bolsa-cafe {
  max-width: 350px;
  opacity: 0;
  animation: slideIn 0.3s ease-out forwards;
}

@media (max-width: 768px) {
  #coffee-detail .bolsa-cafe {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

#coffee-detail .descripcion-item {
  color: white;
  padding: 36px;
  border-radius: 32px;
  width: 100%;
  display: none;
  opacity: 0;
  line-height: 1.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
}


@media (max-width: 768px) {
  #coffee-detail.hovered .bolsa-cafe {
    animation: none;
    transform: none;
    max-width: 350px;
  }
}

#coffee-detail.hovered .descripcion-item {
  display: block;
  animation: slideUp 0.4s ease-out 0.4s forwards;
}

#coffee-detail.hovered .colorful-hovered {
  border-radius: 32px;
  background-color: transparent;
}

#coffee-detail .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

#coffee-detail .video-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

#coffee-detail .video-background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#coffee-detail h2 {
  text-align: center;
  margin-top: 4rem;
  color: #7B5C7E;
}

#coffee-detail h5 {
  text-align: center;
  margin-bottom: 5rem;
  color: #346670;
}

#coffee-detail .colorful-hovered {
  position: relative;
}

#coffee-detail.altura .video-background .overlay {
  background: rgba(85, 141, 154, 0.8196078431);
}

#coffee-detail.altura .descripcion-item {
  background: rgba(85, 141, 154, 0.8196078431);
}

#coffee-detail.altura h2 {
  color: white;
}

#coffee-detail.altura h5 {
  color: #D8FAE6;
}

#coffee-detail.variedad .video-background .overlay {
  background: rgba(123, 92, 126, 0.768627451);
}

#coffee-detail.variedad .descripcion-item {
  background: rgba(123, 92, 126, 0.768627451);
}

#coffee-detail.variedad h2 {
  color: white;
}

#coffee-detail.variedad h5 {
  color: #EEBDF3;
}

#coffee-detail.origen .video-background .overlay {
  background: rgba(211, 179, 114, 0.7803921569);
}

#coffee-detail.origen .descripcion-item {
  background: rgba(211, 179, 114, 0.7803921569);
}

#coffee-detail.origen h2 {
  color: white;
}

#coffee-detail.origen h5 {
  color: #FFE3A9;
}

#coffee-detail.proceso .video-background .overlay {
  background: rgba(87, 101, 104, 0.8078431373);
}

#coffee-detail.proceso .descripcion-item {
  background: rgba(87, 101, 104, 0.8078431373);
}

#coffee-detail.proceso h2 {
  color: white;
}

#coffee-detail.proceso h5 {
  color: #FFECC4;
}

#coffee-detail .coffee-lines-left {
  position: absolute;
  bottom: 0;
  z-index: 1;
}

#coffee-detail .content-coffee {
  position: relative;
  z-index: 1;
}

#coffee-detail .content-coffee h2 {
  text-transform: uppercase;
}

#coffee-detail .coffee-items-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  #coffee-detail .coffee-items-slider {
    display: flex;
  }
}

#coffee-detail .desc-coffee-item {
  background-color: white;
  border-radius: 32px;
  padding: 20px;
  text-align: center;
  width: 250px;
  height: 250px;
  margin: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  nav.main .nav-content ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 0;
  }

  #coffee-detail .desc-coffee-item {
    width: 100%;
  }
}

#coffee-detail .desc-coffee-item .item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

#coffee-detail .desc-coffee-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

#coffee-detail .desc-coffee-item .icon-normal,
#coffee-detail .desc-coffee-item .icon-hover {
  width: auto;
  height: 60px;
}

#coffee-detail .desc-coffee-item:hover {
  transition: all 0.4s ease;
}

#coffee-detail .desc-coffee-item:hover .icon-hover {
  display: inline;
}

#coffee-detail .desc-coffee-item:hover .icon-normal {
  display: none;
}

#coffee-detail .desc-coffee-item:hover h3 {
  color: #EFDEBC;
}

#coffee-detail .desc-coffee-item:hover p {
  color: white;
}

#coffee-detail .desc-coffee-item.altura:hover {
  background: #235865;
}

#coffee-detail .desc-coffee-item.variedad:hover {
  background: #5b375e;
}

#coffee-detail .desc-coffee-item.origen:hover {
  background: #735f36;
}

#coffee-detail .desc-coffee-item.proceso:hover {
  background: #576568;
}

#coffee-detail .desc-coffee-item .icon-hover {
  display: none;
}

#coffee-detail .desc-coffee-item h3 {
  color: #346670;
  margin-top: 15px;
}

#coffee-detail .desc-coffee-item p {
  color: #827966;
  text-transform: uppercase;
}

.bg-animate-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 0;
  top: 50%;
  transform: translateY(-50%);
}

.circle {
  position: absolute;
  border-radius: 50%;
  animation: pulse 6s infinite ease-in-out;
}

.circle:nth-child(1) {
  width: 600px;
  height: 600px;
  background-color: rgba(85, 141, 154, 0.08);
  animation-delay: 0s;
}

.circle:nth-child(2) {
  width: 720px;
  height: 720px;
  background-color: rgba(52, 102, 112, 0.08);
  animation-delay: 2s;
}

.circle:nth-child(3) {
  width: 840px;
  height: 840px;
  background-color: rgba(85, 141, 154, 0.08);
  animation-delay: 4s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#nosotros {
  background-color: #346670;
  padding: 50px 0;
}

#nosotros h2 {
  color: white;
  text-transform: uppercase;
  margin-bottom: 30px;
}

#nosotros p {
  color: #EDEDED;
}

#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#hero .addon-1 {
  position: absolute;
  left: 0;
  bottom: 2rem;
  z-index: 2;
  animation: floatLeft 6s ease-in-out infinite;
}

#hero .addon-3 {
  position: absolute;
  left: 5rem;
  bottom: 6rem;
  z-index: 2;
  animation: rotate 8s ease-in-out infinite;
}

#hero .addon-2 {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  animation: floatRight 7s ease-in-out infinite;
}

#hero .hero-video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#hero .hero-video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#hero .hero-video-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 33, 48, 0.59);
  z-index: 1;
}

#hero .hero-video-container .hero-content {
  position: absolute;
  text-align: left;
  color: white;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#hero .hero-video-container .hero-content h1 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

#hero .hero-video-container .hero-content h1 span.lila {
  color: #EEBDF3;
  font-size: 3.6rem;
}

#hero .hero-video-container .hero-content p {
  font-size: 1.5rem;
  font-weight: 300;
}

#hero .hero-video-container .hero-content .call-to-action {
  background: color(srgb 0.6329 0.4159 0.655);
  min-width: 180px;
  display: inline-block;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

#hero .hero-video-container .hero-content .call-to-action::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

#hero .hero-video-container .hero-content .call-to-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(99, 41, 103, 0.2);
}

#hero .hero-video-container .hero-content .call-to-action:hover::before {
  width: 300px;
  height: 300px;
}

#hero .hero-video-container .hero-content .call-to-action:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(99, 41, 103, 0.2);
}

@media (max-width: 768px) {
  #hero .hero-content h1 {
    font-size: 2.5rem;
  }

  #hero .hero-content p {
    font-size: 1.2rem;
  }
}

nav.main {
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

nav.main ul {
  padding: 0;
}

nav.main ul li {
  display: inline-block;
  margin-right: 2rem;
}

nav.main ul li a {
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

nav.main ul li a:hover {
  color: #EEBDF3;
  transition: all 0.4s ease;
}

/* nav.main ul li.current_page_item a {
  color: #EEBDF3;
  transition: all 0.4s ease;
} */

nav.main img {
  height: 100px;
  transition: all 0.3s ease;
}

nav.main .navbar-toggler {
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0;
}

nav.main .navbar-toggler:focus {
  outline: none;
}

@media (max-width: 767px) {
  nav.main .nav-content {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: rgba(52, 102, 112, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: right 0.3s ease;
    padding: 80px 20px 20px;
    align-items: baseline !important;
  }

  nav.main .nav-content.active {
    right: 0;
  }
}

nav.main .nav-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  nav.main .nav-content ul {
    display: flex;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  nav.main .nav-content ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  nav.main .nav-content ul li {
    margin-bottom: 1.5rem;
  }

  nav.main .nav-content ul li a {
    font-size: 1.2rem;
  }
}

nav.main.scrolled {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

nav.main.scrolled .navbar-toggler {
  color: #346670;
}

nav.main.scrolled nav.main img {
  height: 80px;
  transition: all 0.3s ease;
}

nav.main.scrolled nav.main.scrolled img {
  height: 60px;
}

nav.main.scrolled ul li a {
  color: #346670;
}

@media (max-width: 767px) {
  nav.main.scrolled ul li a {
    color: #ffffff;
  }
}

nav.main.scrolled ul li a:hover {
  color: #7B5C7E;
}

nav.main.scrolled .language-selector .flag {
  opacity: 0.7;
}

nav.main.scrolled .language-selector .flag.active {
  opacity: 1;
}

nav.main.scrolled img {
  height: 60px;
}

.language-selector {
  display: flex;
  align-items: center;
}

.language-selector .flag {
  width: 28px;
  height: 21px;
  cursor: pointer;
  margin-left: 10px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.language-selector .flag.active {
  opacity: 1;
}

.language-selector .flag:hover {
  opacity: 0.8;
}

@keyframes floatLeft {

  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  50% {
    transform: translateX(-15px) rotate(-5deg);
  }
}

@keyframes floatRight {

  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  50% {
    transform: translateX(15px) rotate(5deg);
  }
}

@keyframes rotate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(5deg);
  }
}

.parallax-footer {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.parallax-footer h3 {
  text-transform: uppercase;
}

.parallax-footer p {
  color: #FBD2FF;
}

.parallax-footer .parallax-bg {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 150%;
  background: linear-gradient(rgba(93, 62, 86, 0.8), rgba(93, 62, 86, 0.9)), url("../img/footer-parallax.jpeg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.parallax-footer .footer-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.parallax-footer .footer-content .footer-logo {
  max-width: 200px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.parallax-footer .footer-content .footer-logo:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .parallax-footer .parallax-bg {
    top: -50px;
  }
}

.contact-form {
  padding: 2rem;
  border-radius: 12px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.1);
}

.contact-form .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.credits {
  background-color: #346670;
  padding: 1rem 0;
}

.credits p {
  color: white;
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}

.credits a {
  color: #A7E4F2;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.credits a:hover {
  opacity: 0.8;
  color: #A7E4F2;
}

@media (max-width: 767px) {
  .coffee-items-container .coffee-items-slider .slick-slide {
    padding: 0 10px;
  }

  .coffee-items-container .coffee-items-slider .slick-dots {
    bottom: -30px;
  }

  .coffee-items-container .coffee-items-slider .slick-dots li button:before {
    color: #7B5C7E;
  }

  .coffee-items-container .coffee-items-slider .slick-dots li.slick-active button:before {
    color: #346670;
  }
}

.contact-info {
  display: inline-block;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.contact-info a {
  transition: opacity 0.3s ease;
}

.contact-info a:hover {
  opacity: 0.8;
}

.contact-info .bi {
  margin-right: 8px;
}

.buy-banner {
  background: linear-gradient(120deg, #295c66 79.83%, #346670);
  color: #fff;
  margin-top: 3rem;
  margin-bottom: 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 8px 32px rgba(52, 102, 112, 0.08);
}

.buy-banner h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.buy-banner p {
  font-size: 1.2rem;
  font-weight: 400;
}

.buy-banner .whatsapp-btn {
  background: linear-gradient(90deg, #25D366 60%, #128C7E 100%);
  color: #fff !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 1.15rem;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.15);
  border: none;
  outline: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.buy-banner .whatsapp-btn i {
  font-size: 1.5em;
  margin-right: 8px;
  vertical-align: middle;
  transition: transform 0.2s;
}

.buy-banner .whatsapp-btn:hover,
.buy-banner .whatsapp-btn:focus {
  background: linear-gradient(90deg, #128C7E 60%, #25D366 100%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.22);
}

.buy-banner .whatsapp-btn:hover i,
.buy-banner .whatsapp-btn:focus i {
  transform: scale(1.2) rotate(-8deg);
}

.buy-banner .whatsapp-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.12);
}

@media (max-width: 767px) {
  .coffee-items-container .row {
    margin: 0;
  }

  .coffee-items-container .row .col {
    padding: 10px;
  }

  .coffee-items-container .slick-dots {
    bottom: -30px;
  }

  .coffee-items-container .slick-dots li button:before {
    color: #7B5C7E;
  }

  .coffee-items-container .slick-dots li.slick-active button:before {
    color: #346670;
  }
}

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


.page-banner {
  width: 100%;
  background: linear-gradient(rgba(8, 18, 16, 0.71), rgba(8, 14, 13, 0.9)), url("../img/footer-parallax.jpeg");
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 2em 0;
  text-align: center;
  height: 400px;
  padding-top: 150px;
  margin-bottom: 30px;
}

.cart-link i {
  color: rgb(78, 75, 75);
  background: #ffffff;
  width: 30px;
  height: 30px;
  display: inline-block;
  font-size: 15px !important;
  text-align: center;
  border-radius: 30px;
  padding: 4px 0;

}

.cart-count {
  background: #346670;
}


.woocommerce ul.products li.product .button {
  display: inline-block;
  margin-top: 1em;
  background-color: #346670;
  font-weight: 200;
  color: white;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
}

.woocommerce div.product form.cart .button {
  vertical-align: middle;
  float: left;
  background-color: #346670;
  font-weight: 400;
}


.woocommerce div.product form.cart .variations select {
  padding: 0.4rem;
  background: white;
  border-color: rgb(215, 215, 215);
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
  color: #89806f;
  font-size: 1.25em;
  margin: 20px 0;
  display: block;
  font-weight: bold;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  transition: all cubic-bezier(.795, -.035, 0, 1) .5s;
  margin: 0;
  padding: 0;
  background: color(srgb 0.955 0.955 0.955);
  padding: 5px !important;
  border-radius: 8px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background-color: #5D3E56 !important;
  font-weight: 400;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-weight: 400 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #ffffff !important;
  font-weight: 400 !important;
}

.woocommerce ul.products li.product a img {
  background: color(srgb 0.955 0.955 0.955);
  padding: 5px !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  padding: .5em 0;
  margin: 0;
  font-size: 1em;
  color: color(srgb 0.6326 0.4159 0.6549);
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  color: color(srgb 0.6326 0.4159 0.6549);
}

.wc-block-cart .wc-block-cart__submit-container {
  background-color: #346670;
  font-weight: 200;
}

.wc-block-cart .wc-block-cart__submit-container a {
  font-weight: 200;
  color: white;
}

.wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  height: auto;
  padding: 1em;
  width: 50%;
  border: none;
  background-color: #346670;
  color: white;
}

.wpcf7-not-valid-tip {
  color: #f5b0b0 !important;
  font-size: 1em;
  font-weight: normal;
  display: block;
}


.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
  border: none !important;
  color: white;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  color: #ffdf8b;
}


@media (max-width:782px) {

  .wc-block-cart .wc-block-cart__submit-container--sticky a {
    color: #346670;
  }

  nav.main img {
    height: 60px;
    transition: all 0.3s ease;
  }
}