:root {
    --primary: #7C3AED;
    --primary-dark: #5B21B6;
    --secondary: #4F46E5;
    --accent: #F59E0B;
    --light: #F9FAFB;
    --dark: #111827;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--gray-50);
    color: var(--gray-800);
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('/images/banners/bannerMain.jpg');
    background-size: cover;
    background-position: center;
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 1200px;
}

.hero-logo {
    max-width: 220px;
    margin: 0 auto 2rem;
    animation: floatAnimation 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff, #f0f0f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(124, 58, 237, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(124, 58, 237, 0.3);
}

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

/* Decorative elements */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    right: -50px;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(124, 58, 237, 0.15);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 2rem; /* Reducir padding vertical para compensar elementos más grandes */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    height: 50px; /* Aumentado de 40px a 50px */
    transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-links {
    display: flex;
    gap: 2.5rem; /* Aumentado el espacio entre enlaces */
}

.navbar-link {
    color: var(--gray-700);
    font-weight: 700; /* Cambiado de 600 a 700 para más énfasis */
    text-transform: uppercase;
    font-size: 1.05rem; /* Aumentado de 0.9rem a 1.05rem */
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.navbar-link:hover {
    color: var(--primary);
}

/* Efecto de subrayado al hover */
.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.navbar-link:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 35px;
    height: 35px;
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background-color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    color: var(--gray-800);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.feature-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -40px auto 1rem;
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
}

.feature-icon {
    font-size: 2rem;
    color: white;
}

.feature-content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.feature-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.feature-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.feature-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-link:hover i {
    transform: translateX(3px);
}

/* App Section */
.app-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    position: relative;
    overflow: hidden;
}

.app-phone {
    max-width: 300px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.app-features {
    margin-left: 2rem;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.app-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.app-feature-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.app-feature-content p {
    color: var(--gray-600);
}

.qr-code {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
}

.app-stores {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.app-store-btn {
    max-width: 150px;
    transition: all 0.3s ease;
}

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

/* News Section */
.news-section {
    padding: 6rem 2rem;
    background-color: white;
}

.news-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.news-img-container {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.news-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 1.5rem;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.news-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--primary-dark);
}

.news-link i {
    margin-left: 0.5rem;
}

/* Restaurants Section */
.restaurants-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    position: relative;
    overflow: hidden;
}

.restaurants-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg width="20" height="20" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h20v20H0z" fill="%23702082" fill-opacity="0.03"/%3E%3Cpath d="M10 10h10v10H10z" fill="%23702082" fill-opacity="0.03"/%3E%3C/svg%3E');
    opacity: 0.6;
    z-index: 0;
}

.restaurants-section > .container {
    position: relative;
    z-index: 1;
}

.restaurant-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;              
    flex-direction: column;     
}

.restaurant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.restaurant-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 1.5rem;
    color: white;
    flex-shrink: 0;             
}

.restaurant-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.restaurant-location {
    font-size: 1rem;
    opacity: 0.9;
}

.restaurant-content {
    padding: 1.5rem;
    display: flex;              
    flex-direction: column;     
    flex-grow: 1;               
}

.restaurant-info {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.restaurant-info i {
    color: var(--primary);
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.restaurant-maps {
    display: flex;
    gap: 1rem;
    margin-top: auto;           
    justify-content: space-between;
    padding-top: 1rem;          
}

.map-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.google-maps-btn {
    background-color: #ea4335;
    color: white;
}

.google-maps-btn:hover {
    background-color: #d33426;
}

.waze-btn {
    background-color: #33ccff;
    color: white;
}

.waze-btn:hover {
    background-color: #28a8d1;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background-color: white;
}

.contact-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 2rem;
    color: white;
    text-align: center;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-content {
    padding: 2rem;
    text-align: center;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info i {
    color: var(--primary);
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    margin-top: 2rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 1.5rem;
    position: relative;
    color: white;
    border-radius: 16px 16px 0 0;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

.modal-body {
    padding: 2rem;
}

.delivery-btn {
    display: block;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.delivery-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.delivery-btn img {
    width: 100%;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--gray-800);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--gray-400);
    max-width: 400px;
    margin-bottom: 2rem;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    margin-bottom: 0.75rem;
}

.footer-link a {
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.footer-link a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--gray-700);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 {
    transition-delay: 0.2s;
}

.fade-in-delay-2 {
    transition-delay: 0.4s;
}

.fade-in-delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .navbar-links {
        display: none;
    }
    
    .navbar {
        padding: 0.75rem 1.5rem;
    }
    
    .navbar-logo {
        height: 45px; /* Ligeramente más pequeño en pantallas medianas */
    }

    .navbar-mobile {
        display: block;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .app-features {
        margin-left: 0;
        margin-top: 3rem;
    }
    
    .feature-card {
        margin-bottom: 3rem;
    }
    
    .social-links {
        display: none;
    }

    .navbar-logo {
        height: 40px; /* Volver al tamaño original en móviles */
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn-primary {
        width: 100%;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-top: -30px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .section-title::after {
        width: 70%;
        left: 15%;
    }
}

/* Sección de destacados del menú */
.menu-highlights-section {
    padding: 6rem 2rem;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.menu-carousel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .menu-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-item {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.menu-item-img-container {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.menu-item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-img {
    transform: scale(1.05);
}

.menu-item-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.menu-item-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.menu-item-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.order-now-btn {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.order-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(124, 58, 237, 0.3);
}

.order-now-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.order-now-btn:hover i {
    transform: translateX(3px);
}

/* Sección Bellivery */
.bellivery-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    position: relative;
    overflow: hidden;
}

.bellivery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%237c3aed" fill-opacity="0.05" d="M0,288L48,272C96,256,192,224,288,213.3C384,203,480,213,576,218.7C672,224,768,224,864,192C960,160,1056,96,1152,96C1248,96,1344,160,1392,192L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
    background-position: center bottom;
    opacity: 0.8;
    z-index: 0;
}

.bellivery-section > div {
    position: relative;
    z-index: 1;
}

.bellivery-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 768px) {
    .bellivery-content {
        flex-direction: row;
        align-items: center;
    }
    
    .bellivery-text {
        width: 55%;
    }
    
    .bellivery-image-container {
        width: 45%;
    }
}

.bellivery-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.bellivery-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.bellivery-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bellivery-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bellivery-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.bellivery-feature-text h4 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.bellivery-feature-text p {
    color: var(--gray-600);
}

.bellivery-platforms {
    margin-top: 2rem;
}

.bellivery-platforms-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.bellivery-platforms-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.bellivery-platform-btn {
    max-width: 180px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bellivery-platform-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.bellivery-platform-btn img {
    width: 100%;
    display: block;
}

.bellivery-image-container {
    position: relative;
}

.bellivery-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: block;
}

.bellivery-promo {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bellivery-promo-content {
    text-align: center;
    transform: rotate(-15deg);
    padding: 1rem;
}

.bellivery-promo-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bellivery-promo-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.bellivery-promo-code {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .bellivery-promo {
        width: 150px;
        height: 150px;
        bottom: -10px;
        right: -10px;
    }
    
    .bellivery-promo-title {
        font-size: 1rem;
    }
    
    .bellivery-promo-text {
        font-size: 0.8rem;
    }
    
    .bellivery-promo-code {
        font-size: 1.2rem;
    }
}

/* Estilos para las nuevas secciones */
/* Sección Taco App Promo rediseñada */
.app-promo-section {
    background-color: #702082;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    color: white;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.app-promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,128C96,160,192,224,288,224C384,224,480,160,576,144C672,128,768,160,864,186.7C960,213,1056,235,1152,224C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.app-promo-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.app-promo-subtitle {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* QR Code grande y mejorado */
.qr-container {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    margin: 0 auto 2rem;
    max-width: fit-content;
    position: relative;
    transition: transform 0.3s ease;
}

.qr-container:hover {
    transform: scale(1.05);
}

.qr-container img {
    width: 300px;
    height: 300px;
    display: block;
}

.qr-container::after {
    content: 'Escanéame';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #702082;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.875rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.qr-code-large {
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
    border: 4px solid white;
    border-radius: 12px;
    background-color: white;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Ventajas de la App rediseñadas */
.advantage-card {
    border-left: 5px solid #702082;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.advantage-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.advantage-icon {
    background-color: #702082;
    color: white;
    border-radius: 9999px;
    padding: 0.75rem;
    margin-right: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
}

.advantage-icon i {
    font-size: 1.5rem;
}

.shadow-text {
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

/* Reclutamiento Section */
.reclutamiento-section {
    background-color: #f8f9fa;
    background-image: linear-gradient(135deg, #f8f9fa 0%, #ecedf1 100%);
    position: relative;
    overflow: hidden;
}

.reclutamiento-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Cpath d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z" fill="%237c3aed" fill-opacity="0.05" fill-rule="evenodd"/%3E%3C/svg%3E');
    opacity: 0.5;
    z-index: 0;
}

.reclutamiento-section > div {
    position: relative;
    z-index: 1;
}

/* Efecto de escala ligeramente mayor */
.transform.hover\:scale-102:hover {
    transform: scale(1.02);
}

.reclutamiento-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.reclutamiento-card:hover {
    transform: translateY(-5px);
}

.reclutamiento-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.reclutamiento-content {
    padding: 1.5rem;
}

.reclutamiento-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #702082;
}

.reclutamiento-description {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

/* Carousel Section - Ancho completo con proporciones mejoradas */
.carousel-section {
    margin-top: 60px; /* Espacio para la navbar */
    width: 100%;
    position: relative;
    background-color: #000;
}

.carousel-container {
    width: 100%;
    position: relative;
}

.carousel-slide {
    display: none;
    width: 100%;
    position: relative;
}

.carousel-slide.active {
    display: block;
}

.carousel-image {
    width: 100%;
    position: relative;
    /* No establecemos altura fija, dejamos que la imagen determine la altura */
}

.carousel-image img {
    width: 100%; /* Ancho completo */
    display: block;
    height: auto; /* Mantiene proporción original */
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* Media query para pantallas más grandes (escritorio) */
@media (min-width: 1025px) {
    .carousel-image img {
        max-height: 85vh; /* Altura máxima en pantallas grandes */
        margin: 0 auto; /* Centrar horizontalmente */
    }
}

/* Media query para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .carousel-image img {
        max-height: 80vh;
    }
}

/* Responsive para móviles - mantener comportamiento actual */
@media (max-width: 768px) {
    .carousel-image img {
        max-height: none; /* Sin restricción en móviles, ya que funciona correctamente */
    }
    
    .app-promo-title {
        font-size: 2rem;
    }
    
    .app-promo-subtitle {
        font-size: 1.5rem;
    }
    
    .qr-container img {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .carousel-control {
        width: 40px;
        height: 40px;
    }
    
    .advantage-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .advantage-icon i {
        font-size: 1.25rem;
    }
}