/* style.css */

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-color);
  /* Mejorar la renderización de fuentes */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Clases de utilidad personalizadas */
.bg-primary-custom {
  background-color: var(--primary-color) !important;
  color: #fff;
}

.text-primary-custom {
  color: var(--primary-color) !important;
}

.bg-secondary-custom {
  background-color: var(--secondary-color) !important;
}

/* Botones */
.btn-light {
  background-color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.btn-light:hover {
  background-color: #f1f1f1;
  transform: translateY(-2px); /* Pequeño efecto al pasar el ratón */
}

/* Iconos de pasos */
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

/* Efecto de sombra al pasar el ratón */
.shadow-hover:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  transition: all 0.3s ease-in-out;
}

/* Bloque de citas (blockquote) */
.blockquote {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Footer (estilos generales) */
footer {
  font-size: 0.95rem;
}

/* Estilos para el contenido personalizado (texto principal) */
.custom-content {
  line-height: 1.7;
}

.custom-content h1,
.custom-content h2,
.custom-content h3,
.custom-content h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.custom-content h1 { font-size: 2.5rem; }
.custom-content h2 { font-size: 2rem; }
.custom-content h3 { font-size: 1.5rem; }
.custom-content h4 { font-size: 1.25rem; }

.custom-content p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.custom-content ul,
.custom-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.custom-content ul li,
.custom-content ol li {
  margin-bottom: 0.5rem;
}

.custom-content ul li::marker {
  color: var(--accent-color);
}

.custom-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.custom-content img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Hero Section Specific Styles */
.hero-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-section .overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Slick Carousel Customizations (opcional, para controlar los puntos de navegación) */
.slick-dots li button:before {
  font-size: 10px; /* Tamaño de los puntos */
  color: white; /* Color de los puntos inactivos */
}

.slick-dots li.slick-active button:before {
  color: var(--accent-color); /* Color de los puntos activos */
}
