/* ===========================
   Estilos para Subpáginas de Servicios
   =========================== */

/* Reset básico */

/* Contenedor principal */
.container-1 {
  max-width: 900px;
  margin: auto;
  margin-top: 80px;
  background-color: #ffffff;
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(133, 120, 120, 0.1);
}

/* Título principal */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #34495e;
  text-align: center;
  border-bottom: 3px solid #ff6b6b;
  padding-bottom: 10px;
}

/* Subtítulos */
h2 {
  font-size: 1.6rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #e74c3c;
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #ff6b6b;
  margin-top: 5px;
}

/* Párrafos */
p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555;
}

/* Listas */
ul,
ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

ul li,
ol li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Destacar precios */
.price-highlight {
  background-color: #f9f2f4;
  border-left: 4px solid #ff6b6b;
  padding: 15px;
  margin: 20px 0;
  font-weight: 500;
  border-radius: 5px;
}

.price-highlight strong {
  color: #e74c3c;
  font-size: 1.1rem;
}

/* Secciones especiales */
.highlight-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.process-step {
  background-color: #f8f9fa;
  border-left: 4px solid #45b7d1;
  padding: 15px;
  margin: 15px 0;
  border-radius: 5px;
}

.process-step h3 {
  color: #45b7d1;
  margin-bottom: 10px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .container {
    padding: 30px 20px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.3rem;
  }
}

/* Botones */
.button-link {
  display: inline-block;
  background: #ff6b6b;
  color: white;
  padding: 12px 30px;
  margin: 20px 10px 20px 0;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.button-link:hover {
  background: #e74c3c;
  transform: translateY(-2px);
}

.button-secondary {
  background: #45b7d1;
}

.button-secondary:hover {
  background: #3498db;
}

/* Tabla de precios */
.pricing-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: white;
  border-radius: 10px;
  overflow-y: scroll;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-table th,
.pricing-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.pricing-table th {
  background: #ff6b6b;
  color: white;
  font-weight: 600;
}

.pricing-table tr:hover {
  background-color: #f8f9fa;
}

/* Iconos decorativos */
.icon-text {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.icon-text::before {
  content: "✨";
  margin-right: 10px;
  font-size: 1.2rem;
}
