/*
  License: https://bootstrapmade.com/license/
--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666;
  font-family: "Eras Bold ITC", sans-serif;
}

a {
  color: #e0c657ff;
  transition: 0.5s;
}
a:hover,
a:active,
a:focus {
  color: #1a1a1aff;
  outline: none;
  text-decoration: none;
}

p {
  font-family: "Eras Bold ITC", sans-serif;
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Eras Bold ITC", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}
/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #e0c657ff;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}
/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(90% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #e0c657ff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------- Header-------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
  backdrop-filter: blur(10px);
}

/*#header.header-scrolled,
#header.header-pages {
  height: 60px;
  padding: 10px 0;
}*/

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #e0c657ff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 5px 0;
  max-height: 50px;
}

.main-pages {
  margin-top: 60px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  position: relative;
  background: url("../img/intro-bg.svg") center bottom no-repeat;
  background-size: cover;
  padding: 200px 0 120px 0;
}

#intro .intro-img {
  width: 50%;
  float: right;
}

#intro .intro-info {
  width: 50%;
  float: left;
}

#intro .intro-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
}

#intro .intro-info h2 span {
  color: #e0c657ff;
  text-decoration: underline;
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#intro .intro-info .btn-get-started {
  background: #e0c657ff;
  border: 2px solid #e0c657ff;
  color: #fff;
}

#intro .intro-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#intro .intro-info .btn-services {
  border: 2px solid #fff;
}

#intro .intro-info .btn-services:hover {
  background: #e0c657ff;
  border-color: #e0c657ff;
  color: #fff;
}

/*---------------# Navigation Menu----------------------*/
/* Desktop Navigation */
/*main-nav {
   Drop Down
   Deep Drop Down
}*/

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.3s ease; /* Transición suave para el efecto de zoom */
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #666;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #e0c657ff;
  text-decoration: none;
  transform: scale(1.3); /* Aumenta el tamaño en un 10% */
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: #e0c657ff;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #e0c657ff;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(19, 39, 57, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #1a1a1aff;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #e0c657ff;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*-----------# Sections s-------------------------------------*/

/* Sections Header--------------------------------*/
.section-header h3 {
  font-size: 36px;
  color: #283d50;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #666666;
  width: 50%;
}

/* Section with background--------------------------------*/
.section-bg {
  background: rgb(255, 255, 255);
}

/* Seccion Sobre Nosotros --------------------------------*/
#about {
  background: #1a1a1aff;
  padding: 60px 0;
}

#about .about-container .background {
  margin: 20px 0;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #1a1a1aff;
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: #ffb80d;
  font-size: 24px;
}

#about .about-container .icon-box:hover .icon {
  background: #1a1a1aff;
}

#about .about-container .icon-box:hover .icon i {
  color: #fff;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#about .about-container .icon-box .title a {
  color: #283d50;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#about .about-extra {
  padding-top: 60px;
}

#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

/*CODIGO GENERADO CON AI PARA LA SECCIÓN ABOUT*/

.modern-about {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.about-visual {
  background: url("https://www.mariefrance.fr/wp-content/uploads/sites/5/2015/11/black-friday.jpg") center center /
    cover;
  min-height: 600px;
  position: relative;
  display: flex; /* Usar flexbox para centrar el contenido */
  align-items: center; /* Centrar verticalmente */
  justify-content: center; /* Centrar horizontalmente */
  overflow: hidden;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(47, 79, 79, 0.9) 0%, rgba(47, 79, 79, 0.7) 100%);
}

.content-box {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: white;
}

.divider-line {
  width: 80px;
  height: 2px;
  background: white;
  margin: 1.5rem 0;
}

.about-content {
  background: #f8f9fa;
  padding: 4rem 2rem;
}

.section-tag {
  font-weight: 300;
  letter-spacing: 3px;
  color: #2f4f4f;
  opacity: 0.8;
}

.section-title {
  font-weight: 300;
  font-size: 2.5rem;
  margin: 1rem 0 3rem;
  line-height: 1.2;
}

.modern-accordion {
  border-left: 2px solid rgba(47, 79, 79, 0.1);
  padding-left: 1.5rem;
}

.accordion-item {
  margin-bottom: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}

.accordion-header .number {
  font-size: 1.5rem;
  font-weight: 300;
  color: #2f4f4f;
  margin-right: 1.5rem;
  opacity: 0.6;
}

.accordion-header h4 {
  font-weight: 400;
  color: #2f4f4f;
  margin: 0;
  transition: all 0.3s ease;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  padding-left: 3rem;
  color: #666;
  line-height: 1.8;
}

.accordion-item:hover .number {
  opacity: 1;
}

.accordion-item:hover h4 {
  transform: translateX(10px);
}

.accordion-item.active .accordion-body {
  max-height: 200px;
}

@media (max-width: 992px) {
  .modern-about {
    min-height: auto;
  }

  .about-visual {
    min-height: 400px;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Nuevos estilos para el slider */
.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: sliderAnimation 15s infinite;
}

.slider-item:nth-child(2) {
  animation-delay: 5s;
}

.slider-item:nth-child(3) {
  animation-delay: 10s;
}

@keyframes sliderAnimation {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Modificación del overlay existente */
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(47, 79, 79, 0.9) 0%, rgba(47, 79, 79, 0.7) 100%);
  z-index: 1;
}

/* Asegurar que el contenido quede sobre el slider */
.content-box {
  position: relative;
  z-index: 2;
}

/* Mantener los estilos existentes */
.about-visual {
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

/*- Services Section--------------------------------*/
#services {
  color: #666666;
  padding: 60px 0 40px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #f3f2f1;

  transition: all 0.3s ease-in-out;
}

#services .box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

#services .icon {
  position: absolute;
  left: -10px;
  top: calc(50% - 32px);
  color: #f8f8f6;
}

#services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: ffb80d;
}

#services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

.glass-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
  padding: 5rem 0;
}

.glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
  transition: transform 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
}

.card-content {
  text-align: center;
}

.card-content i {
  font-size: 2.5rem;
  color: #2f4f4f;
  margin-bottom: 1.5rem;
  display: inline-block;
}

#why-us {
  padding: 60px 0;
  background: #e0c657ff;
}

#why-us .section-header h3,
#why-us .card h5,
#why-us .section-header p {
  color: black;
}

#why-us .card {
  border-color: #e0c657ff;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #666666;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#why-us .card:hover {
  border-color: #1a1a1aff;
}

#why-us .card i {
  font-size: 48px;
  padding-top: 15px;
  color: #1a1a1aff;
}
#why-us .card i:hover {
  font-size: 50px;
  padding-top: 13px;
  color: #e0c657ff;
  animation: brillar 1s infinite;
  animation: girar 1s linear infinite;
}

@keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(50deg);
  }
}

@keyframes brillar {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

#why-us .card h5 {
  font-size: 22px;
  font-weight: 600;
}

#why-us .card p {
  font-size: 15px;
  color: #666;
}

#why-us .card .readmore {
  color: #1a1a1aff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #1a1a1aff solid 2px;
}

#why-us .card .readmore:hover {
  color: #fff;
  border-bottom: #fff solid 2px;
}

#why-us .counters {
  display: none;
  padding-top: 40px;
}

#why-us .counters span {
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #666;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #cce5ff;
}

.flip-card {
  perspective: 1000px;
  height: 300px; /* Ajusta la altura según sea necesario */
  margin: 20px; /* Espacio entre tarjetas */
}

.front-card,
.back-card {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.8s;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.front-card {
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: rotateY(0deg);
}

.back-card {
  background: #1a1a1aff;
  color: white;
  transform: rotateY(180deg);
}

.flip-card:hover .front-card {
  transform: rotateY(-180deg);
}

.flip-card:hover .back-card {
  transform: rotateY(0deg);
}

.card-line {
  width: 50px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  margin: 20px 0;
}

/* Estilos adicionales */
.flip-card .front-card {
  text-align: center;
}

.flip-card .fa {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #1a1a1aff;
  transition: all 0.3s ease;
}

.card-title,
.card-text {
  text-align: center !important;
}

.card-body {
  padding: 20px 25px;
}

.flip-card:hover .fa {
  transform: scale(1.1);
  color: #0056b3;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
}

/* Portfolio Section--------------------------------*/
#portfolio {
  display: none;
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.product-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.product-info {
  position: absolute;
  bottom: -100%;
  background: rgba(255, 255, 255, 0.9);
  transition: bottom 0.3s;
}
.product-item:hover .product-info {
  bottom: 0;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #e0c657ff;
  border-radius: 50px;
  text-transform: uppercase;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: #1a1a1aff;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}
#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #1a1a1aff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #0062a3;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: #1a1a1aff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: #e0c657ff;
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/* Contact Section--------------------------------*/
#contact {
  /*
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
*/
  padding: 60px 0;
  overflow: hidden;
}

#contact .section-header {
  padding-bottom: 30px;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a1a1aff;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Lato", sans-serif;
  color: #666;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #1a1a1aff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #1a1a1aff;
}

#contact .social-links a:hover {
  background: #1a1a1aff;
  color: #fff;
}

#contact .info {
  color: #666666;
}

#contact .info i {
  font-size: 32px;
  color: #1a1a1aff;
  float: left;
  line-height: 1;
}

#contact .info p {
  padding: 0 0 10px 36px;
  line-height: 28px;
  font-size: 14px;
}

#contact .form #sendmessage {
  color: #e0c657ff;
  border: 2px solid #1a1a1aff;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: #b32f3d;
  display: none;
  border: 1px solid #b32f3d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: #b32f3d;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .form button[type="submit"] {
  background: #1a1a1aff;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
  text-align: center;
}

#contact .form button[type="submit"]:hover {
  background: #e0c657ff;
  cursor: pointer;
}

/*************************
 *******Features CSS*******
 **************************/
#features {
  text-align: center;
  background: #1a1a1aff;
  color: white;
}

#features i {
  font-size: 48px;
}

#features h3 {
  margin-top: 15px;
  font-size: 30px;
  margin-bottom: 7px;
  color: #fff;
}

#features .slider-overlay {
  opacity: 0.8;
}

/*************************
 *******Whatsapp CSS*******
 **************************/
.whatsapp-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.whatsapp-link:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

.whatsapp-link i {
  color: white;
  font-size: 36px;
}
/*-------------------- Footer-------------------------------*/
#footer {
  background: #1a1a1aff;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #1a1a1aff;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Lato", sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Lato", sans-serif;
  color: #ecf5ff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1a1a1aff;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #2f4f4f;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ecf5ff;
}

#footer .footer-top .footer-links ul a:hover {
  color: #1a1a1aff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #0062a3;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #e0c657ff;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #666;
}

#footer .credits a:hover {
  color: #f1f7ff;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (max-width: 991px) {
  #header {
    height: 60px;
    padding: 10px 0;
  }

  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }

  #intro {
    padding: 140px 0 60px 0;
  }

  #intro .intro-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }

  #intro .intro-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }

  #why-us .card {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

@media (max-width: 767px) {
  #intro .intro-info {
    width: 100%;
  }

  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .section-header p {
    width: 100%;
  }
}
@media (max-width: 574px) {
  #intro {
    padding: 100px 0 20px 0;
  }
}

.hr-text {
  transform: rotate(-130deg);
  font-family: Magneto, sans-serif;
  position: absolute;
  top: 52px; /* Ajusta este valor según el tamaño de la fuente y el espacio deseado */
  left: 140px; /* Ajusta este valor según el ancho de la palabra "store" */
  transform: rotate(1deg);
  font-weight: 900; /* Muy negrita */
  text-shadow: 2px 2px 4px #e0c657ff; /* Sombra */
  font-size: 4.5rem; /* Tamaño de fuente aumentado */
}

.r-text {
  transform: rotate(-130deg);
  font-family: "Matura MT Script Capitals", cursive;
  position: absolute;
  top: 55px; /* Ajusta este valor según el tamaño de la fuente y el espacio deseado */
  left: 220px; /* Ajusta este valor según el ancho de la palabra "store" */
  transform: rotate(10deg);
  font-weight: 900; /* Muy negrita */
  text-shadow: 2px 2px 4px #e0c657ff; /* Sombra */
  font-size: 4.5rem; /* Tamaño de fuente aumentado */
}

.store-text {
  position: absolute;
  font-family: "Eras Bold ITC", sans-serif;
  font-weight: 900; /* Muy negrita */
  text-shadow: 2px 2px 4px rgb(8, 8, 8); /* Sombra */
  text-transform: none;
  top: 110px; /* Ajusta este valor según el tamaño de la fuente y el espacio deseado */
  left: 138px; /* Ajusta este valor según el ancho de la palabra "store" */
  transform: rotate(-10deg);
  font-size: 3.5rem; /* Tamaño de fuente aumentado */
}

.s-text {
  font-family: "Eras Bold ITC", sans-serif;
  position: absolute;
  top: 130px; /* Ajusta este valor según el tamaño de la fuente y el espacio deseado */
  left: 100px; /* Ajusta este valor según el ancho de la palabra "store" */
  transform: rotate(-30deg);
  font-weight: 900; /* Muy negrita */
  text-shadow: 2px 2px 4px rgb(12, 12, 12); /* Sombra */
  font-size: 3.5rem; /* Tamaño de fuente aumentado */
}

.texto {
  position: absolute;
  left: 0; /* Lo pega a la izquierda */
  top: 0; /* lo pega a la parte superior, puedes ajustar si necesitas bajarlo*/
  /* puedes ajustar el top o bottom segun sea tu necesidad */
}
#footer {
  position: relative; /* Esto es crucial para que el texto absolute se posicione correctamente */
  /*  Aquí irían tus reglas de estilo del footer, como display: grid o display: flex y las definiciones de las 5 columnas  */
}
@keyframes roll-fall {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(360deg) translateY(-20px);
  }
  60% {
    transform: rotate(360deg) translateY(0);
  }
  100% {
    transform: rotate(0deg) translateY(0);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.inn,
.va {
  font-family: "Elephant", sans-serif;
}

/* Add WhatsApp button styles */
.whatsapp-contact {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.whatsapp-button {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  margin: 20px 0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-button:hover {
  background-color: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
  text-decoration: none;
}

.whatsapp-button i {
  margin-right: 10px;
  font-size: 24px;
}

.whatsapp-info {
  margin-top: 20px;
  color: #666;
}

/* Fixed WhatsApp button at bottom right */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-btn .whatsapp-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-btn .whatsapp-link:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

/* Fix for TikTok icon */
.fa-tiktok {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

/* Add these styles at the end of the file */

/* Infografía de proceso de compra */
.infografia-container {
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.infografia {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.infografia:hover {
  transform: scale(1.02);
}

/* Envíos Section */
#envios {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}

.envios-info {
  margin-top: 40px;
}

.envios-content {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.envios-content h4 {
  color: #1a1a1aff;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.envios-features {
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature-item i {
  color: #e0c657ff;
  font-size: 20px;
  margin-right: 10px;
}

.envios-gallery {
  padding: 20px;
}

.gallery-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.envios-videos {
  margin-top: 50px;
}

.video-container {
  position: relative;
  width: 100%;
  height: 450px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tiktok-embed {
  width: 100%;
  height: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .video-container {
    height: 400px;
  }

  .envios-content {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .video-container {
    height: 350px;
  }
}

/* Clientes Section */
#clientes {
  padding: 80px 0;
  background: #f9f9f9;
}

.clients-grid {
  margin: 0 auto;
}

.client-item {
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 300px;
}

.client-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.client-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-box {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-top: 30px;
}

.quote-icon {
  color: #e0c657ff;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 10px;
  border-radius: 50%;
}

.testimonial-content {
  text-align: center;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  color: #666;
}

.testimonial-content h4 {
  color: #1a1a1aff;
  margin-bottom: 5px;
}

.testimonial-content span {
  color: #999;
  font-size: 14px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.faq-question i.fa-question-circle {
  color: #e0c657ff;
  font-size: 24px;
  margin-right: 15px;
}

.faq-question h4 {
  flex: 1;
  margin: 0;
  font-size: 18px;
  color: #333;
}

.toggle-icon {
  color: #e0c657ff;
  transition: all 0.3s ease;
}

.faq-item.active .toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: #f9f9f9;
}

.faq-answer p {
  padding: 20px 0;
  margin: 0;
  color: #666;
}

.faq-answer ol,
.faq-answer ul {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 5px;
}

/* Intro Banner Styles */
.intro-banner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 20px 0;
}

.portada-info {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.intro-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.intro-banner:hover .intro-overlay {
  opacity: 1;
}

.intro-banner:hover .portada-info {
  transform: scale(1.02);
}

.intro-cta {
  display: flex;
  gap: 15px;
}

.btn-get-started,
.btn-contact {
  display: inline-block;
  background: #e0c657ff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-contact {
  background: #1a1a1aff;
}

.btn-get-started:hover,
.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #fff;
}

@media (max-width: 768px) {
  .intro-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4) 50%, transparent);
    padding: 15px;
  }

  .intro-cta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-get-started,
  .btn-contact {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
}
