:root {
  --azul: #0A2A3A;
  --rojo: #C1322E;
  --verde-claro: #6BAA41;
  --crema: #F2E7C9;
  --dorado: #D4A643
}

/* RESET */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  color: var(--azul);
  line-height: 1.6;
}

h1,h2,h3 { margin: 0; font-weight: 700; }
section { padding: 30px 20px; }
.container { max-width: 1100px; margin: auto; }

/* HERO */

.hero {
  position: relative;
}

/* LOGO EN HERO */
.hero-logo {
  position: absolute;
  top: 20px;
  left: 20px;
}

.hero-logo img {
  width: 90px;        /* ajusta según tu logo */
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 6px #00000040); /* opcional, se ve más premium */
}

.hero {
  background: linear-gradient(135deg, #0A2A3A, #000000);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 { font-size: 42px; }
.hero p { margin-top: 15px; font-size: 18px; }

.hero .btn {
  margin-top: 25px;
  display: inline-block;
  padding: 14px 26px;
  background: var(--rojo);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.hero .btn:hover { background: var(--dorado); }

/* SERVICIOS */
.services-scroll {
  overflow-x: auto;
  padding: 20px 0;
  margin-top: 30px;
  white-space: nowrap; /* permite scroll horizontal */
}

.service-horizontal-card {
  display: inline-block; /* mantiene tarjetas en fila */
  vertical-align: top;
  width: 260px;
  margin-right: 16px;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  word-wrap: break-word; /* ajusta texto largo */
  white-space: normal;   /* evita que el texto se quede en una línea */
}


.service-horizontal-card:hover { transform: translateY(-6px); }
.service-horizontal-card h3 { color: var(--azul); margin-bottom: 10px; }
.title { color: var(--verde-claro); }
.price { font-weight: 700; font-size: 18px; color: var(--rojo); margin-top: 10px; }

.cta-services { text-align: center; }

.cta-services .btn {
  display: inline-block;
  padding: 14px 26px;
  background: var(--rojo);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-services .btn:hover { background: var(--dorado); }

/* BENEFICIOS */
.benefits {
  background: linear-gradient(135deg, #000000, #0A2A3A);
  color: white;
}
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; margin-top: 40px; }

.benefit-card {
  display: flex;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.benefit-bar { width: 5px; background: var(--azul); border-radius: 2px; }
.benefit-content { padding-left: 15px; }
.benefit-content h3 { margin-bottom: 10px; color: var(--azul); }
.benefit-content p { margin: 0; color: var(--azul); }

/* PROCESO */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 30px; }
.process-card { background: #ffffff; padding: 30px 20px; border-radius: 15px; box-shadow: 0 4px 12px rgba(0,0,0,0.06); text-align: center; transition: 0.3s; }
.process-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.12); }
.process-circle { width: 60px; height: 60px; background: var(--azul); color: white; font-weight: 700; font-size: 22px; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto 15px; }

/* CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, #0A2A3A, #000000);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

footer.footer {
  text-align: center;
  padding: 40px 20px;
  background: #0A2A3A;
  color: #fff;
}

.footer-logo img {
  width: 100px; /* Ajustable */
  height: auto;
  margin-bottom: 15px;
  margin-top: -35px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 2px 5px #00000040); /* opcional */
}

.cta-final h2 { font-size: 32px; }
.cta-final .btn-dark { margin-top: 50px; display: inline-block; padding: 14px 26px; background: var(--rojo); color: white; text-decoration: none; border-radius: 6px; font-weight: 600; transition: 0.3s; }
.cta-final .btn-dark:hover { background: var(--dorado); }

/* RESPONSIVE */
@media (max-width:700px) {
  .process-step { flex-direction: column; }
}
