
:root {
    --black: #000000;
    --dark-grey: #0a0a0a;
    --yellow: #fcc419;
    --red: #e03131;
    --blue: #1971c2;
    --white: #ffffff;
}

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

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.yellow { color: var(--yellow); }
.blue { color: #60a5fa; }
.italic { font-style: italic; }

/* NAVBAR */
header {
    background-color: rgba(0,0,0,0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--red);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--yellow);
}

/* HERO */
.hero {
    padding: 140px 0 60px;
    background: linear-gradient(to bottom, #000, #111);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.tagline {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.btn i { font-size: 1.8rem; }
.btn-text strong { display: block; font-size: 0.9rem; }
.btn-text span { font-size: 0.7rem; font-weight: normal; }

.btn-red { background-color: var(--red); }
.btn-blue { background-color: var(--blue); }
.btn-yellow { background-color: var(--yellow); color: black; }

.btn:hover { transform: scale(1.05); }

.img-placeholder {
    background: #222;
    border: 2px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.main-store { height: 350px; }

/* FESTA */
.festa {
    padding: 80px 0;
    background: radial-gradient(circle at center, #021B35 0%, #000 100%);
    position: relative;
}

.festa-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.festa-text h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 40px;
}

.festa-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.feature span {
    font-size: 0.8rem;
    font-weight: 700;
}

.product-visual { height: 450px; border: none; background: transparent; color: #555;}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* SERVICES */
.services { padding: 80px 0; text-align: center;}
.section-title { font-size: 2rem; font-weight: 900; margin-bottom: 50px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--dark-grey);
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
}

.card-img {
    height: 200px;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    color: #444;
}

.card-body { padding: 25px; }
.card-body h3 { color: #60a5fa; margin-bottom: 10px; font-size: 1.1rem;}
.card-body p { font-size: 0.9rem; color: #aaa; margin-bottom: 20px;}

.btn-outline {
    display: block;
    text-align: center;
    border: 1px solid #60a5fa;
    color: #60a5fa;
    text-decoration: none;
    padding: 8px;
    border-radius: 5px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline:hover { background: #60a5fa; color: white; }

/* CONVENIENCIA */
.conveniencia { padding: 80px 0; background: #080808; }
.conv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;}
.conv-content h3 { font-size: 1.8rem; margin: 10px 0 30px; font-weight: 900;}

.conv-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 40px;
    text-align: center;
}

.c-icon i { font-size: 1.8rem; color: var(--yellow); display: block; margin-bottom: 10px;}
.c-icon span { font-size: 0.65rem; font-weight: 700;}

.store-inside { height: 300px; }

/* UNIDADES */
.units { padding: 80px 0; text-align: center;}
.units-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.unit-box {
    border: 1px solid #333;
    padding: 20px;
    border-radius: 8px;
    width: 220px;
    text-align: left;
}

.unit-box strong { font-size: 0.8rem; margin-bottom: 8px; display: block;}
.unit-box p { font-size: 0.75rem; color: #888;}

/* FOOTER */
footer { background: #050505; padding: 60px 0 30px; border-top: 1px solid #222;}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; padding-bottom: 40px; border-bottom: 1px solid #1a1a1a;}

.footer-col h3 { font-size: 1rem; margin-bottom: 20px;}
.map-box { height: 150px; background: #eee; border-radius: 8px; color: black; display: flex; justify-content: center; align-items: center;}

.perks ul { list-style: none; }
.perks li { font-size: 0.8rem; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-weight: 700;}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-logo { font-weight: 900; }
.f-contact { text-align: center; }
.f-contact span { font-size: 0.7rem; color: #555; }
.f-contact p { font-weight: 700; margin: 5px 0; }
.f-contact small { font-size: 0.6rem; color: #444; }

.f-social span { font-size: 0.7rem; color: #555; display: block; margin-bottom: 10px; text-align: right;}
.s-icons { text-align: right;}
.s-icons a { font-size: 1.5rem; color: white; margin-left: 15px;}

@media (max-width: 768px) {
    .hero-grid, .festa-grid, .services-grid, .conv-grid, .footer-top {
        grid-template-columns: 1fr;
    }
    .nav-links { display: none; }
    .hero-text h1 { font-size: 2rem; }
}
