/* Variables de Color inspiradas en la marca */
:root {
    --bg-dark: #0d0f12;
    --bg-card: #161a1e;
    --accent-orange: #d97736;
    --accent-gold: #cba358;
    --text-light: #f1f3f5;
    --text-muted: #9aa0a6;
    --border-color: #2a2f35;
    --font-main: 'Montserrat', sans-serif;
}

/* Reset Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 8%;
    background-color: rgba(13, 15, 18, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
}

.logo {
    display: flex;
    flex-direction: column;
    letter-spacing: 2px;
}

.logo-trama {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-light);
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--accent-gold);
    margin-top: -4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.btn-cart {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cart:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('img/portada.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13,15,18,0.4) 0%, rgba(13,15,18,0.95) 100%);
}

.hero-content {
    position: relative;
    max-width: 650px;
    z-index: 1;
}

.tagline {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 1rem 0;
    font-weight: 800;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: #fff;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #be6123;
}

.btn-secondary {
    border: 1px solid var(--text-light);
    color: var(--text-light);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

/* Banner Features */
.banner-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 3rem 8%;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.feature-item {
    text-align: center;
}

.feature-item .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-item h4 {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Sección Productos */
.products-section {
    padding: 5rem 8%;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
}

.section-subtitle {
    color: var(--accent-gold);
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    text-align: left;
    transition: transform 0.3s, border-color 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    z-index: 2;
}

.badge.kids {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

.product-img-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.btn-add-cart {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

/* Footer */
footer {
    padding: 3rem 8%;
    background-color: #08090a;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.copyright {
    font-size: 0.75rem !important;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* ===========================
   CURSOR PREMIUM
=========================== */

/* Ocultar cursor original */
/* html,
body{
    cursor:none;
} */

/* En móviles no mostrar */
@media (pointer:coarse){
    .cursor-dot,
    .cursor-ring{
        display:none;
    }

    html,
    body{
        cursor:auto;
    }
}

/* Punto */
.cursor-dot{

    position:fixed;

    width:8px;
    height:8px;

    background:#d6a24a;

    border-radius:50%;

    pointer-events:none;

    z-index:999999;

    left:0;
    top:0;

    transform:translate(-50%,-50%);

    will-change:transform;

}

/* Aro */
.cursor-ring{

    position:fixed;

    width:42px;
    height:42px;

    left:0;
    top:0;

    border-radius:50%;

    border:2px solid rgba(214,162,74,.95);

    background:rgba(214,162,74,.05);

    pointer-events:none;

    transform:translate(-50%,-50%);

    z-index:999998;

    transition:

        width .22s ease,
        height .22s ease,
        border-color .22s ease,
        background .22s ease,
        transform .15s ease;

    will-change:transform;

}

/* Hover sobre botones */

.cursor-hover{

    width:65px !important;
    height:65px !important;

    border-color:#f1bf63;

    background:rgba(214,162,74,.12);

}

/* Click */

.cursor-click{

    transform:translate(-50%,-50%) scale(.82);

}