html {
  height: 100%;
  overflow: hidden;
}
.title {
  color: #5c6ac4;
}
/* Estilos para la cinta de "Bajo Construcción" */
.ribbon-wrapper {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: fixed; /* Mantiene la cinta fija al hacer scroll */
  top: 0;
  right: 0;
  z-index: 9999; /* Asegura que esté por encima de todo */
}
.ribbon {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #000; /* Texto negro para contraste sobre el verde */
  text-align: center;
  text-transform: uppercase;
  transform: rotate(45deg);
  position: relative;
  padding: 7px 0;
  left: -5px;
  top: 45px;
  width: 220px;
  background-color: var(--green-accent);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}
/* Estilos de la página oficial */
:root {
  --blue-main: #003366;
  --green-accent: #2ecc71;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--white);
  background-color: #050a0f;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

h1,
h2,
.hero-title {
  font-family: "Montserrat", sans-serif;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 0, 0, 0.9)),
    url("https://images.unsplash.com/photo-1544013587-4142a2ca4760?q=80&w=2069&auto=format&fit=crop")
      center/cover no-repeat;
  padding: 20px;
}

.logo-img {
  width: 50vh;
  max-width: 80%;
  filter: drop-shadow(0 0 20px rgba(46, 204, 113, 0.5));
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 4rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.typewriter-container {
  font-size: 2rem;
  height: 2.5rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-text {
  color: var(--white);
  margin-right: 10px;
}

.dynamic-text {
  color: var(--green-accent);
  font-weight: 700;
  border-right: 3px solid var(--green-accent);
  white-space: nowrap;
  overflow: hidden;
  animation: cursor 0.8s infinite;
}

@keyframes cursor {
  0%,
  100% {
    border-color: transparent;
  }
  50% {
    border-color: var(--green-accent);
  }
}

/* Resto de estilos permanecen igual */
.comparison {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  scroll-snap-align: start;
  background: #f4f7f6;
  color: #333;
}
.comp-box {
  flex: 1;
  min-width: 300px;
  padding: 5rem 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.is-section {
  background: #fff;
  border-right: 1px solid #eee;
}
.is-not-section {
  background: #fdfdfd;
}
.comp-box h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--blue-main);
}
.is-not-section h2 {
  color: #e74c3c;
}
.comp-list {
  list-style: none;
}
.comp-list li {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.1rem;
}
.is-section li::before {
  content: "✓";
  color: var(--green-accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}
.is-not-section li::before {
  content: "✕";
  color: #e74c3c;
  position: absolute;
  left: 0;
  font-weight: bold;
}
.video-section {
  height: 100vh;
  scroll-snap-align: start;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-section iframe {
  width: 100%;
  height: 100%;
}

.features {
  display: none;
  padding: 5rem 10%;
  background: var(--blue-main);
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--glass);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cta {
  padding: 6rem 20px;
  text-align: center;
  background: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
}
.btn-telegram {
  display: inline-block;
  background: #0088cc;
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 136, 204, 0.3);
}
.btn-telegram:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 136, 204, 0.5);
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  scroll-snap-align: start;
  align-items: center;
  gap: 2rem;
  padding: 3.5rem 3rem;
  background: #0a0a0a;
  border-top: 1px solid #1f1f1f;
  font-size: 0.85rem;
  color: #9ca3af;
  font-family: 'Open Sans', sans-serif;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Columna 1 */
.footer-identity {
  align-items: flex-start;
}

.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.footer-made-with {
  color: #9ca3af;
}

.footer-slogan {
  font-style: italic;
  color: #6b7280;
  font-size: 0.8rem;
}

/* Columna 2 */
.footer-contact {
  align-items: center;
  gap: 0.75rem;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-link:hover {
  color: #fff;
}

/* Columna 3 */
.footer-legal {
  align-items: flex-end;
  gap: 0.75rem;
}

.data-fiscal-wrapper {
  background: #f9fafb;
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  color: #6b7280;
  font-size: 0.78rem;
  text-align: right;
}

@media (max-width: 768px) {
  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

  .footer-identity,
  .footer-contact,
  .footer-legal {
    align-items: center;
  }

  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .typewriter-container {
    font-size: 1.4rem;
  }
}
