/* ================================= DASHBOARD CORE ================================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {

    /* COLORES PRINCIPALES */
    --movve-green: #00e676;
    --movve-dark: #1a222b;

    /* FONDOS */
    --movve-card-bg: #ffffff;
    --movve-sidebar: #f8fafc;
    --movve-bg: #f1f5f9;

    /* TEXTO */
    --text-dark: #334155;
    --text-light: #94a3b8;

    /* BORDES */
    --border-color: #e2e8f0;

    /* SOMBRAS PRO */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.04);
    --shadow-md: 0 6px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 35px rgba(0,0,0,0.08);

    /* RADIUS */
    --radius: 20px;

    /* TRANSICIONES */
    --transition: all .25s ease;
}

/* ================================= RESET ================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Plus Jakarta Sans', sans-serif;
    background:var(--movve-bg);
    color:var(--text-dark);
    line-height:1.5;
}

/* ================= SECCIÓN COMUNIDAD (ROOT LIGHT) ================= */

.comunidad-pro {
    padding: 100px 5%;
    background-color: var(--movve-bg); /* #f1f5f9 */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.comunidad-pro .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* BADGE DE COMUNIDAD */
.comunidad-pro .content-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 230, 118, 0.1);
    color: var(--movve-green);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* TÍTULO IMPACTANTE */
.comunidad-pro .titulo {
    font-size: 3.5rem;
    color: var(--movve-dark);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.comunidad-pro .titulo span {
    color: var(--movve-green);
}

.comunidad-pro .descripcion {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 750px;
    margin-bottom: 50px;
}

.comunidad-pro .descripcion strong {
    color: var(--movve-green);
    display: block;
    margin-top: 15px;
}

/* LISTA DE BENEFICIOS (ESTILO TARJETAS LIMPIAS) */
.comunidad-pro .info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.comunidad-pro .info-list li {
    display: flex;
    flex-direction: column; /* Icono arriba para variar el estilo de comunidad */
    gap: 20px;
    padding: 35px;
    background: var(--movve-card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.comunidad-pro .info-list li:hover {
    transform: translateY(-10px);
    border-color: var(--movve-green);
    box-shadow: var(--shadow-lg);
}

.comunidad-pro .icon {
    width: 55px;
    height: 55px;
    background: var(--movve-green);
    color: white;
    border-radius: 50%; /* Circular para comunidad */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
}

.comunidad-pro .info strong {
    display: block;
    color: var(--movve-dark);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.comunidad-pro .info span {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* BOTONES DE ACCIÓN */
.comunidad-pro .acciones {
    display: flex;
    gap: 25px;
    align-items: center;
}

.comunidad-pro .btn-back {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.comunidad-pro .btn-back:hover {
    color: var(--movve-green);
    transform: translateX(-5px);
}

.comunidad-pro .btn-explorar {
    text-decoration: none;
    background: var(--movve-green);
    color: white;
    padding: 18px 40px;
    border-radius: var(--radius);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.2);
    transition: var(--transition);
}

.comunidad-pro .btn-explorar:hover {
    background: var(--movve-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .comunidad-pro .titulo { font-size: 2.5rem; }
    .comunidad-pro .acciones { flex-direction: column-reverse; width: 100%; }
    .comunidad-pro .btn-explorar, .comunidad-pro .btn-back { width: 100%; justify-content: center; }
}

/* ================= GALERÍA DE COMUNIDAD ================= */

.galeria-comunidad {
    padding: 80px 5%;
    background-color: var(--movve-bg);
    text-align: center;
}

.galeria-comunidad .gallery-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.galeria-comunidad .gallery-title {
    font-size: 2.8rem;
    color: var(--movve-dark);
    margin-bottom: 10px;
    font-weight: 800;
}

.galeria-comunidad .gallery-title span {
    color: var(--movve-green);
}

.galeria-comunidad .gallery-sub {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* MARCO DE LA GALERÍA */
.galeria-comunidad .gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--movve-dark);
    border: 4px solid var(--movve-card-bg);
}

/* IMÁGENES */
.galeria-comunidad .gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 2s ease; /* Transición más suave */
    z-index: 1;
}

.galeria-comunidad .gallery-image.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1.03);
}

/* CAPTION ESTILO "COMUNIDAD" */
.galeria-comunidad .gallery-caption {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--movve-green);
    color: white;
    padding: 10px 20px;
    border-radius: 30px 30px 5px 30px; /* Estilo burbuja */
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.4);
    text-transform: uppercase;
}

/* CONTROLES */
.galeria-comunidad .controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.galeria-comunidad .prev-btn, 
.galeria-comunidad .next-btn {
    background: var(--movve-dark);
    border: none;
    color: var(--movve-green);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeria-comunidad .prev-btn:hover, 
.galeria-comunidad .next-btn:hover {
    background: var(--movve-green);
    color: white;
    transform: rotate(-10deg) scale(1.1); /* Efecto divertido para comunidad */
}

/* DOTS */
.galeria-comunidad .dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.galeria-comunidad .dot {
    width: 12px;
    height: 12px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.galeria-comunidad .dot.active {
    background: var(--movve-green);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .galeria-comunidad .gallery { aspect-ratio: 1 / 1; } /* Cuadrado en móvil para fotos de personas */
}

/* ================= SECCIÓN CTA REGISTRO (CON WALLET) ================= */

.cta-registro-pro {
    padding: 100px 5%;
    background-color: var(--movve-bg);
     margin-top: -100px;
    z-index: 10;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-card {
    background: var(--movve-card-bg);
    padding: 60px 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}

/* ICONO ANIMADO */
.cta-icon {
    font-size: 3.5rem;
    color: var(--movve-green);
    margin-bottom: 25px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-title {
    font-size: 2.5rem;
    color: var(--movve-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-title span {
    color: var(--movve-green);
}

.cta-desc {
    color: var(--text-dark);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* CONTENEDOR DE DESCARGA TRONLINK */
.wallet-download {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-wallet {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    background: var(--movve-sidebar);
    color: var(--movve-dark);
}

.btn-wallet i {
    font-size: 1.4rem;
}

.btn-wallet:hover {
    background: var(--movve-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* BOTÓN REGISTRO PRINCIPAL */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--movve-green);
    color: white;
    padding: 20px 50px;
    border-radius: var(--radius);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 230, 118, 0.25);
}

.btn-cta:hover {
    background-color: var(--movve-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .cta-card { padding: 40px 20px; }
    .cta-title { font-size: 1.8rem; }
    .wallet-download { flex-direction: column; }
    .btn-wallet, .btn-cta { width: 100%; justify-content: center; }
}

/* ================= FOOTER ESTILO NEÓN ORIGINAL ================= */
.footer-pro {
    background: #050505;
    padding: 80px 0 20px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    border-top: 1px solid rgba(0, 255, 136, 0.3);
}

/* El resplandor verde del fondo */
.footer-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* --- MARCA --- */
.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.footer-brand p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 25px;
}

.wallet-title {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: #00ff88;
    margin-bottom: 15px;
}

.footer-wallet {
    display: flex;
    gap: 10px;
}

.wallet-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.wallet-btn:hover {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

/* --- ENLACES --- */
.footer-links h4, .footer-social h4, .footer-newsletter h4 {
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 800;
}

.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00ff88;
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}

/* --- NEWSLETTER ESTILO MOVVE --- */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

#sib-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#sib-form input {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 12px;
    border-radius: 10px;
    color: white;
    outline: none;
}

#sib-form button {
    background: #00ff88;
    color: #000;
    font-weight: 800;
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    transition: 0.3s;
}

#sib-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.7);
}

/* --- REDES SOCIALES --- */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 20px;
    color: white;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.social-icons a:hover {
    background: #00ff88;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

/* --- BOTTOM --- */
.footer-bottom {
    margin-top: 50px;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

/* Botón Subir Neón */
#scrollTop {
    background: #00ff88;
    color: #000;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
    transition: 0.3s;
}

#scrollTop:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.8);
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* ================= WA FLOATING ULTRA PRO ================= */
.wa-floating-pro {
    position: fixed;
    bottom: 30px;
    left: 30px;
    text-decoration: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Capas de Ondas de Radar */
.wa-radar-waves {
    position: absolute;
    left: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-radar-waves span {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00ff88;
    border-radius: 50%;
    opacity: 0.6;
    animation: wa-pulse 2.5s infinite;
}

.wa-radar-waves span:nth-child(2) { animation-delay: 0.8s; }
.wa-radar-waves span:nth-child(3) { animation-delay: 1.6s; }

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(3.5); opacity: 0; }
}

/* Tarjeta Principal Glassmorphism */
.wa-inner-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 12px 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 
                inset 0 0 15px rgba(0, 255, 136, 0.05);
    position: relative;
    overflow: hidden;
}

/* Icono y Punto Online */
.wa-icon-box {
    position: relative;
    font-size: 28px;
    color: #00ff88;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.6));
}

.online-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: #00ff88;
    border: 2px solid #0a0a0a;
    border-radius: 50%;
    animation: blink 1s infinite;
}

/* Texto y Badge */
.wa-content-text {
    display: flex;
    flex-direction: column;
}

.wa-badge {
    font-size: 9px;
    font-weight: 900;
    color: #00ff88;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.wa-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.wa-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    transition: 0.3s;
}

/* Interacción Hover */
.wa-floating-pro:hover {
    transform: scale(1.05) translateX(10px);
}

.wa-floating-pro:hover .wa-inner-card {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.wa-floating-pro:hover .wa-arrow {
    color: #00ff88;
    transform: translateX(5px);
}

@keyframes blink { 50% { opacity: 0.3; } }
