@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%;
}

/* Aquí ajusto la imagen de la bodega para que no se recorte */
.bodega-img {
  width: 100%;
  height: 400px; /* Puedes cambiar la altura según quieras */
  object-fit: contain; /* La imagen se adapta sin recortarse */
}

/* Header */
.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 eliminado totalmente */

/* Productos */
.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;
}

.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__price {
  font-size: 1.1em;
  font-weight: bold;
  color: #FF4E00;
  margin-top: 10px;
  margin-bottom: 15px;
}

.product__actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.product__cart {
  font-size: 1.5em;
  color: #FF4E00;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__cart:hover {
  color: #d44200;
}

/* Footer */
.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;
}

/* Testimonios */
.testimonials {
    text-align: center;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.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;
}

/* Imagen y hover text */
.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;
}

.hover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hover-circle {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  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;
  top: -20px;
  font-family: Arial, sans-serif;
  word-wrap: break-word;
  width: 100%;
  max-width: 100%;
  white-space: normal;
}

/* Features section */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  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;
  padding: 20px;
  background-color: #f9f9f9;
  flex-wrap: wrap;
}

/* Contenedor individual de cada característica */
.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: Arial, sans-serif;
  color: #333;
  max-width: 200px;
  margin-bottom: 20px;
}

/* 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;
}

/* Separaciones entre características */
.feature:nth-child(1) {
  margin-right: 60px;
}
.feature:nth-child(2) {
  margin-right: 60px;
}
.feature:nth-child(3) {
  margin-right: 60px;
}

.feature h4 {
  font-size: 16px;
  color: #e44a00;
  margin: 0 0 5px;
  font-weight: bold;
  text-transform: uppercase;
}

.feature p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.services-section {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.services-title {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: left;
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.service.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.service-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-text p,
.service-text ul {
  font-size: 16px;
  margin-bottom: 15px;
  color: #555;
}

.service-text ul {
  padding-left: 20px;
}

.service-image {
  flex: 1;
  min-width: 280px;
}

.service-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.btn-primary, .btn-secondary {
  padding: 10px 20px;
  border: none;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.btn-primary {
  background-color: black;
  color: white;
}

.btn-secondary {
  background-color: #eee;
  color: #333;
}
.servicios {
  padding: 50px 5%;
  background-color: #fff;
}

.servicios h2 {
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: bold;
}

.servicio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.servicio.reverse {
  flex-direction: row-reverse;
}

.servicio-texto {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.servicio-texto h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.servicio-texto p, .servicio-texto ul {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.servicio-texto ul {
  list-style: none;
  padding-left: 0;
}

.servicio-texto ul li::before {
  content: "• ";
  color: black;
  font-weight: bold;
}

.servicio-imagen {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.servicio-imagen img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  padding-left: 100px;

}



.botones {
  margin-top: 15px;
}

.btn-negro, .btn-gris {
  padding: 10px 20px;
  border: none;
  margin-right: 10px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.btn-negro {
  background-color: black;
  color: white;
}

.btn-gris {
  background-color: #e0e0e0;
  color: #333;
}

