.page-title {
  font-size: 2.6rem;
  text-align: center;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 10px;
}

.page-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #4a90e2;
  margin: 10px auto 0;
  border-radius: 2px;
}


.page-subtext {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.plan-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.2s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card i {
  font-size: 2.5rem;
  color: #4a90e2;
  margin-bottom: 15px;
}

.plan-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-top: 10px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}


.plan-card p {
  font-size: 0.95rem;
  color: #666;
}

.plan-card a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #4a90e2;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.plan-card a:hover {
  background-color: #357ab7;
}


/* Header */
/* ========== HEADER UNIFICADO ========== */
header {
  background-color: #0d7c7d;
  color: white;
  padding: 25px 0;
}

.container-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.logo h1 {
  font-size: 1.9rem;
  margin: 0;
  font-weight: 700;
}

.subtitulo {
  font-size: 0.95rem;
  color: #d9f1f2;
  font-style: italic;
  margin-top: 4px;
}

nav .menu {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

nav .menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav .menu li a:hover {
  color: #ffd700;
}

.menu-toggle {
  display: none;
}

/* Opcional: Responsive (si usarás toggle más adelante) */
@media (max-width: 768px) {
  .container-header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav .menu {
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
  }

  .menu-toggle {
    display: block;
    font-size: 1.6rem;
    cursor: pointer;
    margin-top: 10px;
  }
}


.plan-img {
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #4a90e2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.plan-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



