/* ====== BASE ====== */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* ====== HEADER ====== */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.navbar-brand {
  font-size: 1.1rem;
}

/* ====== HERO ====== */
.hero {
  background: linear-gradient(to bottom, #e6f0ff, #ffffff);
  padding: 4rem 0;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d6efd;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.hero-intro {
  max-width: 700px;
  margin-top: 1.5rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

/* ====== SECCIONES ====== */
.section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border-bottom: 3px solid #0d6efd;
  display: inline-block;
  padding-bottom: 0.4rem;
}

/* ====== SERVICIOS ====== */
.service-card {
  padding: 1.8rem;
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
  height: 100%;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* ====== FOOTER ====== */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #6c757d;
}

.site-footer a {
  color: #6c757d;
}

/* Hover suave para bloques de contenido */
.service-card {
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  background-color: #f1f3f5; /* gris/plomo muy suave */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.service-card p {
  margin-bottom: 0.75rem;
}

.service-card p:last-child {
  margin-bottom: 0;
}

/* Imagenes dentro de posts */
.post-image {
  max-width: 65%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .post-image {
    max-width: 100%;
  }
}
