/* ==============================================
   STAFF LETRAS ILUMINADAS — styles.css
   ============================================== */

:root {
    --orange:       #FF6600;
    --orange-light: #FF8533;
    --orange-glow:  rgba(255, 102, 0, 0.35);
    --gold:         #FFD700;
    --white:        #FFFFFF;
    --dark:         #0A0A0A;
    --dark-2:       #111111;
    --dark-3:       #1A1A1A;
    --dark-4:       #242424;
    --gray:         #777777;
    --gray-light:   #BBBBBB;
    --wa:           #25D366;
    --mp:           #009EE3;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'Montserrat', sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; background-color: #0A0A0A; }

body {
    background-color: var(--dark);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

a { text-decoration: none; color: inherit; }

/* ── Utilidades ── */
.hidden { display: none !important; }
.text-center { text-align: center; }
.naranja { color: var(--orange); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 0.6rem;
}
.section-sub {
    color: var(--gray);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.2rem 2rem;
    transition: background 0.4s, padding 0.4s;
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    padding: 0.75rem 2rem;
    border-bottom: 1px solid rgba(255, 102, 0, 0.15);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-staff {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--orange);
    letter-spacing: 4px;
}
.logo-sub {
    font-size: 0.6rem;
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-link {
    color: var(--gray-light);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--orange); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 60%, #200d00 0%, #0a0a0a 65%);
}

/* Chispas generadas por JS */
.sparks-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.spark {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: sparkRise linear forwards;
}
@keyframes sparkRise {
    0%   { transform: translateY(0)   scale(1);   opacity: 1; }
    80%  { opacity: 0.6; }
    100% { transform: translateY(-110vh) scale(0); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 1.5rem 5rem;
    max-width: 860px;
    width: 100%;
}

/* Marca en hero */
.hero-brand { margin-bottom: 0.2rem; }
/* Contenedor de letras del hero */
.hero-staff-letras {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: clamp(100px, 18vw, 200px);
    overflow: visible;
    margin-bottom: 0.3rem;
}

.hero-staff-letras .letra-item {
    height: 100%;
}

.hero-staff-letras .letra-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255,200,80,0.8)) drop-shadow(0 0 30px rgba(255,100,0,0.5));
}

/* Fallback CSS si no hay fotos aún */
.hero-staff-letras .letra-css {
    height: 100%;
    font-size: clamp(4rem, 14vw, 9rem);
    min-width: auto;
    padding: 0 6px;
    border: none;
    background:
        radial-gradient(circle, #ffffff 20%, #FFE566 36%, rgba(255,140,0,0.3) 52%, transparent 66%)
        0 0 / 20px 20px;
    filter:
        drop-shadow(0 0 6px rgba(255,220,0,1))
        drop-shadow(0 0 20px rgba(255,120,0,0.9))
        drop-shadow(0 0 50px rgba(255,60,0,0.5));
}
.brand-name {
    display: block;
    font-size: clamp(0.75rem, 2.2vw, 1.2rem);
    letter-spacing: 10px;
    text-transform: uppercase;
    color: var(--white);
    margin-top: 0.4rem;
}

.hero-tagline {
    font-size: clamp(1rem, 2.8vw, 1.6rem);
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 1.8rem 0 2.8rem;
}

/* Caja del configurador */
.configurador-box {
    max-width: 680px;
    margin: 0 auto;
}
.config-label {
    display: block;
    font-size: clamp(1.6rem, 4.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.input-wrap {
    position: relative;
}
.texto-input {
    width: 100%;
    padding: 1.1rem 3rem 1.1rem 1.8rem;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3.5vw, 2.1rem);
    letter-spacing: 8px;
    text-transform: uppercase;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 102, 0, 0.35);
    border-radius: 14px;
    color: var(--white);
    outline: none;
    caret-color: var(--orange);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.texto-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 25px rgba(255, 102, 0, 0.2), inset 0 0 25px rgba(255, 102, 0, 0.04);
}
.texto-input::placeholder {
    color: rgba(255, 255, 255, 0.18);
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-family: var(--font-body);
}
.char-counter {
    position: absolute;
    right: 14px;
    bottom: 50%;
    transform: translateY(50%);
    font-size: 0.72rem;
    color: var(--gray);
    pointer-events: none;
}
.btn-generar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.9rem;
    padding: 0.75rem 1.2rem;
    background: var(--orange);
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background 0.18s, transform 0.12s;
}
.btn-generar:hover  { background: #ffb347; }
.btn-generar:active { transform: scale(0.97); }
.simbolos-bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}
.simbolos-label {
    font-size: 0.72rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.simbolo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.35);
    border-radius: 20px;
    color: var(--orange);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}
.simbolo-btn:hover {
    background: rgba(255, 102, 0, 0.25);
    transform: scale(1.05);
}
.simbolo-btn i { font-size: 0.9rem; }

.input-hint {
    margin-top: 0.7rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--orange);
    font-size: 1.4rem;
    animation: bounce 2s infinite;
    z-index: 2;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%        { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   PREVIEW DE LETRAS
   ============================================ */
.preview-section {
    background: var(--dark-2);
    padding: 3rem 1.5rem 4rem;
}
.preview-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.letras-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 360px;
    overflow: hidden;
    padding: 1.5rem 6rem;
    border: 1px solid rgba(255, 102, 0, 0.1);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.35);
    margin-bottom: 2rem;
    transition: border-color 0.3s;
}

/* ── Selector de ambiente ── */
.fondo-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.fondo-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.fondo-label i { color: var(--orange); margin-right: 4px; }
.fondo-opts {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.fondo-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 6px 8px;
    cursor: pointer;
    transition: border-color 0.25s, transform 0.2s;
}
.fondo-opt:hover { border-color: rgba(255,102,0,0.5); transform: translateY(-2px); }
.fondo-opt.active { border-color: var(--orange); }
.fondo-swatch {
    display: block;
    width: 42px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}
.fondo-opt small {
    font-size: 0.62rem;
    color: var(--gray-light);
    white-space: nowrap;
}
.fondo-opt.active small { color: var(--orange); }
.fondo-opt.foto-slot.hidden { display: none; }

/* ── Ambientes del preview ── */
.letras-preview { transition: background 0.5s ease, border-color 0.3s; }

.env-jardin-noche {
    background:
        radial-gradient(ellipse at 30% 100%, rgba(0,70,15,0.9) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 100%, rgba(0,50,10,0.7) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 20%, rgba(10,30,60,0.6) 0%, transparent 50%),
        linear-gradient(to top, #061208 0%, #0b1822 60%, #060d18 100%) !important;
    border-color: rgba(0,120,30,0.3) !important;
}
.env-jardin-dia {
    background:
        radial-gradient(ellipse at 50% -10%, rgba(255,255,200,0.7) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(30,120,50,0.5) 0%, transparent 40%),
        linear-gradient(to bottom, #a8d8b0 0%, #6aad7a 45%, #3d7a4a 100%) !important;
    border-color: rgba(60,160,80,0.4) !important;
}
.env-salon-noche {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(220,170,60,0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 50%, rgba(180,120,30,0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 50%, rgba(180,120,30,0.15) 0%, transparent 40%),
        linear-gradient(to bottom, #1c1205 0%, #100a02 100%) !important;
    border-color: rgba(200,150,40,0.25) !important;
}
.env-salon-dia {
    background:
        radial-gradient(ellipse at 50% -20%, rgba(255,245,215,0.9) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 50%, rgba(255,240,200,0.3) 0%, transparent 40%),
        linear-gradient(to bottom, #f8f0e0 0%, #e8d8b8 100%) !important;
    border-color: rgba(200,180,130,0.4) !important;
}
.env-playa-noche {
    background:
        radial-gradient(ellipse at 50% 10%, rgba(20,60,120,0.5) 0%, transparent 55%),
        radial-gradient(ellipse at 30% 0%, rgba(255,200,80,0.08) 0%, transparent 30%),
        linear-gradient(to top, #050f1a 0%, #071830 50%, #040c1c 100%) !important;
    border-color: rgba(20,80,160,0.35) !important;
}

/* En fondos claros (salón día, jardín día) las letras CSS se oscurecen para contrastar */
.env-salon-dia .letra-css,
.env-jardin-dia .letra-css {
    background:
        radial-gradient(circle, #1a1a1a 22%, #3a2000 38%, rgba(80,40,0,0.2) 54%, transparent 68%)
        0 0 / 18px 18px;
    filter:
        drop-shadow(0 0 4px rgba(80,40,0,0.8))
        drop-shadow(0 0 10px rgba(40,20,0,0.6));
}

/* Fila interna — nunca hace wrap, se escala por JS con zoom */
.letras-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.letras-preview:not(:has(.preview-placeholder)) {
    border-color: rgba(255, 102, 0, 0.25);
}

.preview-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}
.preview-placeholder i {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 0.8rem;
}
.preview-placeholder p { font-size: 0.9rem; }

/* Letra individual */
.letra-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    animation: letraIn 0.25s ease;
}
@keyframes letraIn {
    from { opacity: 0; transform: scale(0.7) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.letra-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Fallback CSS cuando no hay imagen en catálogo */
.letra-css {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    min-width: 60px;
    padding: 0 4px;
    font-family: var(--font-display);
    font-size: 13rem;
    line-height: 1;
    /* Efecto marquesina perforada: puntos de luz dentro del contorno */
    background:
        radial-gradient(circle, #ffffff 22%, #FFE566 38%, rgba(255,160,0,0.25) 54%, transparent 68%)
        0 0 / 18px 18px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter:
        drop-shadow(0 0 5px rgba(255, 230, 80, 1))
        drop-shadow(0 0 14px rgba(255, 160, 0, 0.85))
        drop-shadow(0 0 30px rgba(255, 80, 0, 0.55));
}

.letra-espacio {
    width: 90px;
    height: 300px;
    flex-shrink: 0;
}

/* Panel de dimensiones */
.dimensions-panel {
    background: rgba(255, 102, 0, 0.05);
    border: 1px solid rgba(255, 102, 0, 0.18);
    border-radius: 18px;
    padding: 1.8rem 2rem;
    animation: fadeUp 0.4s ease;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.dim-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.8rem;
}
.dim-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
}
.dim-item i { font-size: 1.4rem; color: var(--orange); }
.dim-value  { font-size: 1.2rem; font-weight: 700; }
.dim-label  { font-size: 0.7rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

/* Precios estimados */
.precio-estimado {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255,102,0,0.08);
    border: 1px solid rgba(255,102,0,0.25);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.4rem;
}
.precio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 1rem 0.8rem;
}
.precio-item:first-child {
    border-right: 1px solid rgba(255,102,0,0.2);
}
.precio-divider { display: none; }
.precio-label {
    font-size: 0.63rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
}
.precio-label i { color: var(--orange); font-size: 0.75rem; }
.precio-valor {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--orange);
    letter-spacing: -0.5px;
}
.precio-pickup { color: #aaa; }
.precio-nota {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.6rem;
    color: var(--gray);
    padding: 0.4rem 1rem 0.6rem;
    border-top: 1px solid rgba(255,102,0,0.1);
    opacity: 0.7;
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}
.btn-orange {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 6px 25px var(--orange-glow);
}
.btn-orange:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(255, 102, 0, 0.5);
}
.btn-mp {
    background: var(--mp);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 158, 227, 0.3);
}
.btn-mp:hover {
    background: #007bbf;
    transform: translateY(-2px);
}
.btn-full { width: 100%; font-size: 1rem; }

/* ============================================
   GALERÍA
   ============================================ */
.gallery-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    grid-auto-rows: 240px;
    gap: 1rem;
    grid-auto-flow: dense;
}
/* ── Lightbox ── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.93);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lbFadeIn 0.25s ease;
}
@keyframes lbFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.lb-img-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
}
#lb-img {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 60px rgba(0,0,0,0.8);
    animation: lbImgIn 0.2s ease;
}
@keyframes lbImgIn {
    from { transform: scale(0.95); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}
.lb-caption {
    margin-top: 0.8rem;
    color: var(--gray-light);
    font-size: 0.85rem;
    text-align: center;
}
.lb-close {
    position: fixed;
    top: 1.2rem; right: 1.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 42px; height: 42px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2001;
}
.lb-close:hover { background: rgba(255,255,255,0.18); }
.lb-prev, .lb-next {
    position: fixed;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 46px; height: 46px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2001;
}
.lb-prev { left: 1.2rem; }
.lb-next { right: 1.2rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,102,0,0.4); border-color: var(--orange); }
.grid-item { cursor: pointer; }

.galeria-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: var(--gray);
    gap: 1rem;
}
.galeria-empty i  { font-size: 3rem; opacity: 0.3; }
.galeria-empty p  { font-size: 0.95rem; }
.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
}
.grid-item:nth-child(2n)  { grid-row: span 2; }
.grid-item:nth-child(5n)  { grid-column: span 2; }
.grid-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.grid-item:hover img { transform: scale(1.06); }
.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255,102,0,0.75) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s;
    display: flex;
    align-items: flex-end;
    padding: 1.2rem 1.4rem;
}
.grid-item:hover .item-overlay { opacity: 1; }
.item-overlay span {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transform: translateY(8px);
    transition: transform 0.35s;
}
.grid-item:hover .item-overlay span { transform: translateY(0); }

/* ============================================
   SERVICIOS
   ============================================ */
.services-section {
    padding: 5rem 2rem;
    background: var(--dark-2);
}
.services-container {
    max-width: 1100px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.4rem;
    margin-top: 2.5rem;
}
.service-card {
    background: var(--dark-3);
    border: 1px solid rgba(255, 102, 0, 0.12);
    border-radius: 18px;
    padding: 2rem 1.4rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.15);
}
.service-card i {
    font-size: 2.2rem;
    color: var(--orange);
    display: block;
    margin-bottom: 1rem;
}
.service-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================================
   COTIZAR + MAPA
   ============================================ */
.quote-section {
    padding: 5rem 2rem;
    background: var(--dark);
}
.quote-container {
    max-width: 1200px;
    margin: 0 auto;
}
.quote-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Formulario */
.quote-form-wrapper {
    background: var(--dark-3);
    border-radius: 20px;
    padding: 2rem 2rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.45rem;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: var(--dark-4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.93rem;
    outline: none;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group select option { background: var(--dark-4); }
.fecha-grid-cot {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 0.5rem;
}

.input-btn-row {
    display: flex;
    gap: 0.6rem;
}
.input-btn-row input { flex: 1; }

.btn-calcular {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0 1.1rem;
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--orange);
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s;
}
.btn-calcular:hover { background: var(--orange); color: #fff; }

/* Resultado de distancia */
.distancia-result {
    background: rgba(255, 102, 0, 0.07);
    border: 1px solid rgba(255, 102, 0, 0.22);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: fadeUp 0.3s ease;
}
.dist-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.dist-row i { color: var(--orange); width: 18px; text-align: center; }
.dist-label {
    display: block;
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.dist-value {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
}

/* Mapa */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--dark-3);
    display: flex;
    flex-direction: column;
}
.map-embed {
    flex: 1;
    min-height: 320px;
}
.map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    filter: grayscale(20%) invert(95%) hue-rotate(180deg) brightness(0.82);
}
.map-caption {
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--gray-light);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.map-caption i { color: var(--orange); }

.ciudad-selector {
    padding: 0.9rem 1.2rem 1.1rem;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.ciudad-label {
    font-size: 0.75rem;
    color: var(--gray-light);
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.ciudad-label i { color: var(--orange); }
.ciudad-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.ciudad-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    border: 1px solid rgba(255, 102, 0, 0.3);
    background: rgba(255, 102, 0, 0.08);
    color: var(--gray-light);
    transition: all 0.2s;
    position: relative;
}
.ciudad-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: 0 0 14px rgba(255,102,0,0.4);
}
.ciudad-btn.disabled {
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.07);
    color: var(--gray);
    cursor: not-allowed;
    opacity: 0.6;
}
.ciudad-btn .pronto {
    font-size: 0.6rem;
    font-weight: 600;
    background: rgba(255,255,255,0.1);
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--gray);
}

/* ============================================
   PAGOS
   ============================================ */
.payments-section {
    padding: 5rem 2rem;
    background: var(--dark-2);
    text-align: center;
}
.payments-container { max-width: 800px; margin: 0 auto; }
.mp-cta { margin: 2rem 0 1.5rem; }
.pagos-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 1.6rem 0 0.5rem;
}
.pago-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.45rem 1rem;
    font-size: 0.82rem;
    color: var(--gray-light);
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s;
}
.pago-chip:hover { border-color: rgba(255,102,0,0.45); color: var(--white); }
.pago-chip-link { cursor: pointer; border-color: rgba(255,102,0,0.35); color: var(--white); background: none; font-family: var(--font-body); }
.pago-chip-link:hover { background: rgba(255,102,0,0.15); }

/* ── Login Vendedor ── */
.btn-soy-vendedor {
    background: none;
    border: 1px solid rgba(255,102,0,0.4);
    color: var(--orange);
    padding: 0.35rem 0.85rem;
    border-radius: 18px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    transition: background 0.18s;
}
.btn-soy-vendedor:hover { background: rgba(255,102,0,0.12); }
.btn-soy-vendedor.activo { background: var(--orange); color: #000; border-color: var(--orange); }

.modal-vendedor-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.78);
    display: flex; align-items: center; justify-content: center;
    z-index: 9500; padding: 1rem;
}
.modal-vendedor-box {
    background: #141414;
    border: 1px solid rgba(255,102,0,0.3);
    border-radius: 14px;
    width: 100%; max-width: 380px;
    position: relative;
    overflow: hidden;
}
.modal-vendedor-close {
    position: absolute; top: 0.7rem; right: 0.9rem;
    background: none; border: none; color: #666;
    font-size: 1.05rem; cursor: pointer;
}
.modal-vendedor-close:hover { color: #fff; }
.modal-vendedor-header {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 1.1rem 1.3rem 0.7rem;
    color: var(--orange); font-weight: 700; font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.modal-vendedor-body { padding: 1.1rem 1.3rem 1.3rem; }
.vendedor-select {
    width: 100%; padding: 0.7rem 0.9rem;
    background: #1a1a1a; border: 1px solid #2a2a2a;
    border-radius: 8px; color: #e0e0e0;
    font-size: 0.92rem; outline: none;
    margin-bottom: 0.9rem;
    font-family: var(--font-body);
}
.vendedor-select:focus { border-color: var(--orange); }
.vendedor-select option { background: #1a1a1a; }
.btn-vendedor-entrar, .btn-vendedor-salir {
    width: 100%; padding: 0.75rem;
    background: var(--orange); color: #000;
    border: none; border-radius: 8px;
    font-weight: 700; font-size: 0.92rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-family: var(--font-body);
}
.btn-vendedor-entrar:hover { background: #ffb347; }
.btn-vendedor-salir {
    background: #2a2a2a; color: #e0e0e0; border: 1px solid #444;
    margin-top: 0.6rem;
}
.btn-vendedor-salir:hover { background: #333; color: #ef4444; }

/* ── Modal Cotización ── */
.modal-cot-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex; align-items: center; justify-content: center;
    z-index: 9000; padding: 1rem;
}
.modal-cot-box {
    background: #141414;
    border: 1px solid rgba(255,102,0,0.3);
    border-radius: 14px;
    width: 100%; max-width: 520px;
    max-height: 90vh;
    display: flex; flex-direction: column;
    overflow: hidden;
    position: relative;
}
.modal-cot-close {
    position: absolute; top: 0.8rem; right: 0.9rem;
    background: none; border: none; color: #666;
    font-size: 1.1rem; cursor: pointer;
}
.modal-cot-close:hover { color: #fff; }
.modal-cot-header {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 1rem 1.2rem 0.6rem;
    color: var(--orange); font-weight: 700; font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.modal-cot-texto {
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    line-height: 1.6;
    color: #e0e0e0;
    padding: 1rem 1.2rem;
    overflow-y: auto;
    white-space: pre-wrap;
    flex: 1;
    margin: 0;
}
.modal-cot-acciones {
    display: flex; gap: 0.7rem;
    padding: 0.9rem 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.btn-cot-copiar, .btn-cot-wa {
    flex: 1; display: flex; align-items: center; justify-content: center;
    gap: 0.4rem; padding: 0.65rem 0.8rem;
    border: none; border-radius: 8px;
    font-weight: 700; font-size: 0.88rem; cursor: pointer;
    transition: opacity 0.15s;
}
.btn-cot-copiar { background: #2a2a2a; color: #e0e0e0; border: 1px solid #444; }
.btn-cot-copiar:hover { background: #333; }
.btn-cot-wa { background: #25D366; color: #fff; }
.btn-cot-wa:hover { opacity: 0.88; }
.btn-cot-wa-vendedor {
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    width: 100%; padding: 0.55rem;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.45);
    border-radius: 7px; color: #25D366;
    font-size: 0.82rem; cursor: pointer; font-family: inherit;
    margin-bottom: 0.5rem;
    transition: background 0.15s;
}
.btn-cot-wa-vendedor:hover { background: rgba(37, 211, 102, 0.22); }
.btn-cot-contrato {
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    width: 100%; padding: 0.55rem;
    background: none; border: 1px solid #333;
    border-radius: 7px; color: #888;
    font-size: 0.82rem; text-decoration: none;
    transition: color 0.15s, border-color 0.15s;
}
.btn-cot-contrato:hover { color: #ff6600; border-color: #ff6600; }

/* ── Modal SPEI ── */
.modal-spei-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.82);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}
.modal-spei-box {
    background: #111;
    border: 1px solid rgba(255,102,0,0.3);
    border-radius: 18px;
    padding: 2rem;
    max-width: 480px;
    width: 100%;
    position: relative;
    animation: modalIn 0.25s ease;
}
@keyframes modalIn {
    from { opacity:0; transform: scale(0.94) translateY(10px); }
    to   { opacity:1; transform: scale(1)    translateY(0);    }
}
.modal-spei-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: rgba(255,255,255,0.06);
    border: none;
    color: var(--gray-light);
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.modal-spei-close:hover { background: rgba(255,102,0,0.25); color: var(--white); }

.modal-spei-titulo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 1.4rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.modal-spei-datos {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.spei-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.spei-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    min-width: 90px;
    flex-shrink: 0;
}
.spei-valor {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
}
.spei-clabe { align-items: center; }
.spei-clabe-num {
    font-size: 1.1rem;
    font-family: monospace;
    color: var(--orange);
    letter-spacing: 2px;
}
.btn-copiar-clabe {
    background: rgba(255,102,0,0.12);
    border: 1px solid rgba(255,102,0,0.3);
    color: var(--orange);
    border-radius: 6px;
    padding: 0.25rem 0.6rem;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.2s;
    margin-left: auto;
}
.btn-copiar-clabe:hover { background: rgba(255,102,0,0.25); }

.modal-spei-fiscal {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.spei-fiscal-titulo {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    display: flex; align-items: center; gap: 0.4rem;
    margin-bottom: 0.3rem;
}

.modal-spei-aviso {
    display: flex;
    gap: 0.7rem;
    background: rgba(255,180,0,0.06);
    border: 1px solid rgba(255,180,0,0.2);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    font-size: 0.8rem;
    color: var(--gray-light);
    line-height: 1.5;
}
.modal-spei-aviso i { color: #FFB300; flex-shrink: 0; margin-top: 2px; }
.modal-spei-aviso strong { color: var(--white); }
.pago-chip i { color: var(--orange); font-size: 1rem; }
.pago-chip .fa-cc-visa       { color: #4a90d9; }
.pago-chip .fa-cc-mastercard { color: #eb5757; }
.pago-chip .fa-cc-amex       { color: #5ba4cf; }
.pago-chip .fa-paypal        { color: #5b9bd5; }
.banks-image-container {
    margin-top: 1.5rem;
    padding: 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
}
.banks-img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.8) opacity(0.5);
    transition: filter 0.4s;
}
.banks-image-container:hover .banks-img {
    filter: grayscale(20%) brightness(1.2) opacity(0.85);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #060606;
    border-top: 1px solid rgba(255, 102, 0, 0.12);
}
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 0.8rem;
}
.footer-brand p {
    color: var(--gray);
    font-size: 0.88rem;
    margin-top: 0.5rem;
}
.footer-social h3,
.footer-contact h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--orange);
    margin-bottom: 1rem;
}
.social-icons { display: flex; gap: 0.75rem; }
.social-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.social-btn.facebook   { background: #1877f2; color: #fff; }
.social-btn.instagram  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.social-btn.whatsapp   { background: var(--wa); color: #fff; }
.social-btn:hover { transform: scale(1.12); }

.footer-contact { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-link {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-light);
    font-size: 0.88rem;
    transition: color 0.2s;
}
.contact-link:hover { color: var(--orange); }
.contact-link i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

/* Asesores en footer */
.footer-asesores h3,
.footer-contact h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--orange);
    margin-bottom: 0.8rem;
}
.footer-asesor-intro {
    font-size: 0.78rem;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.footer-asesor-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-asesor-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--gray-light);
    transition: color 0.2s;
}
.footer-asesor-link:hover { color: var(--orange); }
.footer-asesor-link i { color: var(--orange); font-size: 0.9rem; }
.asesor-rol-tag {
    font-size: 0.62rem;
    background: rgba(255,102,0,0.12);
    border: 1px solid rgba(255,102,0,0.25);
    color: var(--orange);
    padding: 1px 6px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-left: auto;
}

/* Ayuda al usuario */
.footer-ayuda-msg {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.55;
    margin-bottom: 0.8rem;
    display: flex;
    gap: 0.5rem;
}
.footer-ayuda-msg i { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* Bloque legal */
.footer-legal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 0.68rem;
    color: #444;
    line-height: 1.6;
    text-align: center;
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    padding: 1.2rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    color: var(--gray);
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.footer-dev {
    font-size: 0.72rem;
    color: #444;
}
.footer-dev strong { color: var(--orange); }
.footer-dev-sub { color: #333; }
.footer-dev-link { text-decoration: none; color: inherit; }
.footer-dev-link:hover strong { text-decoration: underline; }
.footer-admin-link {
    font-size: 0.68rem;
    color: #2a2a2a;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.3rem;
    transition: color 0.2s;
}
.footer-admin-link:hover { color: var(--orange); }

/* ============================================
   WHATSAPP FLOTANTE
   ============================================ */
.float-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px; height: 58px;
    background: var(--wa);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    z-index: 999;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: waPulse 3.5s infinite;
}
.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.4); }
    50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   LETREROS PREDEFINIDOS
   ============================================ */
.predefinidos-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, #0d0400 0%, #110600 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(255,102,0,0.18);
}
.pre-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,102,0,0.12);
    border: 1px solid rgba(255,102,0,0.35);
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.predefinidos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.8rem;
    max-width: 1300px;
    margin: 3rem auto 0;
}
.pre-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,102,0,0.15);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}
.pre-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,102,0,0.55);
    box-shadow: 0 16px 48px rgba(255,102,0,0.18);
}
.pre-visual {
    position: relative;
    aspect-ratio: 16/9;
    background: #080808;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pre-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.pre-card:hover .pre-img { transform: scale(1.04); }
.pre-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
    pointer-events: none;
}

/* Fallback cuando no hay foto */
.pre-visual.sin-foto {
    background: radial-gradient(ellipse at center, #1a0800 0%, #080400 100%);
}
.pre-visual.sin-foto .pre-img { display: none; }
.pre-txt-fallback {
    display: none;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #FFD700;
    text-align: center;
    text-shadow:
        0 0 12px rgba(255,180,0,0.9),
        0 0 30px rgba(255,102,0,0.6),
        0 0 60px rgba(255,80,0,0.3);
    padding: 1.2rem;
    line-height: 1.25;
    letter-spacing: 2px;
}
.pre-visual.sin-foto .pre-txt-fallback { display: block; }

.pre-body {
    padding: 1.3rem 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}
.pre-titulo {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    letter-spacing: 2px;
    margin: 0;
}
.pre-desc {
    font-size: 0.78rem;
    color: var(--gray);
    margin: 0 0 0.4rem;
    line-height: 1.5;
}
.pre-wa-btn { width: 100%; margin-top: auto; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .dim-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .quote-layout { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-asesores h3, .footer-contact h3 { text-align: center; }
    .social-icons { justify-content: center; }
    .footer-contact { align-items: center; }
    .footer-asesores { text-align: center; }
    .footer-asesor-list { align-items: center; }
    .footer-asesor-link { justify-content: center; }
    .asesor-rol-tag { margin-left: 0.4rem; }
    .contact-link { text-align: left; }
    .footer-ayuda-msg { justify-content: center; text-align: left; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 10, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.2rem;
        z-index: 1000;
    }
    .nav-links.open  { display: flex; }
    .nav-link        { font-size: 1.4rem; }
    .nav-toggle      { display: flex; }

    .grid-item:nth-child(2n) { grid-row: auto; }
    .grid-item:nth-child(5n) { grid-column: auto; }
}

@media (max-width: 540px) {
    .letras-preview { height: 220px; }
    .letra-css     { font-size: 7rem; height: 170px; min-width: 45px; }
    .letra-item    { height: 170px; }
    .letra-espacio { width: 50px; height: 170px; }
    .dim-grid    { grid-template-columns: repeat(2, 1fr); }
    .masonry-grid { grid-template-columns: 1fr 1fr; }
    .float-whatsapp { bottom: 1.2rem; right: 1.2rem; width: 50px; height: 50px; font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════
   ASESORES — badge + selector
═══════════════════════════════════════════════ */

.asesor-badge {
    position: fixed;
    top: 80px;
    right: 1.5rem;
    z-index: 900;
    align-items: center;
    gap: 0.65rem;
    background: var(--dark-3);
    border: 1px solid rgba(37, 211, 102, 0.4);
    border-radius: 50px;
    padding: 0.5rem 1rem 0.5rem 0.75rem;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.18);
    animation: fadeInRight 0.4s ease;
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}
.asesor-badge > i { font-size: 1.4rem; color: var(--wa); }
.badge-text { display: flex; flex-direction: column; line-height: 1.25; }
.badge-nombre { font-size: 0.85rem; font-weight: 700; color: var(--white); }
.badge-rol    { font-size: 0.7rem;  color: var(--gray-light); }
.badge-cta {
    background: var(--wa);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.badge-cta:hover { background: #1ea856; }

.selector-asesor {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    z-index: 950;
    flex-direction: column;
    width: 280px;
    background: var(--dark-3);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    overflow: hidden;
    animation: slideUpFade 0.35s ease;
}
@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.selector-close {
    position: absolute;
    top: 0.6rem; right: 0.6rem;
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.25rem 0.4rem;
    border-radius: 50%;
    transition: color 0.2s;
}
.selector-close:hover { color: var(--white); }
.selector-header {
    padding: 1.2rem 1.4rem 0.6rem;
    text-align: center;
}
.selector-header > i { font-size: 1.9rem; color: var(--wa); display: block; margin-bottom: 0.4rem; }
.selector-header h3  { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.selector-header p   { font-size: 0.72rem; color: var(--gray-light); }
.btn-conectar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    background: var(--wa);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.btn-conectar:hover { background: #1ea856; transform: translateY(-1px); }
.btn-conectar i { font-size: 1.1rem; }

@media (max-width: 480px) {
    .asesor-badge { top: auto; bottom: 5.5rem; right: 1rem; }
    .selector-asesor { right: 0.75rem; width: calc(100vw - 1.5rem); }
}
