:root {
    --p-blue: #0ea5e9;
    --p-indigo: #6366f1;
    --dark: #0f172a;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.7);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* --- HERO REFACTOR --- */
.app-hero-premium {
    padding: 120px 0;
    background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.05), transparent),
                radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.05), transparent);
}

.reveal-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--p-blue);
    margin-bottom: 25px;
}

.pulse-dot {
    width: 8px; height: 8px;
    background: var(--p-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(14, 165, 233, 0); }
    100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--dark);
}

.gradient-text-flow {
    background: linear-gradient(90deg, var(--p-blue), var(--p-indigo), var(--p-blue));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine { to { background-position: 200% center; } }

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin: 30px 0;
    max-width: 90%;
}

/* --- VISUAL STACK --- */
.main-screen-wrapper {
    position: relative;
    padding: 20px;
}

.screen-img {
    border-radius: 40px;
    border: 10px solid var(--dark);
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.2);
}

.glass-badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 12px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.badge-1 { top: 20%; left: -30px; animation: float 5s ease-in-out infinite; }
.badge-2 { bottom: 15%; right: -20px; animation: float 5s ease-in-out infinite reverse; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- CARDS ELITE --- */
.feature-card-elite {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 32px;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.feature-card-elite:hover {
    transform: translateY(-15px);
    border-color: var(--p-blue);
    box-shadow: 0 40px 80px -20px rgba(14, 165, 233, 0.15);
}

.card-icon-wrapper {
    width: 65px; height: 65px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.blue { background: #e0f2fe; color: #0ea5e9; }
.green { background: #dcfce7; color: #10b981; }
.purple { background: #f3e8ff; color: #8b5cf6; }

.btn-glass-primary {
    background: var(--dark);
    color: white;
    padding: 15px 35px;
    border-radius: 16px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-glass-primary:hover {
    background: var(--p-blue);
    transform: scale(1.05);
}


/* Responsive fixes */
@media (max-width: 991px) {
    .badge-1, .badge-2 { position: static; margin-top: 15px; }
    .main-screen-wrapper { margin-top: 40px; }
}


















/* Contenedor principal */
.cta-group {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

/* --- BOTÓN: EMPEZAR AHORA (Estilo Sifacon Cloud) --- */
.btn-glass-primary {
    /* Degradado idéntico a tu marca */
    background: linear-gradient(135deg, #827af3 0%, #b47af3 50%, #f3a67a 100%);
    color: white;
    padding: 16px 35px;
    border-radius: 18px; /* Bordes más suaves y modernos */
    border: none;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(130, 122, 243, 0.3);
}

/* Efecto de brillo al pasar el mouse */
.btn-glass-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(243, 166, 122, 0.4);
    filter: brightness(1.1);
}

/* --- BOTÓN: VER VIDEO (Estilo Vidrio Transparente) --- */
.btn-outline-minimal {
    background: rgba(147, 9, 9, 0.05); /* Fondo ultra suave */
    /*backdrop-filter: blur(15px); /* Efecto de desenfoque de vidrio */
    /*-webkit-backdrop-filter: blur(15px);*/
    color: rgb(12, 63, 216);
    padding: 14px 30px;
    border-radius: 18px;
    border: 1px solid rgba(238, 36, 36, 0.2);
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

/* Añadir el círculo del icono de PLAY por CSS */
.btn-outline-minimal::before {
    content: '';
    width: 38px;
    height: 38px;
    background: rgb(252, 144, 144);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Dibujamos el triangulito de Play */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a2a44'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 55% center;
    background-size: 20px;
    transition: 0.3s;
}

.btn-outline-minimal:hover {
    background: rgba(84, 156, 157, 0.759); 
    /* background: linear-gradient(135deg, #1b0bf7 0%, #f04d08 50%, #f95e04 100%); */
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    color: white;
}

.btn-outline-minimal:hover::before {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(158, 127, 234, 0.455);
}

/* Ajuste para móviles */
@media (max-width: 600px) {
    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }
}









