/* =========================
   RESET & BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    min-height: 100vh;
    background-color: hsl(var(--color-background));
    color: #fff;
}

/* =========================
   CENTER LAYOUT
========================= */
.center {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   GLASS CARD
========================= */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 25px 50px rgba(0,0,0,.6);
    padding: 35px;
    width: 360px;
    outline: 1px dashed rgb(115 115 115 / 30%);
    outline-offset: 4px;
}

/* =========================
   Success 
========================= */
.success-container {
    text-align: center;
    max-width: 500px;
    width: 100%;
    padding: 60px 40px;
}

.success-icon {
    font-size: 5rem;
    color: #00ff9d;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.btn-home {
    display: inline-block;
    padding: 16px 40px;
    background: #efb810;
    color: black;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #efb810;
    transform: translateY(-3px);
}

.extra-info {
    margin-top: 40px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}


@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
/*  background: #0000008c;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 12px;
    outline: 1px dashed rgb(115 115 115 / 30%);
    outline-offset: 4px;
    padding: 28px 28px 24px;
    transition: border-color .28s, transform .22s, box-shadow .28s, outline-color .28s;

/* =========================
   TITLES
========================= */
h2 {
    text-align: center;
    margin-bottom: 18px;
    font-weight: 600;
}

/* =========================
   FORMS
========================= */
form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =========================
   INPUTS
========================= */
input {
    width: 100%;
    padding: 14px 16px;
    margin: 12px 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* =========================
   BUTTONS
========================= */
button {
    margin-top: 8px;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #efb810;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s ease;
}

button:hover {
    transform: translateY(-2px);
}

/* =========================
   LINKS
========================= */
p {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

a {
    color: #efb810;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* =========================
   ALERTS
========================= */
.error {
    background: rgba(255, 0, 0, 0.15);
    color: #ffb3b3;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 14px;
}

.success {
    background: rgba(0, 255, 0, 0.15);
    color: #b6ffb6;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 14px;
}

/* ===============================
   APP LAYOUT
================================ */
.app {
    display: flex;
    height: 100vh;
}

/* ===============================
   SIDEBAR
================================ */
.sidebar {
    width: 260px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
    border-right: 1px solid rgba(255,255,255,0.08);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
}

/* Scrollbar ancho */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

/* Fondo del scroll */
.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

/* Barra del scroll */
.sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #efb810, #c99500);
    border-radius: 10px;
}

/* Hover */
.sidebar::-webkit-scrollbar-thumb:hover {
    background: #efb810;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #efb810;
}

/* PROFILE */
.profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #efb810;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* MENU */

/* LOGOUT */
.logout {
    margin-top: auto;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.logout:hover {
    background: rgba(255,0,0,0.15);
    color: #ff6b6b;
}

/* ===============================
   MAIN
================================ */
.main {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.topbar {
    margin-bottom: 30px;
}

.topbar h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

/* ===============================
   STATS
================================ */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.stat {
    padding: 22px;
    border-radius: 16px;
}

.stat span {
    display: block;
    font-size: 0.9rem;
    opacity: .7;
    margin-bottom: 6px;
}

.stat strong {
    font-size: 1.4rem;
}

/* ===============================
   TABLE
================================ */
.table {
    padding: 22px;
}

.table h2 {
    margin-bottom: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    font-size: 14px;
}

thead {
    background: rgba(255,255,255,0.05);
}

tbody tr:hover {
    background: rgba(255,255,255,0.04);
}

button.secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

button.secondary:hover {
    background: rgba(255,255,255,0.25);
}

/* Info Section */
.info-section {
    padding: 0 20px;
}

/* Header */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-void: #000000;
    --bg-glass: rgba(255, 255, 255, 0.06);
    --bg-glass-hover: rgba(255, 255, 255, 0.06);
    --border-glass: rgba(255, 255, 255, 0.08);
    --primary: #efb810;
    --cyan: #efb810;
    --purple: #efb810;
    --text-main: #ffffff;
    --text-muted: #8890A0;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --container-width: 1240px;
    --header-height: 80px;
    --glow-spread: 120px;
    --color-background: 240 3% 6%;
    --color-background-secondary: 240 2% 8%;

}

/* Background Effects */
.ambient-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.light-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary), transparent 70%);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--purple), transparent 70%);
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 40%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, var(--cyan), transparent 70%);
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #efb810 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-primary {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-informacion {
    background: linear-gradient(135deg, #fff 0%, #ef1010 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-informacion-riesgos {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.2rem;
}

.informacion-riesgo span {
    position: relative;
    font-size: 1.9rem;
    margin-bottom: 15px;
    display: block;
}

.riesgo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.riesgo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.06),
            transparent 40%);
    border-radius: 20px;
    pointer-events: none;
}

.risk-note {
    font-weight: 900;            /* negrita elegante */
    font-size: 0.9rem;
    line-height: 1.6;
    background: linear-gradient(135deg, #fff 0%, #ef1010 100%);
    background-clip: text;
    display: block;
    -webkit-text-fill-color: transparent;
}

.terminos-note {
    font-weight: 900;            /* negrita elegante */
    font-size: 0.9rem;
    line-height: 1.6;
    background: linear-gradient(135deg, #efb810 0%, #efb810 100%);
    background-clip: text;
    display: block;
    -webkit-text-fill-color: transparent;
}

.ninjatraders-note {
    background: linear-gradient(135deg, #ed4407 0%, #ed4407 100%);
    background-clip: text;
    display: block;
    -webkit-text-fill-color: transparent;
}

/* Dashboard */
.dashboard {
    display: flex;
    min-height: 100vh;
}

/* Perfil */
.profile-form {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

/* Modulos */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.module-card {
    background: var(--glass);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.module-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.module-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.module-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.btn-access {
    display: inline-block;
    background: var(--primary);
    color: black;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-access:hover {
    background: #b5a800;
    transform: scale(1.05);
}

.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
}

.coming-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--warning);
    color: black;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

/* Dispositivos */
.devices-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.device-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.device-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.device-icon {
    font-size: 3rem;
    color: var(--primary);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(216,202,0,0.15);
    border-radius: 50%;
}

.device-info {
    flex: 1;
}

.device-info h3 {
    margin: 12px 0 12px;
    font-size: 1.3rem;
}

.device-info p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.95rem;
}

.status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 10px;
}

.status.active {
    background: rgba(0,255,157,0.15);
    color: #00ff9d;
}

.status.inactive {
    background: rgba(255,77,77,0.15);
    color: #ff4d4d;
}

.btn-logout {
    background: rgba(255,77,77,0.2);
    color: #ff4d4d;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-logout:hover {
    background: rgba(255,77,77,0.4);
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.glassv2 {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    text-align: center;
    outline: 1px dashed rgb(115 115 115 / 30%);
    outline-offset: 4px;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    margin-top: 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.google-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.google-logo {
    width: 36px;
    height: 38px;
    object-fit: contain;
}

.remember-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    font-size: 0.95rem;
}

.remember-box input {
    width: 18px;
    height: 18px;
}

.links {
    margin-top: 32px;
    font-size: 0.95rem;
}

.links a {
    color: #efb810;
    text-decoration: none;
    font-weight: 600;
}

.links a:hover {
    text-decoration: underline;
}

/* Glass Components */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    position: relative;
    outline: 1px dashed rgb(115 115 115 / 30%);
    outline-offset: 4px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.06),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    outline: 1px dashed rgb(115 115 115 / 30%);
    outline-offset: 4px;
    pointer-events: none;
    z-index: 1;
}

.glass-panel:hover::before {
    opacity: 1;
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Header */
header {
    position: relative;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: var(--container-width);
    z-index: 1000;
}

.nav-glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    width: 100%;
    height: 70px;          /* altura fija */
    top: 0%;
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    padding: 0px 32px;
    outline: 1px dashed rgb(115 115 115 / 30%);
    outline-offset: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.monitor-image {
    position: fixed;
    height: 85%;
    width: 79%;
    left: 4vh;
    border-radius: 20px;
}

.logo {
    position: relative;
    top: 1.5vh;
    right: 1vh;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 35px;                  /* tamaño base */
    width: 60px;
    transform: scale(1.5);         /* agranda visual */
    transform-origin: left center;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));
    pointer-events: none;
}

@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.hero-actions {
    display: flex;
    gap: 15px; /* espacio entre botones */
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary), var(--purple));
    color: #000000;
    padding: 10px 24px;
    border-radius: 100px;
    gap: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

/* Hero */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-glass);
}

.stat-item h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.stat-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    height: 600px;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monitor-stack {
    position: relative;
    width: 380px;
    height: 420px;
    transform-style: preserve-3d;
    animation: float-3d 10s ease-in-out infinite;
}

.monitor-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0e0e0e7b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    z-index: 10;
    transform: translateZ(40px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    outline: 1px dashed rgb(115 115 115 / 30%);
    outline-offset: 4px;
    flex-direction: column;
}

.monitor-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
}

.server-name {
    font-family: monospace;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.usage-group {
    margin-bottom: 30px;
}

.usage-label {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--cyan);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--cyan);
}

.monitor-graph {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 60px;
    gap: 8px;
}

.graph-bar {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px 4px 0 0;
    transition: height 0.3s;
}

.graph-bar:hover {
    background: var(--primary);
}

/* Background Layers */
.monitor-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 24px;
    pointer-events: none;
}

.layer-1 {
    transform: translateZ(0px) translateX(20px) translateY(20px);
    z-index: 5;
}

.layer-2 {
    transform: translateZ(-40px) translateX(40px) translateY(40px);
    z-index: 1;
    opacity: 0.6;
}

@keyframes float-3d {

    0%,
    100% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(-20px);
    }
}

/* Features */
#features {
    padding: 60px 0;
}

#features1 {
    padding: 60px 0;
}

#features2 {
    padding: 0px 0;
}

#features3 {
    padding: 60px 0;
}

#features4 {
    padding: 10px 0;
}

#features5 {
    padding: 0 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    color: var(--cyan);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    color: var(--cyan);
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.whatsapp-chat-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float-btn {
    width: 70px;
    height: 70px;
    background: rgb(0, 255, 21);
    color: black;
    border: none;
    border-radius: 50%;
    font-size: 2.5rem;
    outline: 1px dashed rgb(115 115 115 / 30%);
    outline-offset: 4px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.chat-bubble {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 320px;
    background: #000000;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.chat-bubble.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: var(--bg-glass);
    color: white;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0.8;
}

.close-btn:hover {
    opacity: 1;
}

.chat-body {
    padding: 20px;
    background: rgb(255 255 255 / 18%);
}

.message {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 0.95rem;
    line-height: 1.5;
}

.message.received {
    background: var(--bg-glass);
    color: white;
    align-self: flex-start;
}

.open-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: var(--bg-glass);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.open-chat-btn:hover {
    background: #ffffff;
}

.star-rating {
    color: #ffd700;
    margin: 8px 0;
}

.password-toggle {
    position: absolute;
    right: 50px;
    background: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    cursor: pointer;
}

.partner-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.partner-card {
    background: var(--bg-glass);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    outline: 1px dashed rgb(115 115 115 / 30%);
    outline-offset: 4px;
}

.partner-photo {
    height: 26vh;
    margin: 0 auto 15px auto;  /* Centrado y separación */
    border-radius: 20px;   /* Circular */
    overflow: hidden;
}

.partner-photo img {
    height: 26vh;
    object-fit: cover;    /* Ajusta la foto al contenedor */
}

.watermark-photo {
    /* height: 26vh; */
    margin: 0 auto 15px auto;
    /* border-radius: 20px; */
    overflow: hidden;
}

.informacion-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    outline: 1px dashed rgb(115 115 115 / 30%);
    outline-offset: 4px;
}

.informacion-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.informacion2-card {
    padding: 40px;
    display: flex;
    outline: 1px dashed rgb(115 115 115 / 30%);
    outline-offset: 4px;
    flex-direction: column;
    gap: 20px;
}

.informacion2-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.informacion3-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    outline: 1px dashed rgb(115 115 115 / 30%);
    outline-offset: 4px;
}

.informacion3-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.informacion4-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    outline: 1px dashed rgb(115 115 115 / 30%);
    outline-offset: 4px;
}

.informacion4-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


.riesgo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.riesgo-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    outline: 1px dashed rgb(115 115 115 / 30%);
    outline-offset: 4px;
}

.riesgo-photo {
    height: 26vh;
    margin: 0 auto 15px auto;  /* Centrado y separación */
    border-radius: 20px;   /* Circular */
    overflow: hidden;
}

.riesgo-photo img {
    height: 26vh;
    object-fit: cover;    /* Ajusta la foto al contenedor */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cyan);
    margin-bottom: 10px;
}

/* Pricing */
#pricing {
    padding: 120px 0;
}

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    padding: 40px;
    text-align: center;
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 20px 0;
    color: #fff;
}

.price-tag span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-glass);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li::before {
    content: 'âœ“';
    color: var(--cyan);
    font-weight: 800;
}

.btn-full {
    width: 100%;
    display: block;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.pricing-card.featured .btn-full {
    background: var(--primary);
}

.btn-full:hover {
    background: #fff;
    color: #000;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 40px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .features-grid,

    .pricing-card.featured {
        transform: none;
    }
}

.plan-card{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    
    opacity: 0;
    pointer-events: none;
    transform: scale(.97);
    transition: .3s;
}

.plan-card.active{
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.plan-btn {
    position: relative;
    padding:14px 20px;
    border-radius:10px;
    border:none;
    left: 17px;
    cursor:pointer;
    background:#efb810;
    color:black;
    margin:25px;
    font-weight:bold;
}

.ld-sv-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ld-sv-badge.is-online {
    background: #10b9811a;
    border: 1px solid rgba(16, 185, 129, .26);
    color: #10b981;
}

.plan-btn.active{
    background:radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),            rgba(255, 255, 255, 0.06),            transparent 40%);
    color: white;
    outline: 1px dashed rgb(115 115 115 / 30%);
    outline-offset: 4px;
}

/* Expanded Pricing */
.pricing-controls {
    flex: 1;
    padding: 30px;
    min-width: 220px;
}

.pricing-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 250px;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select__trigger {
    position: relative;
    right: 1.5vh;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.custom-select__trigger:hover {
    border-color: var(--primary);
}

.pricing-grid-expanded{
    position: relative;
    min-height: 145vh;
}

.pricing-card-compact {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card-compact.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 16px;
}

.plan-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.plan-specs {
    list-style: none;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.plan-specs li {
    margin-bottom: 6px;
}

.btn-glow-sm {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-glow-sm:hover {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    border-color: transparent;
}

.btn-link {
    color: var(--cyan);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.btn-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .pricing-grid-expanded {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .pricing-grid-expanded {
        grid-template-columns: 1fr;
    }
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grids */
.features-grid .feature-card:nth-child(2) {
    transition-delay: 0.1s;
}

.features-grid .feature-card:nth-child(3) {
    transition-delay: 0.2s;
}

.features-grid .riesgo-card:nth-child(2) {
    transition-delay: 0.1s;
}

.features-grid .riesgo-card:nth-child(3) {
    transition-delay: 0.2s;
}

.pricing-grid .pricing-card:nth-child(2) {
    transition-delay: 0.1s;
}

.pricing-grid .pricing-card:nth-child(3) {
    transition-delay: 0.2s;
}

.pricing-grid-expanded .pricing-card-compact:nth-child(odd) {
    transition-delay: 0.1s;
}

.pricing-grid-expanded .pricing-card-compact:nth-child(even) {
    transition-delay: 0.2s;
}

.feature-photo {
    width: 80px;          /* Tamaño de la foto */
    height: 80px;
    margin: 0 auto 15px auto;  /* Centrado y separación */
    border-radius: 50%;   /* Circular */
    overflow: hidden;
    border: 2px solid #efb810; /* Borde dorado */
}

.feature-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* Ajusta la foto al contenedor */
}

/* Info Section */
.informacion-photo {
    height: 26vh;
    margin: 0 auto 15px auto;  /* Centrado y separación */
    border-radius: 20px;   /* Circular */
    overflow: hidden;
}

.informacion-photo img {
    height: 26vh;
    object-fit: cover;    /* Ajusta la foto al contenedor */
}