
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
}

/* Header Navigation */
.main-header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px 50px;
    display: flex;
    justify-content: flex-end;
    
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}


/* Estilos base para todos los enlaces del nav */
.nav-links li a {
    text-decoration: none;
    color: #fff; /* O el color que ya tengas */
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* La línea base (invisible al inicio) */
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #00ffff; /* Tu color Cian */
    transition: width 0.3s ease;
}

/* Hover para los enlaces estándar (Cian) */
.nav-links li a:hover::after {
    width: 100%;
}

/* Excepción para el LOGIN (Blanco) */
.nav-links li a.login-link::after {
    background-color: #ffffff; /* Línea blanca */
}

/* Opcional: un sutil cambio de brillo en el texto al pasar el mouse */
.nav-links li a:hover {
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.nav-links li a.login-link:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}
.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    
    transition: 0.3s;
    font-size: 20px;
}

.login-link {
    color: #00ced1 !important; /* Color Cyan */
}

/* Hero Section Base */
.hero-section {
    position: relative;
    height: calc(100vh - 60px); /* Ajuste según altura del header */
    overflow: hidden;
}

/* Video Background */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Capa de transparencia */
}

/* Layout Diagonal */
.hero-content {
    position: relative;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top-left h1 {
    font-size: 25px;
    letter-spacing: 2px;
    line-height: 1;
}

.accent-color {
    color: #00ced1;
}

.center-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
}

.bottom-right {
    align-self: flex-end;
    text-align: right;
}

.efficiency-text {
    font-size: 4rem;
    font-style: italic;
    opacity: 0.6;
    margin-bottom: 20px;
    font-weight: 300;
}

.start-btn {
    border: 4px solid #00ced1;
    background: transparent;
    color: #00ced1;
    padding: 10px 40px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.start-btn:hover {
    background: #00ced1;
    color: #000;
}


/* ----------- */
.features{
  margin-top: 200px;
}
/* Layout General */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Beneficios */
.feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    padding: 0%;
}

.feature-item .reverse {
    flex-direction: row-reverse;
}

.feature-img img {
    max-width: 700px;
    /* filter: drop-shadow(0 0 15px rgba(0, 206, 209, 0.3)); */
}

.feature-text{
  text-align: center;
  width: 50%;
  max-width: 400px;
  transition-delay: 0.2s;

}

.div-title{
  text-align: center;
  width: 100%;
  font-size: 2rem;
  transition-delay: 0.2s;
  margin-bottom: 150px;
}

.div-title h3{
  text-align: center;
  width: 100%;
  
  margin-bottom: 150px;
}



.feature-text h3 {
    font-size: 2rem;
    font-weight: 300;
}

.feature-map {
    margin-top: 100px;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    width: 100%;
}
.div-text-map{
   padding-top: 100px;
   margin-top: 100px;
  width: 100%;

}
.div-text-map p {
    text-align: center;
    
    font-style: italic;
    font-size: 2rem;
    margin-bottom: 30px;
}

.feature-map img {
    width: 100%;
    
    border-radius: 15px;
}
/* ----- */

/* estilos de la imagen  */

.imagen-fundido-eliptico {
  /* Prefijo para compatibilidad con navegadores (obligatorio en muchos casos) */
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 1) 0%,   /* Centro: Totalmente visible */
    rgba(255, 255, 255, 1) 60%,  /* Ajusta este valor para suavizar */
    rgba(255, 255, 255, 0) 100%  /* En el borde: Totalmente transparente */
  );

  /* Propiedad estándar */
  mask-image: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 60%,
    rgba(255, 255, 255, 0) 100%
  );
}


.contenedor-negro {
  background-color: #000; /* Fondo negro obligatorio */
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center; /* Centrado completo */
  min-height: 100vh; /* Ocupa al menos el alto de la pantalla */
}

.imagen-fundido-profundo {
  display: block;
  width: 100%;
  max-width: 1200px; /* Ajusta según el tamaño de tu imagen */
  height: auto;

  /* --- MÁSCARA PARA NAVEGADORES WEBKIT (Chrome, Safari, Edge) --- */
  -webkit-mask-image:
    /* Degradado Vertical: Suave arriba/abajo */
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,     /* Arriba: Totalmente transparente */
      rgba(0, 0, 0, 1) 15%,    /* Se vuelve visible rápido */
      rgba(0, 0, 0, 1) 85%,    /* Se mantiene visible */
      rgba(0, 0, 0, 0) 100%    /* Abajo: Totalmente transparente */
    ),
    /* Degradado Horizontal: MUY profundo izquierda/derecha */
    linear-gradient(to right,
      rgba(0, 0, 0, 0) 0%,     /* Izquierda: Totalmente transparente */
      rgba(0, 0, 0, 1) 35%,    /* ¡Fíjate en este valor! La imagen es sólida mucho más tarde */
      rgba(0, 0, 0, 1) 65%,    /* El área sólida central es estrecha */
      rgba(0, 0, 0, 0) 100%    /* Derecha: Totalmente transparente */
    );

  /* Define cómo se combinan las máscaras superpuestas */
  -webkit-mask-composite: source-in; /* ESTA LÍNEA ES CLAVE: Muestra solo donde AMBAS máscaras son visibles */
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;


  /* --- MÁSCARA ESTÁNDAR (Para compatibilidad futura) --- */
  mask-image:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 15%,
      rgba(0, 0, 0, 1) 85%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 35%,
      rgba(0, 0, 0, 1) 65%,
      rgba(0, 0, 0, 0) 100%
    );

  mask-composite: intersect; /* ESTA LÍNEA ES CLAVE para el estándar */
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}



/* Sección Planes */
.pricing {
    text-align: center;
    padding: 80px 0;
}

.pricing h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.pricing-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.card {
    border: 1px solid #00ced1;
    border-radius: 20px;
    padding: 40px 30px;
    width: 280px;
    background: rgba(0, 206, 209, 0.05);
    transition: 0.3s ease;
}

.card.active {
    box-shadow: 0 0 25px rgba(0, 206, 209, 0.4);
    transform: scale(1.05);
}

.card h3 {
    color: #00ced1;
    margin-bottom: 20px;
}

.chats-amount {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.chats-amount span {
    font-size: 0.9rem;
    font-weight: normal;
}

.card ul {
    list-style: none;
    text-align: left;
    font-size: 0.85rem;
}

.card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.card ul li::before {
    content: "•";
    color: #00ced1;
    position: absolute;
    left: 0;
}

/* Botones y Flechas */
.arrow {
    background: transparent;
    border: none;
    color: #00ced1;
    font-size: 3rem;
    cursor: pointer;
}

.choose-plan-btn {
    border: 2px solid #00ced1;
    background: transparent;
    color: #00ced1;
    padding: 15px 50px;
    border-radius: 40px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

.choose-plan-btn:hover {
    background: #00ced1;
    color: #000;
}

/* -------------------- */

/* --- SECCIÓN DE CONTACTO --- */
.contact-section {
    padding: 80px 20px;
    background-color: #000;
    display: flex;
    justify-content: center;
}

.contact-card {
    border: 1px solid #00ced1;
    border-radius: 25px;
    padding: 50px 40px;
    width: 100%;
    max-width: 650px;
    text-align: center;
    background: rgba(0, 206, 209, 0.02);
    box-shadow: inset 0 0 15px rgba(0, 206, 209, 0.1);
}

.contact-card h2 {
    color: #00ced1;
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.contact-info {
    display: inline-flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s ease;
}

.contact-item a:hover {
    color: #00ced1;
}

.icon img {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 0 8px rgba(0, 206, 209, 0.6));
}

/* --- FOOTER --- */
.main-footer {
    background-color: #000;
    padding: 20px 40px 40px;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    margin-bottom: 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 1.5px;
}

.brand-connect {
    color: #00ced1;
}

.footer-nav {
    color: #fff;
    font-size: 0.95rem;
}

.footer-nav a, footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
    transition: 0.2s;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links img {
    max-width: 36px;
    border-radius: 25%;
    transition: filter 0.3s, transform 0.3s;
}

.social-links img:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

/* --------------- */

/* anumación entada imagen y texto  */

/* Estado inicial para los elementos que vienen de la izquierda */
.feature-img, .feature-text, .div-text-map, .feature-map {
    opacity: 0;
    transition: all 0.8s ease-out;
}

/* Configuramos las direcciones */
.feature-item .feature-img { transform: translateX(-50px); } /* Viene de la izquierda */
.feature-item .feature-text { transform: translateX(50px); }  /* Viene de la derecha */

/* Ajuste para las filas 'reverse' para que mantengan coherencia */
.feature-item.reverse .feature-text { transform: translateX(-50px); }
.feature-item.reverse .feature-img { transform: translateX(50px); }

/* Elementos de la parte del mapa (vienen desde abajo o lados) */
.div-text-map { transform: translateY(30px); }
.feature-map { transform: scale(0.9); }

/* ESTADO ACTIVO: Cuando la clase 'visible' se añade con JS */
.reveal-active {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}




/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        padding-left: 0;
    }
}