/* ===========================================
   ADVENTURE UI — ESTILO GLOBAL
   =========================================== */

/* --- Paleta de colores base --- */
:root {
    --adv-green: #38ff4e;
    --adv-green-dark: #2cd53f;
    --adv-blue: #00eaff;
    --adv-dark: #050505;
    --adv-bg: #0b1015; 
    --adv-text: #e2e2e2;
    --adv-card-bg: #0f1822;
    --adv-shadow: rgba(0,0,0,0.5);
}

/* ===========================================
   BODY GENERAL
   =========================================== */
body {
    background: var(--adv-bg);
    color: var(--adv-text);
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* Enlaces */
a {
    color: var(--adv-green);
    text-decoration: none;
}

a:hover {
    color: var(--adv-blue);
}

/* Contenedores */
.container {
    max-width: 1200px;
}

/* ===========================================
   NAVBAR GAMER
   =========================================== */
.nav-adventure {
    background: #050505;
    padding: 12px 0;
    border-bottom: 1px solid rgba(56,255,78,0.15);
    box-shadow: 0 4px 25px rgba(0,0,0,0.4);
}

.navbar-brand .brand-green {
    color: var(--adv-green);
    font-size: 1.5rem;
    letter-spacing: .5px;
}

.nav-adventure .nav-link {
    color: var(--adv-text) !important;
    font-weight: 500;
    margin-right: 10px;
    transition: 0.25s ease;
}

.nav-adventure .nav-link:hover {
    color: var(--adv-green) !important;
    text-shadow: 0 0 8px var(--adv-green-dark);
}

/* Badge carrito */
.cart-badge {
    background: var(--adv-green);
    color: #000;
    border-radius: 999px;
    font-size: 0.7rem;
    padding: 3px 6px;
    position: absolute;
    top: -4px;
    right: -14px;
    box-shadow: 0 0 8px var(--adv-green);
}

.nav-adventure .btn-outline-light {
    border-color: var(--adv-green);
    color: var(--adv-green);
}

.nav-adventure .btn-outline-light:hover {
    background: var(--adv-green);
    color: #000;
    box-shadow: 0 0 12px var(--adv-green);
}

/* --- Sticky Header --- */
.nav-adventure {
    position: sticky;
    top: 0;
    z-index: 999;
}

/* ===========================================
   BANNER GLOBAL
   =========================================== */
.banner-adventure img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ===========================================
   HERO
   =========================================== */
.hero {
    background: radial-gradient(circle at top left, #10232f, #0b1824 60%, #031a1f);
    padding: 60px 0 70px;
    color: #fff;
}

.hero .brand {
    color: var(--adv-green);
    font-weight: 800;
}

/* Badges hero */
.hero-badge {
    background: rgba(0,0,0,.35);
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ===========================================
   TARJETAS — ESTILO GENERAL
   =========================================== */
.card-soft {
    background: var(--adv-card-bg);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 30px var(--adv-shadow);
    border: 1px solid rgba(255,255,255,.05);
}

.card-soft h4,
.card-soft h5 {
    color: #fff;
}

.card-soft p {
    color: #d6dde8;
}

/* ===========================================
   SECCIONES
   =========================================== */
.section-label {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #7f8da3;
    font-weight: 600;
}

.section-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: .75rem;
    color: #ffffff;
}

.section-divider {
    width: 60px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--adv-green), var(--adv-blue));
    margin-bottom: 1.5rem;
}

/* ===========================================
   PRODUCTOS
   =========================================== */
.product-card {
    background: var(--adv-card-bg);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.05);
    overflow: hidden;
    transition: .25s ease;
}

.product-card img {
    height: 170px;
    width: 100%;
    object-fit: cover;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--adv-green);
    box-shadow: 0 0 25px rgba(56,255,78,0.4);
}

.badge-adventure {
    background: linear-gradient(135deg, var(--adv-green), var(--adv-blue));
    color: #041015;
    font-weight: 600;
    font-size: .75rem;
    border-radius: 999px;
    padding: .25rem .7rem;
}

/* ===========================================
   LOCAL Y CONTACTO
   =========================================== */
.info-local-icon {
    background: #050b10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--adv-green);
}

.map-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 18px;
    overflow: hidden;
}

.map-responsive iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* ===========================================
   FOOTER
   =========================================== */
footer {
    background: #050b10;
    color: #9ca7b8;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
    font-size: .85rem;
}
