:root {
    --primary-bg: #2E125B;
    --surface-bg: #3F1E7A;
    --surface-glass: rgba(255, 255, 255, 0.08);
    --accent-yellow: #FFD700;
    --accent-red: #E63946;
    --text-white: #FFFFFF;
    --text-muted: #E0E0E0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    --border-glass: 1px solid rgba(255, 255, 255, 0.1);
    --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

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

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

h1, h2, h3, .logo-text {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

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

.highlight {
    color: var(--accent-yellow);
}

.accent {
    color: var(--accent-red);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(46, 20, 91, 0.98);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Instagram Stories Section */
.stories-section {
    position: relative;
    padding-top: 40px; 
    padding-bottom: 20px;
    background: var(--primary-bg);
    z-index: 10;
}

.overflow-wrapper {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.overflow-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.stories-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    min-width: max-content;
    padding: 10px 0;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    max-width: 80px;
}

.story-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.story-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-bg);
}

.ig-logo-circle i {
    font-size: 2rem;
    color: #fff;
}

.story-item span {
    font-size: 0.75rem;
    color: var(--text-white);
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.story-item:hover .story-circle {
    transform: scale(1.1) rotate(5deg);
}

.story-item:hover span {
    color: var(--accent-yellow);
}

@media (max-width: 768px) {
    .stories-container {
        justify-content: flex-start;
        gap: 15px;
    }
    
    .stories-section {
        padding-top: 20px;
    }

    .story-circle {
        width: 65px;
        height: 65px;
    }
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    width: 60px;
    height: 60px;
    background: var(--surface-glass);
    border-radius: 50%;
    border: var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.logo-circle:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--accent-yellow);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.logo-circle img {
    width: 110%; /* Slightly larger to hide image corners */
    height: 110%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    position: relative;
}

.logo-text span {
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.5px;
    color: #fff;
    white-space: nowrap;
}

.logo-text span.highlight-text {
    color: var(--accent-yellow);
}

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

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Buttons */
.btn-cta, .btn-primary, .btn-secondary, .order-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--accent-yellow);
}

.btn-cta, .btn-primary {
    background: linear-gradient(45deg, var(--accent-yellow), #FFA000);
    color: #000;
}

.btn-cta:hover, .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
    background: linear-gradient(45deg, #FFD54F, var(--accent-yellow));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    backdrop-filter: blur(10px);
    border: var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(46, 20, 91, 0.9), rgba(46, 20, 91, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 15px;
    opacity: 0;
}

/* Animations */
.fade-in {
    animation: fadeInUp 1s forwards;
}

.fade-in-delay {
    animation: fadeInUp 1s forwards 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features */
.features {
    padding: 60px 0;
    background: var(--surface-bg);
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--surface-glass);
    border-radius: 24px;
    border: var(--border-glass);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-yellow);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

/* Menu/Combos */
.menu-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background: var(--surface-bg);
    position: relative;
    overflow: hidden;
}

.brands-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    font-weight: 800;
}

.brands-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.brand-item {
    background: var(--surface-glass);
    padding: 15px 30px;
    border-radius: 12px;
    border: var(--border-glass);
    transition: var(--transition);
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.brand-item span {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-white);
    opacity: 0.6;
    transition: var(--transition);
}

.brand-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.brand-item:hover span {
    opacity: 1;
    color: var(--accent-yellow);
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: var(--primary-bg);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--surface-glass);
    border: var(--border-glass);
    color: var(--text-white);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-yellow);
    color: #000;
    border-color: var(--accent-yellow);
    transform: scale(1.05);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    transition: all 0.5s ease;
}

.product-card {
    background: var(--surface-bg);
    border-radius: 20px;
    border: var(--border-glass);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-yellow);
    box-shadow: var(--shadow);
}

.product-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.75rem;
    color: var(--accent-yellow);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.availability {
    font-size: 0.85rem;
    color: #4ade80; /* Green */
    font-weight: 600;
}

@media (max-width: 768px) {
    .brands-grid {
        gap: 15px;
    }
    .brand-item {
        padding: 15px 25px;
    }
    .brand-item span {
        font-size: 1.2rem;
    }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-card {
    background: var(--surface-bg);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: var(--border-glass);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-red);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    height: 50px;
    overflow: hidden;
}

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

.price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-yellow);
}

.order-btn {
    background: var(--accent-yellow);
    padding: 8px 20px;
    border-radius: 8px;
    text-transform: none;
}

/* Info Section */
.info-section {
    padding: 100px 0;
    background: var(--surface-bg);
}

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

.info-text h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--surface-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.info-item h4 {
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
}

.info-map {
    height: 450px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    overflow: hidden; /* Importante para redondear el mapa */
    border: var(--border-glass);
    box-shadow: var(--shadow);
}

.info-map iframe {
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%); /* Tema oscuro para el mapa */
}

.map-placeholder {
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--accent-red);
}

.btn-outline {
    margin-top: 20px;
    padding: 10px 20px;
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.social-links, .social-links-contact {
    display: flex;
    gap: 20px;
}

.social-links-contact {
    margin-top: 30px;
}

.social-links a, .social-links-contact a {
    color: var(--text-white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover, .social-links-contact a:hover {
    color: var(--accent-yellow);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Promo Banner */
.promo-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #FF4500 0%, #FF8C00 100%);
    position: relative;
    overflow: hidden;
}

.promo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.promo-content {
    flex: 1;
    z-index: 2;
}

.promo-content h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.promo-content p {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.promo-img {
    flex: 1;
    text-align: right;
    z-index: 2;
}

.promo-img img {
    max-width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--primary-bg);
}

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

.testimonial-card {
    background: var(--surface-bg);
    padding: 40px;
    border-radius: 24px;
    border: var(--border-glass);
    position: relative;
}

.testimonial-card i.quote-icon {
    font-size: 2rem;
    color: var(--accent-yellow);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-yellow);
}

.fadeInUp {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fadeInUp.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-bg);
    z-index: 2000;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.menu-close {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: auto;
}

.mobile-nav-links li {
    margin-bottom: 25px;
}

.mobile-nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.mobile-menu-footer {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.w-100 { width: 100%; text-align: center; }

/* Responsive */
@media (max-width: 968px) {
    .container { padding: 0 30px; }
    .hero h1 { font-size: 3.5rem; }
    .info-grid { grid-template-columns: 1fr; }
    .features .container { grid-template-columns: 1fr; }
    .nav-cta { display: none; }
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .promo-container { flex-direction: column; text-align: center; }
    .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .container { padding: 0 20px; }
    .hero { height: auto; padding: 120px 0 60px; }
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .btn-primary, .hero-btns .btn-secondary { width: 100%; text-align: center; }
    
    .section-header h2 { font-size: 2.2rem; }
    
    .promo-content h2 { font-size: 2rem; }
    .promo-content p { font-size: 1.1rem; }
    
    .feature-card { padding: 30px 20px; }
    
    .footer-content { flex-direction: column; gap: 30px; text-align: center; }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}
