:root {
  --primary-color: #5ba4d6;
  --primary-hover: #4a92c5;
  --bg-color: #ffffff;
  --text-color: #1a1a1a;
  --subtext-color: #555555;
  --card-bg: #f8fbfe;
  --border-color: #e2e8f0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

/* NAVBAR */
header.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  min-height: 140px; /* Le damos suficiente altura a la barra */
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 140px !important; /* El doble del tamaño anterior */
  width: auto !important;
  display: block;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--primary-color);
}

/* BOTONES */
.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-secondary {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 80px 20px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif; /* Fuente con estilo editorial y elegante */
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--text-color);
}

.hero p {
  color: var(--subtext-color);
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

/* SOLUCIONES */
.solutions-section {
  text-align: center;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 30px 20px;
  border-radius: 12px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: left;
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.card p {
  color: var(--subtext-color);
  font-size: 0.95rem;
}