/* Reset base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Contenedor general */
.contenedor {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* Encabezado Hero */
.hero {
  background-color: #1e2b45;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.btn-cta {
  background-color: #f57c00;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out;
}

.btn-cta:hover {
  background-color: #e65100;
}

/* Secciones generales */
section {
  background-color: white;
  margin-bottom: 30px;
  border-top: 4px solid #1e2b45;
}

section h2 {
  font-size: 1.8rem;
  color: #1e2b45;
  margin-bottom: 20px;
}

section ul, section p, section table {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

section ul {
  padding-left: 20px;
}

section ul li {
  margin-bottom: 10px;
  list-style: square;
}

/* Tabla de precios */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f2f2f2;
}

table th, table td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
}

table th {
  background-color: #eeeeee;
}

/* Footer */
footer {
  background-color: #1e2b45;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

footer .btn-footer {
  display: inline-block;
  margin-top: 20px;
  background-color: #f57c00;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

footer .btn-footer:hover {
  background-color: #e65100;
}

footer .legal {
  font-size: 0.9rem;
  color: #cccccc;
  margin-top: 20px;
}