/* HEADER FIJO */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(255, 255, 255);
  border-bottom: 3px solid #004754;
  z-index: 9999;
  height: 100px;
  display: flex;
  align-items: center;
}

/* LOGO */
.logo {
  height: 80px;
}

/* EVITA QUE EL CONTENIDO QUEDE TAPADO */
body {
  padding-top: 80px;
}
.hero-subtitle {
  font-weight: 600;      /* negrita */
  font-style: italic;   /* inclinada */
  margin-top: 40px;     /* más espacio desde arriba */
  margin-bottom: 40px;  /* aire antes de lo siguiente */
  font-size: 1.4rem;
}
.hero-text {
  margin-top: 30px;
  margin-bottom: 20px;
}

.hero-line-1 {
  font-weight: 700;
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 4px; /* MUY POCO espacio */
}

.hero-line-2 {
  font-weight: 600;
  font-style: italic;
  font-size: 1.3rem;
  margin-top: 0;      /* elimina separación */
}
.system-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;   /* más grande */
  font-weight: 700;   /* negrita fuerte */
  margin-top: 35px;
  margin-bottom: 15px;
  color: #2f3a3f;
}
.system-title {
  border-bottom: 2px solid #4f9a8b;
  display: inline-block;
  padding-bottom: 5px;
}
.system-section {
  width: 100%;
  text-align: center;
  margin: 50px auto;
}

.system-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 25px;
  display: inline-block;
  border-bottom: 2px solid #4f9a8b;
  padding-bottom: 6px;
  color: #2f3a3f;
}

.system-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

.system-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
}

.system-title {
  display: inline-block;
}

.system-title-container {
  text-align: center;
}

.system-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-block;
  margin: 40px auto 20px;
  color: #2f3a3f;
  border-bottom: 2px solid #4f9a8b;
  padding-bottom: 5px;
}

.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px 0 35px 0;
}

.hero-image img {
  width: 100%;
  max-width: 920px;
  height: auto;
  object-fit: contain; /* clave para que no se corte */
  border-radius: 14px;
}


.hero-image img {
  box-shadow: 0 25px 15px rgba(0,0,0,0.15);
}
.system-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 12px;
}

.system-list i {
  color: #4f9a8b;
  font-size: 1.1rem;
}
.fade-in {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {

  .system-title {
    font-size: 1.4rem;
  }

  .system-list li {
    font-size: 0.95rem;
    text-align: left;
    justify-content: flex-start;
  }

  .hero-image img {
    max-width: 90%;
  }
}

.cta-box {
  text-align: center;
  margin: 50px auto;
}

.cta-box h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.cta-button {
  background-color: #4f9a8b;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.5s ease;
}

.cta-button:hover {
  background-color: #3f7f73;
}

body {
  font-family: 'Poppins', sans-serif;
}

.features {
  text-align: center;
  padding: 60px 20px;
}

.features h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.features {
  padding-bottom: 30px; /* antes estaba muy grande */
}

.features ul {
  margin-bottom: 10px; /* reduce espacio con el texto siguiente */
}

.ideal {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.features li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.features li i {
  color: #022852;
  font-size: 22px;
}

.features li:nth-child(1) { animation-delay: 0.1s; }
.features li:nth-child(2) { animation-delay: 0.2s; }
.features li:nth-child(3) { animation-delay: 0.3s; }
.features li:nth-child(4) { animation-delay: 0.4s; }

.cta {
  padding-bottom: 100px; /* más aire antes del footer */
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contacto a {
  text-decoration: none;
  color: inherit;
}

.contacto {
  text-align: center;
  padding: 40px 20px;
  background: #f7f7f7;
}

.contacto p {
  margin: 10px 0;
  font-size: 16px;
}

.contacto i {
  margin-right: 8px;
  color: #04384a;
}

.marca {
  margin-top: 25px;
  font-size: 16px;
}
.by {
  margin-top: 20px;
  font-style: italic;
  font-weight: 400; /* NO bold */
  color: #0a0137;
}

@keyframes nudge {
  0% { transform: translateX(0); }
  50% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

.cursor-icon {
  animation: nudge 1.5s infinite;
}

@media (max-width: 600px) {
  .features li {
    font-size: 16px;
  }

  .cta h3 {
    font-size: 22px;
  }

  .btn-demo {
    width: 100%;
    display: inline-block;
  }
}

.cursor-icon {
  color: #015866;      /* verde */
  margin-right: 10px;
  font-size: 18px;
}
.btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}


.legal {
  font-size: 12.5px;
  color: #9aa3a8;        /* más tenue / gris suave */
  max-width: 700px;
  width: 100%;
  margin: 20px auto;
  line-height: 1.4;
  text-align: center;
  font-style: italic;   /* 👈 inclinada */
}

footer,
.contacto  {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f7f9;
  color: #1a1a1a;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 16px;
}

.lang-block {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.lang-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.lang-header img {
  width: 32px;
  height: auto;
}

h1 {
  font-size: 1.4rem;
  margin: 12px 0;
}

.highlight {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.info {
  font-size: 1rem;
  margin-bottom: 16px;
}

.call-button {
  display: block;
  text-align: center;
  background-color: #007bff;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 14px;
  border-radius: 8px;
}


.page-header {
  position: sticky; /* se queda visible al hacer scroll */
  top: 0;
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
  padding: 12px 0;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.map-container {
  margin-top: 16px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.map-container iframe {
  border: 0;
  width: 100%;
  height: 250px;
}