/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GENERAL */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0A1F44;
  color: #ffffff;
  line-height: 1.6;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  background: #071733;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.logo-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-header img {
  width: 85px;
}

header h2 {
  font-size: 26px;
}

/* IDIOMA */
.lang-switch {
  cursor: pointer;
  font-weight: bold;
}

.lang-switch:hover {
  color: #C9A646;
}

/* ================= HERO SPLIT ================= */

.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
  gap: 50px;
}

/* TEXTO */
.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 44px;
  margin-bottom: 20px;
}

.hero-text p {
  color: #ccc;
  margin-bottom: 20px;
  max-width: 520px;
}

/* LISTA */
.hero-points {
  list-style: none;
  margin-bottom: 25px;
}

.hero-points li {
  margin-bottom: 8px;
  color: #C9A646;
  font-size: 15px;
}

/* BOTÓN */
.btn {
  background: #C9A646;
  color: #000;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 5px 20px rgba(201,166,70,0.4);
  transition: 0.3s;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,166,70,0.7);
}

/* WARNING */
.hero-warning {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #aaa;
}

/* IMAGEN */
.hero-img {
  flex: 1;
}

.hero-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  transform: scale(1.02);
}

/* ================= SECCIONES ================= */

.section {
  padding: 90px 60px;
  text-align: center;
}

/* VARIACIÓN DE FONDOS */
.section:nth-child(even) {
  background: #081c3a;
}

.section:nth-child(odd) {
  background: #0A1F44;
}

/* TITULOS */
.section h2 {
  font-size: 34px;
  margin-bottom: 25px;
}

/* TEXTO */
.section p {
  max-width: 800px;
  margin: auto;
  color: #cfcfcf;
}

/* ================= GRID ================= */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* ================= TARJETAS ================= */

.card {
  background: #071733;
  padding: 25px;
  border-radius: 14px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

/* EFECTO ANTI PLANO */
.services .card:nth-child(odd) {
  transform: translateY(10px);
}

.services .card:nth-child(even) {
  transform: translateY(-10px);
}

/* INFO */
.info {
  display: none;
  margin-top: 10px;
  font-size: 14px;
  color: #ccc;
}

/* ================= PROBLEMAS ================= */

.problemas {
  background: linear-gradient(135deg, #091f3f, #06152c);
}

/* ================= TIMELINE ================= */

.timeline {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}

.step {
  flex: 1;
  min-width: 200px;
  background: #071733;
  padding: 25px;
  border-radius: 14px;
  border-top: 3px solid #C9A646;
}

.step span {
  font-size: 28px;
  font-weight: bold;
  color: #C9A646;
}

/* ================= TESTIMONIOS ================= */

.testimonios {
  background: #061a38;
}

.testimonios .card {
  background: linear-gradient(145deg, #0d2b5c, #081c3a);
  border-left: 4px solid #C9A646;
  font-style: italic;
}

.testimonios strong {
  display: block;
  margin-top: 10px;
  color: #C9A646;
}

/* ================= BENEFICIOS ================= */

.beneficios {
  background: #081c3a;
  text-align: left;
}

.beneficio {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 30px auto;
  max-width: 800px;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}

.icono {
  font-size: 22px;
  background: #C9A646;
  color: #000;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.beneficio:hover {
  transform: translateX(10px);
}

/* ================= FAQ ================= */

.faq .card {
  text-align: left;
}

/* ================= FORMULARIO ================= */

form {
  max-width: 500px;
  margin: 40px auto;
}

input,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  border: none;
  margin-bottom: 15px;
}

/* ================= CTA FINAL ================= */

.section:last-of-type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.section:last-of-type p {
  margin: 15px 0;
}

/* ================= FOOTER ================= */

footer {
  background: #071733;
  padding: 25px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}

/* ================= WHATSAPP ================= */

.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  text-decoration: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  header {
    flex-direction: column;
    text-align: center;
  }

  .hero-split {
    flex-direction: column;
    text-align: center;
  }

  .hero-text p {
    margin: auto;
  }

  .section {
    padding: 60px 20px;
  }

  .timeline {
    flex-direction: column;
  }

  .beneficio {
    flex-direction: column;
  }
}