@font-face {
  font-family: "Inconsolata";
  src: url(../fonts/Inconsolata/static/Inconsolata-Regular.ttf);
}

@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins/Poppins-Regular.ttf);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inconsolata";
}

img {
  display: block;
  width: 100%;
}

.main-header {
  background-color: #f4f4f4;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
}

.main-header__logo {
  flex: 1;
  text-align: center;
}

.main-header__title {
  font-family: "Poppins", sans-serif;
  font-size: 2em;
  color: #454546;
}

.main-header__nav {
  flex: 2;
  display: flex;
  justify-content: center;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.menu__link {
  text-decoration: none;
  color: #454546;
  font-size: 1em;
  transition: color 0.3s;
}

.menu__link:hover {
  color: #FF4E00;
}

.main-header__actions {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  align-items: center;
}

.main-header__cart,
.main-header__contact {
  text-decoration: none;
  color: #454546;
  font-size: 1em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-header__cart:hover,
.main-header__contact:hover {
  color: #FF4E00;
}

.main-header__search {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 5px;
}

.main-header__input {
  border: none;
  outline: none;
  padding: 5px;
}

.main-header__input::placeholder {
  color: #aaa;
}

.main-header__search i {
  color: #FF4E00;
}


.main-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header__btn {
  display: block;
  padding: 10px 30px;
  color: #454546;
  border: 1px solid #454546;
  text-decoration: none;
}

.main-header__input {
  display: block;
  padding: 10px;
}

/* Slider */
.container-slider {
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 400%;
  height: 400px;
  margin-left: -100%;
  position: relative;
}

.slider__section {
  width: 100%;
  position: relative;
}

.slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Puedes probar con 'contain' si prefieres evitar recortes */
}

.slider__btn {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.7);
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
}

.slider__btn:hover {
  background: #fff;
}

.slider__btn--left {
  left: 10px;
}

.slider__btn--right {
  right: 10px;
}

.slider__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.slider__link {
  display: block;
  border: 1px solid #FF4E00;
  color: white;
  padding: 10px;
  text-decoration: none;
  width: 150px;
  text-align: center;
  margin: 10px auto;
}
.container-productos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px;
}

.product {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.product__name {
  margin-top: 15px;
  font-size: 1.2em;
  color: #333;
}

.product__btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #FF4E00;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.product__btn:hover {
  background-color: #d44200;
}
.container-productos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px;
}

.product {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.product__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.product__name {
  margin-top: 15px;
  font-size: 1.2em;
  color: #333;
  flex-grow: 1; /* Para que el nombre no se empuje hacia abajo */
}

.product__btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #FF4E00;
  color: wh
}

.product__price {
  font-size: 1.1em;
  font-weight: bold;
  color: #FF4E00; /* Color similar al del botón para destacarlo */
  margin-top: 10px;
  margin-bottom: 15px;
}

.product__name {
  margin-top: 15px;
  font-size: 1.2em;
  color: #333;
  flex-grow: 1;
}

.product__btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #FF4E00;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  align-self: center;
}

.product__btn:hover {
  background-color: #d44200;
}

.product__actions {
  display: flex;
  justify-content: center; /* Centra ambos elementos (botón y carrito) */
  gap: 15px; /* Espacio entre el botón y el carrito */
  margin-top: 10px;
}

.product__cart {
  font-size: 1.5em;
  color: #FF4E00; /* Color del carrito */
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__cart:hover {
  color: #d44200; /* Color cuando se pasa el ratón sobre el carrito */
}

.product__btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FF4E00;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.product__btn:hover {
  background-color: #d44200;
}

.main-footer {
  background-color: #454546;
  color: white;
  padding: 20px 0;
  font-family: "Inconsolata", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
}

.footer__title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.footer__contact p,
.footer__links ul,
.footer__social a {
  margin: 5px 0;
}

.footer__menu {
  list-style: none;
  padding: 0;
}

.footer__link {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.footer__link:hover {
  color: #FF4E00;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  color: white;
  font-size: 1.5em;
  transition: color 0.3s;
}

.footer__social-link:hover {
  color: #FF4E00;
}

.footer__copyright {
  background-color: #333;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
  font-size: 0.9em;
}
/* Estilo para el texto de los testimonials */
.testimonials {
    text-align: center;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
    background-color: #f5f5f5; /* Fondo gris claro */
    padding: 20px; /* Espaciado interno */
    border-radius: 8px; /* Bordes redondeados */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

.testimonials h2 {
    font-size: 24px;
    font-weight: bold;
}

.testimonials h3 {
    font-size: 18px;
    font-weight: normal;
    margin-top: 10px;
}

.testimonials p {
    font-size: 16px;
    color: gray;
    line-height: 1.5;
    max-width: 600px;
    margin: 10px auto;
}

.image-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  gap: 20px;
}

.image-container {
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden; /* Esto asegura que solo se vea la parte dentro de la imagen */
}

.hover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hover-circle {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px; /* Tamaño del círculo */
  height: 200px;
  background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro */
  border-radius: 50%;
  display: flex;
  justify-content: center; /* Mantiene el círculo centrado */
  align-items: center; /* Mantiene el círculo centrado */
  color: white;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease, transform 0.4s ease;
  overflow: hidden;
}

.image-container:hover .hover-circle {
  opacity: 1;
  transform: scale(1);
}

.hover-circle span {
  position: relative;
  left: -20px; /* Mueve el texto hacia la izquierda */
  top: -20px; /* Mueve el texto hacia arriba */
  font-family: Arial, sans-serif;
  word-wrap: break-word; /* Permite que el texto se divida en varias líneas si es largo */
  width: 100%; /* Asegura que el texto ocupe el ancho completo del círculo */
  max-width: 100%;
  white-space: normal; /* Permite que el texto se ajuste en el círculo */
}
/* Estilo general del contenedor */
.features {
  display: flex;
  flex-wrap: wrap; /* Permite que los elementos se ajusten automáticamente */
  justify-content: space-around; /* Distribuye los elementos uniformemente */
  gap: 20px; /* Espacio entre los apartados */
  margin: 20px;
}
.feature-item {
  text-align: center;
  max-width: 300px;
  font-family: Arial, sans-serif;
}

.feature-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14px;
  color: gray;
  margin-bottom: 20px;
}

.feature-item button {
  background: none;
  color: black;
  border: 2px solid black;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-item button:hover {
  background: black;
  color: white;
}
.feature-item {
  font-size: 1.5em;
}
/* Botón */
button {
  background-color: transparent;
  border: 2px solid #000000;
  padding: 10px 20px;
  cursor: pointer;
  margin-top: 10px;
  font-size: 16px;
  border-radius: 5px;
  transition: 0.3s;
}
button:hover {
  background-color: #000;
  color: #fff;
}
/* Contenedor general */
.features-row {
  display: flex;
  justify-content: center;
  gap: 40px; /* Espacio horizontal entre cada característica */
  padding: 20px;
  background-color: #f9f9f9;
  flex-wrap: wrap; /* Permite que las características se distribuyan en varias filas si el espacio es limitado */
}

/* Contenedor individual de cada característica */
.feature {
  display: flex;
  align-items: center; /* Alinea verticalmente ícono y texto */
  gap: 15px; /* Espacio entre el ícono y el texto */
  font-family: Arial, sans-serif;
  color: #333;
  max-width: 200px;
  margin-bottom: 20px; /* Espacio extra entre los segmentos verticalmente */
}

/* Estilo para el ícono */
.feature .icon {
  width: 60px;
  height: 60px;
  border: 2px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
  flex-shrink: 0; /* Evita que el ícono cambie de tamaño */
}
/* Separación adicional entre "Genuine Product" y "Secure Products" */
.feature:nth-child(1) {
  margin-right: 60px; /* Espacio extra entre "Genuine Product" y "Secure Products" */
}
/* Separación adicional entre "Secure Products" y "Cash on Delivery" */
.feature:nth-child(2) {
  margin-right: 60px; /* Espacio extra entre "Secure Products" y "Cash on Delivery" */
}

/* Separación adicional entre "Cash on Delivery" y "Easy Delivery" */
.feature:nth-child(3) {
  margin-right: 60px; /* Espacio extra entre "Cash on Delivery" y "Easy Delivery" */
}

.feature h4 {
  font-size: 16px;
  color: #e44a00; /* Naranja para el título */
  margin: 0 0 5px;
  font-weight: bold;
  text-transform: uppercase;
}

.feature p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.logo-img {
  width: 250px;
  height: auto;
}



