/ * -------------------------------------- */
/* --- Global & Typography BY StudioWD--- */
/* -------------------------------------- */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #333;
  background-color: #f9f9f9;
}

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


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

.landing-container {
  /*max-width: 960px'*/
  margin: 0 auto;
  padding: 20px;
  text-align: center;
	
}
	

.section-title {
  font-size: clamp(1.8em, 5vw, 2.8em);
  margin-bottom: 40px;
  color: #222;
  text-align: center;
}

.button {
  display: inline-block;
  background-color: #0073aa;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.button:hover {
  background-color: #005680;
  transform: scale(1.05);
}

/* -------------------------------------- */
/* --- Hero Section --- */
/* -------------------------------------- */
h1.hero-title {
  color: blanchedalmond;
}

.seo-section .section-title {
  color: dodgerblue;
}

.featured-products-section .section-title {
  color: steelblue;
}

.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-section .landing-container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5em, 6vw, 3.5em);
  margin-bottom: 15px;
  animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.1em, 2vw, 1.3em);
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-button {
  animation: zoomIn 1s ease-out 0.6s forwards;
  opacity: 0;
}

/* -------------------------------------- */
/* --- Brands Sections --- */
/* -------------------------------------- */

.brand-logos-section {
  padding: 40px 20px;
  background-color: white;
  text-align: center;
}

.brand-logo-grid {
  display: flex; /* Mantiene los elementos en una fila */
  flex-wrap: wrap; /* Permite que los logos se envuelvan a la siguiente línea en pantallas pequeñas */
  justify-content: center; /* Centra los logos horizontalmente */
  align-items: center; /* Centra los logos verticalmente */
  gap: 30px; /* Espaciado entre los logos */
  max-width: 1000px; /* Evita que los logos se estiren demasiado en pantallas muy grandes */
  margin: 0 auto;
}

.brand-logo-item {
  /* No necesita estilos adicionales si la imagen es flexible */
}

.brand-logo-item img {
  max-height: 80px; /* Limita la altura máxima de los logos */
  width: auto; /* Mantiene la proporción de la imagen */
  max-width: 100%; /* Asegura que la imagen no se desborde del contenedor en móviles */
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  object-fit: contain; /* Ajusta la imagen sin distorsionarla */
}

.brand-logo-item img:hover {
  filter: grayscale(0%);
}



/* -------------------------------------- */
/* --- SEO Sections --- */
/* -------------------------------------- */
.seo-section {
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
  line-height: 1.6;
}

.seo-section p {
  margin-bottom: 1.5em;
  color: #444;
  text-align: center;
}

.seo-section h2 {
  margin-bottom: 25px;
}

/* -------------------------------------- */
/* --- Featured Products Section --- */
/* -------------------------------------- */
.featured-products-section {
  padding: 60px 20px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.product-item {
  background-color: white;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.product-item.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.product-item img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #555;
}

.product-button {
  padding: 10px 20px;
  font-size: 0.9em;
}

/* -------------------------------------- */
/* --- Value Proposition Section --- */
/* -------------------------------------- */
.value-prop-section {
  background-color: #e6f7ff;
  padding: 60px 20px;
  text-align: center;
}

.value-prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-prop-item {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

.value-prop-item.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.value-prop-item i {
  font-size: 3em;
  color: #0073aa;
  margin-bottom: 15px;
}

.prop-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #333;
}

.prop-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666;
}

/* -------------------------------------- */
/* --- Final CTA Section --- */
/* -------------------------------------- */
.cta-final-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #f0f0f0;
}

.cta-subtitle {
  font-size: clamp(1.1em, 2vw, 1.3em);
  margin-bottom: 40px;
  color: #555;
}

.cta-button {
  padding: 20px 40px;
  font-size: clamp(1.2em, 2.5vw, 1.4em);
}

/* -------------------------------------- */
/* --- Floating WhatsApp Button --- */
/* -------------------------------------- */
.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: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1DA851;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}

/* -------------------------------------- */
/* --- Keyframe Animations --- */
/* -------------------------------------- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}