﻿/* ================================
   HERO SECTION
================================ */
.hero {
  width: 100%;
  padding: 70px 0;
  background: linear-gradient(90deg, #d6e6f7, #a9c4e9, #8bb6e8);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-small {
  padding: 55px 0;
}

.hero-center {
  width: 90%;
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  color: #003a76;
  font-size: 36px;
  margin-bottom: 8px;
}

.hero p {
  color: #1a1a1a;
  font-size: 18px;
}

/* ================================
   INFO CONTAINER
================================ */
.info-container {
  width: 93%;
  max-width: 1100px;
  margin: 40px auto;
}

/* ================================
   PRICING GRID
================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

/* ================================
   PRICING BOX
================================ */
.plan-box {
  background: #f8f9fb;
  border: 2px solid #cddff7;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.25s;
  position: relative;
}

.plan-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  border-color: #7fb9ff;
}

/* TITULO */
.plan-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #003a76;
}

/* PRECIO */
.plan-price {
  font-size: 22px;
  font-weight: 700;
  color: #006ad6;
  margin-bottom: 15px;
}

/* LISTADO */
.plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plan-list li {
  padding-left: 15px;
  position: relative;
  margin: 6px 0;
}

.plan-list li::before {
  content: "•";
  font-size: 22px;
  color: #0078ff;
  position: absolute;
  left: 0;
  top: -2px;
}

/* BOTÓN */
.plan-btn {
  background: #0078ff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.plan-btn:hover {
  background: #005fcc;
}

/* ENTERPRISE BADGE */
.enterprise {
  border-color: #0066cc;
}

.badge-enterprise {
  background: #0078ff;
  color: white;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 999px;
  display: inline-block;
  position: absolute;
  top: -12px;
  left: 20px;
  font-weight: 600;
}

.btn-enterprise {
  background: #003a76;
}

.btn-enterprise:hover {
  background: #001f47;
}
