@import url('https://fonts.googleapis.com/css2?family=Jost:wght@900&family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --bg-color: #1e1e1e;
    --card-bg: rgba(45, 45, 45, 0.85);
    --text-main: #e0e0e0;
    --neon-green: #39ff14;
    --neon-dim: #28b30e;
    --neon-glow: 0 0 10px rgba(57, 255, 20, 0.5), 0 0 20px rgba(57, 255, 20, 0.3);
    --header-bg: rgba(17, 17, 17, 0.95);
    --footer-bg: rgba(17, 17, 17, 0.9);
    --hero-gradient: radial-gradient(circle at center, rgba(45, 45, 45, 0.85) 0%, rgba(17, 17, 17, 0.85) 100%);
    --input-bg: #333;
    --border-color: #333;
    --nav-text-color: #e0e0e0;
    --footer-text-color: #e0e0e0;
}

body.light-mode {
    --bg-color: #b0b0b0;
    --card-bg: rgba(201, 201, 201, 0.85);
    --text-main: #1a1a1a;
    --neon-green: #2fad59;
    --neon-glow: 0 0 10px rgba(0, 95, 32, 0.3), 0 0 20px rgba(0, 95, 32, 0.1);
    --header-bg: rgba(30, 30, 30, 0.95);
    --footer-bg: rgba(30, 30, 30, 0.9);
    --nav-text-color: #e0e0e0;
    --footer-text-color: #e0e0e0;
    --hero-gradient: radial-gradient(circle at center, rgba(201, 201, 201, 0.85) 0%, rgba(153, 153, 153, 0.85) 100%);
    --input-bg: #dcdcdc;
    --border-color: #777;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('images/fondo1.jpeg');
    background-repeat: repeat;
    background-size: 300px;
    opacity: 0.08;
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, .logo {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 50px; background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000;
    width: 100%;
    transition: transform 0.4s ease-in-out;
}
header.header-hidden {
    transform: translateY(-100%);
}
.logo { font-size: 1.5rem; color: #fff; text-decoration: none; font-weight: 700; display: flex; align-items: center; }
.logo img { height: 1.5em; width: auto; margin-right: 10px; filter: brightness(1.5) drop-shadow(0 0 5px var(--neon-green)); }
.logo .logo-text { height: 2em; margin-right: 0; }

nav ul { display: flex; list-style: none; gap: 30px; align-items: center; }
nav a { 
    color: var(--nav-text-color); opacity: 0.7; text-decoration: none; font-weight: 500; transition: 0.3s; 
    font-size: 0.9rem; text-transform: uppercase; position: relative; 
}
nav a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -5px; left: 0; background-color: var(--neon-green);
    transition: width 0.3s ease; box-shadow: 0 0 5px var(--neon-green);
}
nav a:hover, nav a.active { 
    color: var(--neon-green); opacity: 1; text-shadow: 0 0 8px var(--neon-green); 
}
nav a:hover::after, nav a.active::after { width: 100%; }

.theme-btn {
    background: transparent; border: 1px solid var(--neon-green);
    color: var(--neon-green); padding: 8px 12px; border-radius: 50%;
    cursor: pointer; transition: 0.3s;
}
.theme-btn:hover {
    background: var(--neon-green); color: #fff;
    box-shadow: 0 0 10px var(--neon-green);
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 20px;
    color: var(--footer-text-color); opacity: 0.8;
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    margin-top: 50px;
}
.footer-container {
    max-width: 1200px; margin: 0 auto; display: flex;
    justify-content: center; text-align: center; margin-bottom: 40px;
}
.footer-section h3 { color: var(--footer-text-color); margin-bottom: 20px; font-size: 1.2rem; }
.social-icons { display: flex; gap: 15px; justify-content: center; }
.social-icons a {
    width: 40px; height: 40px; border: 1px solid var(--border-color); border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: var(--footer-text-color); text-decoration: none; transition: 0.3s;
}
.social-icons a:hover {
    border-color: var(--neon-green); color: var(--neon-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}
.whatsapp-contact { margin-top: 20px; }
.whatsapp-contact a {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--neon-green); text-decoration: none; font-weight: bold;
    font-size: 1rem; transition: 0.3s;
    border: 1px solid var(--neon-green); padding: 10px 15px; border-radius: 5px;
    background: rgba(57, 255, 20, 0.1);
}
.whatsapp-contact a:hover {
    background: var(--neon-green); color: #000;
    box-shadow: 0 0 15px var(--neon-green);
}
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--border-color); }

/* Hero */
.hero {
    height: 100vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    background: var(--hero-gradient);
    padding: 0 20px; position: relative; overflow: hidden; backdrop-filter: blur(10px);
}
.hero-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); z-index: 1;
}
.hero h1 { font-size: 4rem; margin-bottom: 20px; line-height: 1.1; color: #fff; position: relative; z-index: 2; }
.hero h1 span { color: var(--neon-green); text-shadow: var(--neon-glow); position: relative; z-index: 2; }
.hero p { font-size: 1.2rem; max-width: 700px; margin-bottom: 50px; color: #fff; opacity: 0.8; font-weight: 300; position: relative; z-index: 2; }
.btn {
    padding: 15px 50px; background: transparent; border: 2px solid var(--neon-green);
    color: var(--neon-green); font-family: 'Orbitron', sans-serif; font-weight: bold;
    cursor: pointer; transition: all 0.3s ease; text-decoration: none; border-radius: 5px; position: relative; z-index: 2;
}
.btn:hover { background: var(--neon-green); color: #000; box-shadow: 0 0 20px var(--neon-green); }

/* Sections */
.about { padding: 100px 50px; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { font-size: 2.5rem; color: var(--text-main); margin-bottom: 10px; }
.section-header .line {
    width: 100px; height: 3px; background: var(--neon-green);
    margin: 0 auto; box-shadow: 0 0 10px var(--neon-green);
}
.grid-container {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px; max-width: 1200px; margin: 0 auto;
}
.card {
    background: var(--card-bg); padding: 40px 30px; border-radius: 15px;
    border: 1px solid var(--border-color); transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px); position: relative; overflow: hidden;
}
.card:hover, 
.card.visible:hover,
.payment-card:hover, 
.payment-card.visible:hover,
.wallet-card:hover, 
.wallet-card.visible:hover {
    transform: translateY(-10px) scale(1.05); /* Efecto de Zoom acentuado y claro */
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.1);
    z-index: 10; /* Asegura que la tarjeta resalte sobre las demás al hacer zoom */
}
.card-img {
    width: calc(100% + 60px); margin: -40px -30px 20px -30px;
    aspect-ratio: 16 / 9; object-fit: cover; display: block;
    border-bottom: 1px solid var(--border-color);
}
.card h3 { color: var(--text-main); margin-bottom: 15px; font-size: 1.4rem; }
.card h3 span { color: var(--neon-green); }
.card p { line-height: 1.6; color: var(--text-main); opacity: 0.7; font-size: 0.95rem; }

/* Support & Contact Specifics */
.hero-page {
    text-align: center; padding: 80px 20px;
    background: var(--hero-gradient); backdrop-filter: blur(10px);
}
.hero-page h1 { font-size: 3rem; margin-bottom: 20px; color: var(--text-main); }
.hero-page span { color: var(--neon-green); }
.hero-page p { font-size: 1.2rem; color: var(--text-main); opacity: 0.7; max-width: 600px; margin: 0 auto; }

.section-container { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 60px; position: relative; }
.section-title::after {
    content: ''; display: block; width: 60px; height: 3px;
    background: var(--neon-green); margin: 15px auto 0;
    box-shadow: 0 0 10px var(--neon-green);
}

.process-steps { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 40px; text-align: center; }
.step { position: relative; max-width: 200px; }
.step-num {
    font-family: 'Orbitron'; font-size: 4rem; color: rgba(57, 255, 20, 0.1);
    position: absolute; top: -30px; left: 50%; transform: translateX(-50%); z-index: 0;
}
.step-content { position: relative; z-index: 1; }
.step h3 { color: var(--neon-green); margin-bottom: 10px; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
.gallery-item {
    aspect-ratio: 16 / 9; overflow: hidden; border-radius: 5px;
    border: 1px solid var(--border-color); cursor: pointer; position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); display: flex; justify-content: center; align-items: center;
    opacity: 0; transition: 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.zoom-icon { color: var(--neon-green); font-size: 2rem; font-weight: bold; }

.contact-wrapper {
    display: flex; justify-content: center;
    max-width: 1200px; margin: 0 auto; padding: 40px 20px;
}
.contact-info, .contact-form-container {
    background: var(--card-bg); padding: 40px; border-radius: 10px;
    border: 1px solid var(--border-color); backdrop-filter: blur(10px);
    width: 100%; max-width: 600px;
}
.info-item { margin-bottom: 30px; }
.info-item h3 { color: var(--neon-green); margin-bottom: 10px; font-size: 1.2rem; }
.info-item p { color: var(--text-main); opacity: 0.7; line-height: 1.6; }

.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; color: var(--text-main); margin-bottom: 8px; opacity: 0.8; font-size: 0.9rem; }
.form-group input, .form-group textarea { 
    width: 100%; padding: 10px; background: var(--input-bg); 
    border: 1px solid var(--border-color); color: var(--text-main); border-radius: 5px;
    font-family: 'Roboto', sans-serif;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--neon-green); outline: none; box-shadow: 0 0 5px rgba(57, 255, 20, 0.2); }

.fade-up { opacity: 0; transform: translateY(50px); transition: all 0.8s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Restaurar la velocidad rápida (0.3s) del hover para igualar a "Quiénes Somos" */
.card.fade-up.visible,
.payment-card.fade-up.visible,
.wallet-card.fade-up.visible {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.8s ease-out;
}

/* Modal */
.modal {
    display: none; position: fixed; z-index: 2000; left: 0; top: 0;
    width: 100%; height: 100%; background-color: rgba(0,0,0,0.95);
    justify-content: center; align-items: center; padding: 20px;
}
.modal-content {
    max-width: 90%; max-height: 90%; border: 2px solid var(--neon-green);
    box-shadow: 0 0 30px var(--neon-green); border-radius: 5px;
    backdrop-filter: blur(10px); object-fit: contain;
}
.close-modal {
    position: absolute; top: 30px; right: 50px; color: #fff;
    font-size: 50px; cursor: pointer; transition: 0.3s;
}
.close-modal:hover { color: var(--neon-green); }

@media (max-width: 768px) {
    header { flex-direction: column; padding: 15px; }
    nav ul { flex-wrap: wrap; justify-content: center; margin-top: 15px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-page h1 { font-size: 2rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .theme-btn { position: absolute; top: 15px; right: 20px; }
}

/* Pagos */
.payment-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; margin-top: 30px;
}

/* Cuadrícula específica de 3 columnas para cuentas personales */
.payment-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
    .payment-grid.grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .payment-grid.grid-3 { grid-template-columns: 1fr; }
}

/* Estilos de Tarjeta de Pago Nuevos */
.payment-card {
    background: rgba(45, 45, 45, 0.85);
    border-radius: 6px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    position: relative; /* Asegura el z-index al hacer zoom */
    display: flex;
    flex-direction: column;
}

.card-header {
    position: relative; /* Para anclar la línea vertical aquí */
    padding: 15px;
    background: rgba(255, 255, 255, 0.08); /* Fondo más claro para destacar el título */
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff; /* Título mucho más claro */
    font-weight: bold;
    font-size: 15px; /* Más grande para que destaque del contenido */
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}
.payment-card .card-header::before {
    content: "";
    width: 4px;
    height: 100%; /* Cubre exactamente la altura del título */
    position: absolute;
    top: 0;
    left: 0;
}

/* Colores por banco anclados al nuevo diseño del título */
 .payment-card.interbank .card-header::before { background: #00ff88; }
.payment-card.interbank .card-header::before { background: #0055ff; }
.payment-card.bcp .card-header::before { background: #00aaff; }
.payment-card.bbva .card-header::before { background: #00aaff; }
.payment-card.nacion .card-header::before { background: #ff0000; } /* Rojo del Banco de la Nación */
.payment-card.scotiabank .card-header::before { background: #ff3b3b; }
.payment-card.caja-huancayo .card-header::before { background: #ff3b3b; }

.card-header i {
    color: var(--text-main); /* Ícono de banco genérico */
    opacity: 0.8;
    font-size: 16px;
}
.card-body {
    padding: 15px;
    font-size: 13px;
    color: var(--text-main);
    opacity: 0.8;
    flex-grow: 1; /* Para que el cuerpo ocupe el espacio restante */
    background: rgba(0, 0, 0, 0.25); /* Fondo oscuro que llena hasta abajo */
}

/* Ajuste sutil por si el usuario cambia a Modo Claro */
body.light-mode .card-header { background: rgba(0, 0, 0, 0.05); color: #111; }
body.light-mode .card-body { background: rgba(0, 0, 0, 0.05); }

.subtitulo {
    text-align: center;
    font-size: 14px;
    color: var(--text-main);
    opacity: 0.8;
    margin-bottom: 30px;
}
.payment-card .number, .wallet-card .number {
    color: var(--neon-green);
    font-weight: bold;
    display: block;
    margin: 5px 0 10px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 1.2rem !important;
    letter-spacing: 1px;
    opacity: 1 !important;
}
.payment-card .number:hover, .wallet-card .number:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--neon-green);
}

/* Estilos de Billeteras (se mantienen) */
.wallets-grid { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-top: 30px; margin-bottom: 50px; }
.wallet-card {
    background: rgba(0, 0, 0, 0.25); padding: 20px; border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px); width: 280px;
    position: relative; /* Asegura el z-index al hacer zoom */
}
.wallet-title {
    font-family: 'Orbitron', sans-serif; font-size: 1.5rem;
    margin-bottom: 20px; font-weight: bold;
}
body:not(.light-mode) .wallet-title.yape { color: #a020f0; text-shadow: 0 0 10px rgba(160, 32, 240, 0.5); }
body.light-mode .wallet-title.yape { color: #742384; }
body:not(.light-mode) .wallet-title.plin { color: #00ffff; text-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
body.light-mode .wallet-title.plin { color: #008eb3; }
.qr {
    width: 170px; height: 170px; background: rgba(0, 0, 0, 0.5); /* Fondo oscuro para resaltar el brillo */
    color: #fff; border: 2px solid var(--border-color); margin: 0 auto 20px;
    border-radius: 15px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.qr::after {
    content: 'QR AQUÍ'; color: rgba(255, 255, 255, 0.4); opacity: 1;
    font-weight: bold; font-size: 1rem; letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
}

/* Bordes de Neón y Pulso para Yape */
.qr-yape {
    border: 3px solid #a020f0;
    box-shadow: 0 0 15px rgba(160, 32, 240, 0.4), inset 0 0 15px rgba(160, 32, 240, 0.4);
    animation: pulse-yape 2s infinite alternate;
}
@keyframes pulse-yape {
    0% { box-shadow: 0 0 10px rgba(160, 32, 240, 0.3), inset 0 0 10px rgba(160, 32, 240, 0.3); border-color: rgba(160, 32, 240, 0.6); }
    100% { box-shadow: 0 0 25px rgba(160, 32, 240, 0.8), inset 0 0 25px rgba(160, 32, 240, 0.8); border-color: #a020f0; }
}

/* Bordes de Neón y Pulso para Plin */
.qr-plin {
    border: 3px solid #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4), inset 0 0 15px rgba(0, 255, 255, 0.4);
    animation: pulse-plin 2s infinite alternate;
}
@keyframes pulse-plin {
    0% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.3); border-color: rgba(0, 255, 255, 0.6); }
    100% { box-shadow: 0 0 25px rgba(0, 255, 255, 0.8), inset 0 0 25px rgba(0, 255, 255, 0.8); border-color: #00ffff; }
}
.wallet-card .owner { font-size: 0.9rem; color: var(--text-main); opacity: 0.7; }
.info-box {
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid var(--neon-green);
    padding: 15px 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 1000px; /* Ampliado para que quepa en una sola línea */
    width: fit-content; /* Se ajusta exactamente al tamaño del texto */
    margin: 60px auto 0;
}
.info-box p { color: var(--text-main); line-height: 1.5; font-size: 1.1rem; margin: 0; }
.info-box strong { color: var(--neon-green); }

/* Accordion Styles (Sistemas) */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s;
}
.accordion-item:hover {
    border-color: var(--neon-green);
}

.accordion-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 20px;
    text-align: left;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}
.accordion-header:hover { background: rgba(255, 255, 255, 0.1); }
.accordion-header.active { color: var(--neon-green); }
.accordion-icon { transition: transform 0.4s ease; }
.accordion-header.active .accordion-icon { transform: rotate(180deg); }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0, 0, 0, 0.2);
}
.accordion-content-inner { padding: 20px; }
.accordion-content-inner p { line-height: 1.7; opacity: 0.8; margin: 0; }

.accordion-content-inner ul {
    list-style: none;
    padding-left: 5px;
}

.accordion-content-inner li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
    opacity: 0.8;
}

.accordion-content-inner li::before {
    content: '\f058'; /* check-circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--neon-green);
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 14px;
}

/* ==============================================================
   NUEVOS ESTILOS: TARJETAS DE CRÉDITO 3D (INTERBANK)
   ============================================================== */
.card-3d-wrapper {
    perspective: 1000px;
    width: 100%;
    max-width: 320px;
    margin: 5px auto;
}

.credit-card {
    width: 100%;
    aspect-ratio: 1.58 / 1;
    background: linear-gradient(135deg, #00A34D 0%, #003619 100%);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    /* Sombra profunda y borde sutil que simula el acabado en plástico negro mate */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid #111;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
}

/* Textura plástica y luz de estudio (Glassmorphism sutil) */
.credit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Brillo que recorre la tarjeta al hacer hover */
.card-shine {
    position: absolute;
    top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: left 0.7s ease;
    z-index: 2;
    pointer-events: none;
}

/* Hover general 3D (Efecto Tilt) */
.card-3d-wrapper:hover .credit-card {
    transform: rotateX(15deg) rotateY(-10deg) scale(1.05);
    box-shadow: 20px 25px 40px rgba(0, 163, 77, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.card-3d-wrapper:hover .card-shine {
    left: 200%;
}

/* Elementos internos de la tarjeta */
.card-top {
    display: flex; justify-content: space-between; align-items: center; z-index: 3;
}
.bank-brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: clamp(0.9rem, 4vw, 1.1rem); letter-spacing: 1px;
    text-transform: uppercase; color: #fff;
}
.card-middle {
    display: flex; align-items: center; gap: 15px; z-index: 3; margin-top: -5px;
}

/* Chip dorado realista */
.chip {
    width: 44px; height: 32px;
    background: linear-gradient(135deg, #f0c978 0%, #d4af37 100%);
    border-radius: 6px; border: 1px solid rgba(0, 0, 0, 0.4);
    position: relative; overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5);
}
.chip::after {
    content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px;
    background: rgba(0,0,0,0.15); box-shadow: 0 -8px 0 rgba(0,0,0,0.15), 0 8px 0 rgba(0,0,0,0.15);
}
.chip::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
    background: rgba(0,0,0,0.15); box-shadow: -12px 0 0 rgba(0,0,0,0.15), 12px 0 0 rgba(0,0,0,0.15);
}

.contactless { font-size: clamp(1rem, 4vw, 1.2rem); color: rgba(255, 255, 255, 0.7); }

.card-bottom {
    display: flex; justify-content: space-between; align-items: flex-end; z-index: 3;
}
.card-holder { display: flex; flex-direction: column; }
.card-holder .label { font-size: 0.55rem; opacity: 0.7; letter-spacing: 1px; margin-bottom: 2px; }
.card-holder .name { font-size: clamp(0.75rem, 4vw, 0.95rem); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.card-logo { font-size: clamp(1.3rem, 6vw, 1.8rem); font-weight: 900; font-style: italic; letter-spacing: -1px; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }

/* ==============================================================
   TARJETAS DE CRÉDITO 3D - INTERBANK PREMIUM
   ============================================================== */
.credit-card.card-interbank {
    background-color: #006b3f; /* Verde oscuro exacto de la tarjeta de la foto */
    box-shadow: 0 15px 35px rgba(0, 107, 63, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-3d-wrapper:hover .credit-card.card-interbank {
    box-shadow: 20px 25px 40px rgba(0, 107, 63, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.interbank-frame-logo {
    width: 40px; 
    height: 40px;
    background-color: transparent; /* Centro hueco que dejará ver el fondo verde */
    border: 10px solid #0047ab; /* Marco azul cobalto sólido, mucho más grueso */
    /* Bordes asimétricos ajustados al nuevo grosor */
    border-radius: 3px 10px 10px 10px; 
    /* Forma "Square-Diamond": Distorsión y perspectiva inclinada hacia arriba a la derecha */
    transform: skew(-12deg, -4deg) rotate(-3deg);
    box-sizing: border-box;
    flex-shrink: 0;
    box-shadow: none; /* Flat design puro, sin sombras */
    margin-right: 4px; /* Compensa la inclinación para no chocar con el texto */
}

.bank-name-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* Variantes Banco de la Nación */
.credit-card.card-bn {
    background: linear-gradient(135deg, #e31d38 0%, #b31227 100%);
    border-left: 4px solid #ffffff;
    /* Mantenemos el borde oscuro en los otros lados para la textura plástica */
    border-top: 1px solid #111; border-right: 1px solid #111; border-bottom: 1px solid #111;
    box-shadow: 0 15px 35px rgba(216, 23, 48, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.card-3d-wrapper:hover .credit-card.card-bn {
    /* Sombra rojiza brillante al inclinar */
    box-shadow: 20px 25px 40px rgba(216, 23, 48, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.chip.chip-silver {
    background: linear-gradient(135deg, #cfd8dc 0%, #90a4ae 100%);
    border: 1px solid rgba(0, 0, 0, 0.3);
}

/* ==============================================================
   TARJETAS DE CRÉDITO 3D - BCP CREDIMÁS
   ============================================================== */
.credit-card.card-bcp {
    background-color: #005792; /* Azul BCP solicitado */
    background: #005792; /* ¡CORRECCIÓN! Fuerza el azul sólido sobre el gradiente verde base */
    border: none;
    box-shadow: 0 15px 35px rgba(0, 87, 146, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.card-3d-wrapper:hover .credit-card.card-bcp {
    box-shadow: 20px 25px 40px rgba(255, 120, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

/* Fondo Dinámico: La Ola Naranja (Curva Amplia y Realista) */
.bcp-wave {
    position: absolute;
    width: 144%;
    height: 130%;
    left: -49%;
    top: -25%;
    background-color: transparent;
    border-radius: 50%;
    /* EL SECRETO: Una sombra masiva dibuja el área naranja EXACTAMENTE por fuera de la curva */
    box-shadow: 0 0 0 500px #ff7800; 
    z-index: 1;
    pointer-events: none;
    clip-path: none;
    border: none;
    transform: none;
}

/* Patrón de puntos (Dots) que se desvanecen */
.bcp-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.25) 2px, transparent 2px);
    background-size: 16px 16px;
    background-position: 0 0;
    /* Máscara para que los puntos desaparezcan hacia arriba */
    mask-image: linear-gradient(to top, black, transparent);
    -webkit-mask-image: linear-gradient(to top, black, transparent);
    z-index: 0;
    pointer-events: none;
}

.bcp-top { align-items: flex-start; z-index: 3; }
.bcp-brand-group { display: flex; flex-direction: column; align-items: flex-start; }

/* Logotipo BCP CSS Puro */
.bcp-logo-css { display: flex; align-items: center; gap: 6px; position: relative; }
.bcp-text { color: #ffffff; font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: 900; font-size: 1.6rem; letter-spacing: -0.5px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.bcp-logo-css::before, .bcp-logo-css::after {
    content: ''; display: inline-block; width: 8px; height: 8px; background-color: #ff7800;
    transform: rotate(45deg); box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.bcp-credimas-text { color: #ffffff; font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.5px; line-height: 1; margin-top: 4px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.bcp-compras-text { font-size: 0.7rem; font-weight: 400; letter-spacing: 1px; }

/* Reestructuración interna (Chip y Número) */
.bcp-middle { flex-direction: column; align-items: flex-start; gap: 15px; margin-top: 10px; z-index: 3; }
.bcp-chip-row { display: flex; gap: 15px; align-items: center; }

/* Chip EMV CSS Puro (con divisiones) */
.bcp-chip-emv {
    width: 45px; height: 35px; border-radius: 5px;
    background: 
        linear-gradient(to right, transparent 30%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.3) 31%, transparent 31%, transparent 69%, rgba(0,0,0,0.3) 69%, rgba(0,0,0,0.3) 70%, transparent 70%),
        linear-gradient(to bottom, transparent 49%, rgba(0,0,0,0.3) 49%, rgba(0,0,0,0.3) 51%, transparent 51%),
        linear-gradient(135deg, #dfdfdf 0%, #999999 100%);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.8), 0 2px 4px rgba(0,0,0,0.3);
    border: 1px solid rgba(0,0,0,0.2);
}

/* Parte Inferior y Logo VISA CSS */
.bcp-bottom { align-items: flex-end; z-index: 3; justify-content: space-between; }
.bcp-name { font-family: 'Courier New', Courier, monospace; color: #111; font-weight: 900; text-shadow: 1px 1px 0px rgba(255,255,255,0.4); font-size: clamp(0.9rem, 4vw, 1.1rem); }

.bcp-visa-group { display: flex; flex-direction: column; align-items: flex-end; }
.bcp-visa-logo {
    background-color: #ffffff;
    color: #1a1f71; /* Azul VISA oficial */
    font-family: 'Arial', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.3rem;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: -0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.visa-v {
    display: inline-block;
    transform: skewX(-12deg);
    margin-right: 1px;
}
.bcp-debito-text { color: #fff; font-size: 0.65rem; font-weight: bold; margin-top: 3px; letter-spacing: 1px; }

/* Variantes BBVA */
.credit-card.card-bbva {
    background: linear-gradient(135deg, #004481 0%, #002d56 100%); /* Azul BBVA profundo y mate */
    border-radius: 12px; /* Bordes ligeramente más rectos */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Efecto vidrio esmerilado en el borde */
    box-shadow: 0 15px 35px rgba(0, 68, 129, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.card-3d-wrapper:hover .credit-card.card-bbva {
    /* Sombra azul BBVA al inclinar */
    box-shadow: 20px 25px 40px rgba(0, 68, 129, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.bbva-logo {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
    color: #ffffff;
    font-size: 1.6rem;
}

.chip.chip-bbva {
    background: linear-gradient(145deg, #d1d1d1 0%, #f0f0f0 100%);
    border: 1px solid #a0a0a0;
}

/* Variantes Scotiabank */
.credit-card.card-scotia {
    background: linear-gradient(135deg, #ee1c25 0%, #b8141c 100%); /* Rojo Scotiabank vibrante */
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(238, 28, 37, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.card-3d-wrapper:hover .credit-card.card-scotia {
    /* Sombra roja intensa al inclinar */
    box-shadow: 20px 25px 40px rgba(238, 28, 37, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.scotia-text {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: bold;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    color: #ffffff;
}

/* Brillo circular específico para Scotiabank */
.scotia-shine {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
    opacity: 0;
    transform: scale(0.8) translate(-10%, -10%);
    transition: opacity 0.6s ease, transform 0.8s ease;
    z-index: 2;
    pointer-events: none;
}

.card-3d-wrapper:hover .card-scotia .scotia-shine {
    opacity: 1;
    transform: scale(1.2) translate(10%, 10%);
}

/* Variantes Caja Huancayo */
.credit-card.card-huancayo {
    background: radial-gradient(circle at center, #ff3d3d 0%, #b30000 100%);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(179, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.card-3d-wrapper:hover .credit-card.card-huancayo {
    box-shadow: 20px 25px 40px rgba(179, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Efecto del Mapa del Perú de fondo */
.peru-map {
    position: absolute;
    right: -14%;
    top: -34%;
    width: 75%;
    height: 155%;
    background-image: url('images/mapa.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 1;
    z-index: 1; /* Detrás de Cajito y del texto */
    pointer-events: none;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2)); /* Sutil brillo blanco para que resalte más */
}

/* Contenedor central para el personaje "Cajito" */
.cajito {
    position: absolute;
    bottom: -8%;
    left: 48%;
    transform: translateX(-35%);
    width: 42%;
    height: 75%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2; /* Delante del mapa, detrás del texto */
    pointer-events: none;
}

.cajito img {
    width: 115%;
    height: 115%;
    object-fit: contain;
    filter: drop-shadow(0 5px 8px rgba(0,0,0,0.5));
    pointer-events: none;
    margin-bottom: -5%;
}

/* Logo imagen de Caja Huancayo */
.huancayo-logo {
    width: clamp(125px, 55%, 165px); /* Tamaño más grande y fluido, evita que se vea chico */
    height: auto; /* Al quitar max-height, la imagen crece y se encoge de forma perfecta */
    object-fit: contain;
    transform: translateY(-10px); /* Llevamos el logo más arriba, como solicitaste */
    transform-origin: left center; /* Anclamos el crecimiento hacia la izquierda */
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4)); /* Sombra para que destaque sobre el plástico rojo */
}

.huancayo-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.3rem;
    letter-spacing: 2.5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    margin-top: 10px;
    z-index: 3; /* Z-index 3: Cruza por encima de Cajito */
    position: relative;
}

.huancayo-chip {
    background: linear-gradient(135deg, #e0e0e0 0%, #b0b0b0 100%);
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.card-logo-subtext {
    font-size: 0.4em;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    letter-spacing: 0;
    display: block;
    text-align: right;
    font-weight: 400;
}

/* ==============================================================
   TARJETAS QR "ULTRA-REALISTIC TECH" (YAPE / PLIN)
   ============================================================== */
.wallet-ultra-wrapper {
    perspective: 1000px;
    width: 100%;
    max-width: 300px;
    height: 400px;
    margin: 20px 10px;
    position: relative;
    z-index: 1;
}

.wallet-ultra-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    border-radius: 24px;
    cursor: pointer;
    /* Efecto Neón 3D base */
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1) inset;
    overflow: hidden;
}

/* Textura de Plástico Pulido y Colores Base */
.wallet-ultra-card::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.1; mix-blend-mode: overlay;
}

.yape-ultra {
    background: #742284; /* Morado Yape sólido */
    border: 1px solid rgba(255,255,255,0.15);
    animation: pulse-yape-card 3s infinite alternate ease-in-out;
}
@keyframes pulse-yape-card {
    0% { box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.1); }
    100% { box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(116, 34, 132, 0.6), inset 0 0 0 2px rgba(116, 34, 132, 1); }
}

.plin-ultra {
    background: #00ffdf; /* Turquesa Plin sólido */
    border: 1px solid rgba(255,255,255,0.4);
    animation: pulse-plin-card 3s infinite alternate ease-in-out;
}
@keyframes pulse-plin-card {
    0% { box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.1); }
    100% { box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(0, 255, 223, 0.6), inset 0 0 0 2px #fff; }
}

/* Reflejo de Cristal reactivo al mouse */
.ultra-glare {
    position: absolute; inset: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4) 0%, transparent 50%);
    mix-blend-mode: overlay; opacity: 0; pointer-events: none; z-index: 10;
    transform: translateZ(1px); transition: opacity 0.3s;
}

/* Contenedor Interno (Flotando en 3D) */
.ultra-content {
    position: absolute; inset: 0; z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Agrupa todo perfectamente en el centro vertical */
    gap: 30px; /* Aplica una distancia exacta y uniforme entre los 3 bloques */
    padding: 20px;
    transform-style: preserve-3d;
}

/* Logos Superiores */
.ultra-logo-container {
    transform: translateZ(40px); /* Flota fuera de la tarjeta */
    display: flex;
    justify-content: center;
}
.yape-logo-img {
    height: 100px; /* Tamaño aumentado para que resalte más */
    width: auto;
    max-width: 90%; /* Margen de seguridad ajustado */
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4)); /* Sombra para resaltar */
}

.plin-header {
    display: flex; flex-direction: column; align-items: center; transform: translateZ(40px);
}
.plin-logo-img {
    height: 100px; /* Tamaño aumentado para que resalte más */
    width: auto;
    max-width: 90%; /* Margen de seguridad ajustado */
    object-fit: contain;
    margin-bottom: 12px;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3)); /* Sombra para resaltar */
}
.plin-subtitle {
    background: #ffffff;
    color: #005a5a;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.8rem;
    margin: 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    width: 180px; /* Igualamos el ancho con el botón de Yape */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

/* Recuadros QR Centrales */
.ultra-qr-box {
    width: 160px; /* Reducido para que no choque con los textos */
    height: 160px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: translateZ(60px); /* El elemento que más flota */
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.qr-placeholder {
    color: #333; font-family: 'Orbitron', sans-serif; font-size: 1rem; font-weight: 900; opacity: 0.4; letter-spacing: 2px;
}

/* Animación Automática y Continua del QR */
.yape-qr { animation: pulse-yape-qr 2s infinite alternate ease-in-out; }
.plin-qr { animation: pulse-plin-qr 2s infinite alternate ease-in-out; }

@keyframes pulse-yape-qr {
    0% { box-shadow: 0 15px 35px rgba(0,0,0,0.3); transform: translateZ(60px) scale(1); }
    100% { box-shadow: 0 0 30px rgba(255,235,59,0.6), 0 20px 40px rgba(0,0,0,0.5); transform: translateZ(65px) scale(1.03); }
}
@keyframes pulse-plin-qr {
    0% { box-shadow: 0 15px 35px rgba(0,0,0,0.3); transform: translateZ(60px) scale(1); }
    100% { box-shadow: 0 0 30px rgba(255,255,255,0.8), 0 20px 40px rgba(0,0,0,0.3); transform: translateZ(65px) scale(1.03); }
}

/* Esquinas Amarillas (Exclusivo Yape) */
.yape-corner {
    position: absolute; width: 25px; height: 25px; border-color: #ffeb3b; border-style: solid; border-width: 0; border-radius: 6px;
}
.top-left { top: -6px; left: -6px; border-top-width: 4px; border-left-width: 4px; }
.top-right { top: -6px; right: -6px; border-top-width: 4px; border-right-width: 4px; }
.bottom-left { bottom: -6px; left: -6px; border-bottom-width: 4px; border-left-width: 4px; }
.bottom-right { bottom: -6px; right: -6px; border-bottom-width: 4px; border-right-width: 4px; }

/* Textos y Botones Inferiores */
.ultra-bottom {
    transform: translateZ(30px);
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px; /* Crea una separación estricta entre elementos */
}

.yape-btn-cyan {
    background: #00ffdf;
    color: #742284;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.8rem;
    margin: 0 auto 5px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    width: 180px; /* Ancho fijo para mantener la simetría con Plin */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ultra-bottom .phone {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 1.4rem !important; /* Adaptado al nuevo tamaño */
    font-weight: 900 !important;
    color: #39ff14 !important; /* Verde Neón */
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.6) !important;
    margin: 0 !important;
}

.ultra-bottom .name {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: #fff;
    opacity: 0.8;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* Ajuste para el texto inferior de Plin sin contenedor */
.plin-number {
    color: #00842a !important; /* Verde normal y legible sin ser muy oscuro ni muy brillante */
    text-shadow: 0 1px 1px rgba(0,0,0,0.1) !important; /* Sombra muy sutil */
    background: transparent !important; /* Fondo transparente (sin contenedor) */
    padding: 0 !important;
    display: block !important;
}
.plin-name { color: #003333 !important; font-weight: 900; margin-top: 0 !important; }

/* Sistema de Partículas (Sparkles) Orbitando */
.ultra-sparkles {
    position: absolute; inset: 0; z-index: 5; pointer-events: none; mix-blend-mode: screen;
    background-image: 
        radial-gradient(2px 2px at 10% 20%, #fff, transparent),
        radial-gradient(3px 3px at 80% 40%, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 30% 70%, #fff, transparent),
        radial-gradient(2px 2px at 70% 80%, rgba(255,255,255,0.8), transparent),
        radial-gradient(2.5px 2.5px at 90% 10%, #fff, transparent);
    background-size: 150% 150%;
    opacity: 1; /* Siempre visibles */
    animation: orbit-sparkles 4s linear infinite; /* Animación continua */
}

@keyframes orbit-sparkles {
    0% { background-position: 0% 0%; }
    100% { background-position: 50% 50%; }
}

/* Ajustes extras para pantallas muy pequeñas (Móviles) */
@media (max-width: 400px) {
    .ultra-qr-box { width: 145px; height: 145px; }
    .ultra-bottom .phone { font-size: 1.25rem !important; }
}
