:root {
    --primary-red: #D32F2F;
    --primary-red-hover: #b71c1c;
    --accent-yellow: #FBC02D;
    --accent-yellow-light: #FFF9C4;
    --dark-bg: #121212;
    --light-bg: #FAFAFA;
    --cream-bg: #FFF8E7;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --text-gray: #666666;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(251, 192, 45, 0.4);
}

.btn-primary:hover {
    background-color: #f9a825;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 192, 45, 0.5);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: var(--transition);
}

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

.logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('hero-bg.png') center/cover no-repeat;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

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

.badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.delivery-badges p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.delivery-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Combos Section */
.combos-section {
    background-color: var(--cream-bg);
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.combo-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.combo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(211, 47, 47, 0.1);
}

.combo-card.popular {
    border: 2px solid var(--accent-yellow);
    transform: scale(1.05);
    z-index: 2;
}

.combo-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.combo-card-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(251, 192, 45, 0.3);
}

.combo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    border-bottom: 2px dashed #eee;
    padding-bottom: 1rem;
}

.combo-header h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.combo-price {
    font-size: 1.5rem;
    font-weight: 800;
}

.combo-units {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.combo-items {
    list-style: none;
}

.combo-items li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
}

.combo-items li i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.combos-footer {
    text-align: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.combos-footer p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.location-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Locations Section */
.locations-section {
    background-color: #fff;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.location-card {
    background-color: var(--accent-yellow-light);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    transition: var(--transition);
    border: 4px solid transparent;
}

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

.loc-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.location-card h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.location-card p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.location-card p i {
    color: var(--primary-red);
    margin-right: 0.5rem;
    width: 20px;
}

.horario-box {
    background-color: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.horario-box h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.8rem;
}

.horario-list {
    list-style: none;
}

.horario-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-weight: 500;
}

.horario-list li:not(:last-child) {
    border-bottom: 1px dashed #eee;
}

.btn-map {
    color: var(--primary-red);
    border-color: var(--primary-red);
    background-color: white;
}

.btn-map:hover {
    background-color: var(--primary-red);
    color: white;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-brand h2 {
    font-size: 2rem;
    color: var(--primary-red);
}

.footer-brand p {
    opacity: 0.7;
    margin-bottom: 2rem;
}

.footer-social a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent-yellow);
}

.copyright {
    margin-top: 3rem;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* Floating Action Button */
.fab-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.fab-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn {
        text-align: center;
        width: 100%;
    }
    .location-buttons {
        flex-direction: column;
    }
    .location-buttons .btn {
        width: 100%;
    }
    .combo-card.popular {
        transform: none;
    }
    .combo-card.popular:hover {
        transform: translateY(-5px);
    }
    .locations-grid {
        grid-template-columns: 1fr;
    }
}
