@charset "UTF-8";

/* 1. IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

/* 2. NORMALIZE & RESET */
html { line-height: 1.15; -webkit-text-size-adjust: 100%; box-sizing: border-box; }
body { margin: 0; font-family: 'Roboto', sans-serif; background-color: #000; color: #fff; }
*, *:before, *:after { box-sizing: inherit; }

main { display: block; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; }
a { background-color: transparent; text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { border-style: none; max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: 100%; }
button { cursor: pointer; border: none; background: none; }

/* 3. UTILIDADES BÁSICAS */
.list { list-style-type: none; padding: 0; margin: 0; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-column { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

.dn { display: none !important; }
.db { display: block !important; }
.dib { display: inline-block !important; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }
.vh-100 { height: 100vh; }

.pa0 { padding: 0; }
.pa1 { padding: 0.25rem; }
.pa2 { padding: 0.5rem; }
.pa3 { padding: 1rem; }
.pa4 { padding: 2rem; }

.ma0 { margin: 0; }
.ma1 { margin: 0.25rem; }
.ma2 { margin: 0.5rem; }
.ma3 { margin: 1rem; }

.white { color: #fff; }
.black { color: #000; }
.gray { color: #aaa; }

.bg-black { background-color: #000; }
.bg-white { background-color: #fff; }
.bg-transparent { background-color: transparent; }

.pointer { cursor: pointer; }

/* 4. CABECERA (Standardized) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-main {
    display: flex;
    gap: 30px;
}

.nav-main a {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-main a:hover {
    color: #ff0000; /* Example accent color, adjust to brand */
}

/* 5. MOBILE MENU */
#mobile-menu-btn {
    display: none;
    z-index: 11000;
}

@media screen and (max-width: 991px) {
    .nav-main { display: none; }
    #mobile-menu-btn { display: flex; }
    
    header .container {
        padding: 0 15px;
    }
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #111;
    z-index: 12000;
    transition: right 0.3s ease-in-out;
    padding: 80px 40px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}

.menu-overlay.active {
    right: 0;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-links a {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* 6. LANGUAGE SELECTOR */
.lang-selector {
    display: flex;
    gap: 10px;
}

.lang-selector a {
    font-size: 12px;
    font-weight: 700;
    opacity: 0.5;
}

.lang-selector a.active {
    opacity: 1;
    text-decoration: underline;
}

/* 7. FOOTER */
footer {
    background-color: #111;
    padding: 60px 0;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col h4 {
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 16px;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.7;
}

.footer-col ul li a:hover {
    opacity: 1;
}

/* 8. SPECIFIC PAGE STYLES (Accesorios, Blog, etc) */
.page-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-title {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

@media screen and (max-width: 768px) {
    .page-title { font-size: 2.5rem; }
}
