/* CSS Específico de 'index.php' */
:root {
  --primary-color: #0d6efd;
  --dark-blue: #0a58ca;
  --light-gray: #f8f9fa;
  --dark-text: #212529;
  --muted-text: #6c757d;
  --card-border-color: #e9ecef;
  --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  --card-hover-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
  background-color: #ffffff;
  padding: 6rem 0;
}

.hero-section h1 {
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--dark-text);
}

.hero-section p {
  font-size: 1.25rem;
  color: var(--muted-text);
  max-width: 600px;
  margin: 1rem auto 2rem;
}

.hero-section .btn-primary {
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
  transition: all .3s ease;
}

.hero-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

/* Secciones Generales */
.section-title {
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 3rem;
}

/* Tarjetas de Características (Servicios y Por Qué Elegirnos) */
.feature-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--card-border-color);
  transition: all .3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
  border-color: var(--primary-color);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.feature-card h5 {
  font-weight: 600;
  color: var(--dark-text);
}

/* Tarjetas de Productos */
.product-card {
  border-radius: 12px;
  border: 1px solid var(--card-border-color);
  box-shadow: var(--card-shadow);
  transition: all .3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.product-card .card-img-top {
  height: 200px;
  object-fit: contain;
  padding: 1rem;
}

/* Testimonios */
.testimonial-card {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--card-border-color);
}

.testimonial-card blockquote {
  font-size: 1.2rem;
  font-style: italic;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--primary-color);
}

/* Call to Action (CTA) */
.cta-section {
  padding: 5rem 0;
  background-color: var(--dark-text);
  color: #fff;
  border-radius: 12px;
}

.cta-section h3 {
  font-weight: 700;
}
/* --- INICIO: CÓDIGO AÑADIDO (Blog GURUS) --- */

.blog-card-link {
  text-decoration: none;
  color: var(--dark-text);
  display: block;
  height: 100%;
}

.blog-card-link .feature-card {
  /* Usamos los estilos de .feature-card que ya existen */
  height: 100%;
}

.blog-card-link:hover {
  color: var(--dark-text);
}

.blog-card-link:hover .feature-card {
  /* Re-usamos el hover que ya definimos */
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
  border-color: var(--primary-color);
}

/* --- FIN: CÓDIGO AÑADIDO --- */