/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #000000;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Header e Logo */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

/* Menu Principal */
.menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    grid-auto-rows: minmax(120px, auto);
}

.menu-item {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border: 2px solid #6B7280;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 120px;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 114, 128, 0.3);
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
}

.menu-item i {
    font-size: 2rem;
    color: #D97706;
    transition: color 0.3s ease;
}

.menu-item:hover i {
    color: white;
}

.menu-item span {
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
}

/* Seções */
.section {
    background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    border: 2px solid #6B7280;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.section.hidden {
    display: none;
}

.section h2 {
    color: #D97706;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.section p {
    color: #ccc;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.6;
}

/* Delivery */
.delivery-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.delivery-btn {
    display: inline-block;
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
    max-width: 300px;
}

.delivery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 114, 128, 0.5);
}

.ifood-btn {
    display: inline-block;
    background: linear-gradient(135deg, #EA1D2C 0%, #C41E3A 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
    max-width: 300px;
}

.ifood-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(234, 29, 44, 0.5);
}

/* Spotify */
.spotify-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    max-width: 220px;
}

.spotify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(29, 185, 84, 0.4);
    background: linear-gradient(135deg, #1ed760 0%, #1DB954 100%);
}

.spotify-btn i {
    font-size: 1.5rem;
}

/* Localização */
.location-item {
    background: rgba(107, 114, 128, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.location-item h3 {
    color: #D97706;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.location-item p {
    color: #ccc;
    margin-bottom: 15px;
    text-align: left;
}

.location-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-content: center;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.waze-btn {
    background: #00D4AA;
    color: white;
}

.waze-btn:hover {
    background: #00B894;
    transform: translateY(-2px);
}

.maps-btn {
    background: #4285F4;
    color: white;
}

.maps-btn:hover {
    background: #3367D6;
    transform: translateY(-2px);
}


/* WhatsApp */
.whatsapp-item {
    background: rgba(37, 211, 102, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-item h3 {
    color: #25D366;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Formulário Trabalhe Conosco */
.jobs-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #D97706;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #555;
    border-radius: 10px;
    background: #333;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #6B7280;
    box-shadow: 0 0 10px rgba(107, 114, 128, 0.3);
}

.form-group input::placeholder {
    color: #999;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 114, 128, 0.5);
}

/* Botão Voltar */
.back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(107, 114, 128, 0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-btn:hover {
    background: rgba(107, 114, 128, 1);
    transform: scale(1.1);
}

.back-btn.hidden {
    display: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo-img {
        max-width: 250px;
    }
    
    .menu {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .menu-item {
        padding: 15px;
        min-height: 100px;
    }
    
    .menu-item i {
        font-size: 1.5rem;
    }
    
    .menu-item span {
        font-size: 1rem;
    }
    
    .section {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .location-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
        max-width: 200px;
    }
    
    .delivery-buttons {
        gap: 15px;
    }
    
    .delivery-btn, .ifood-btn {
        max-width: 280px;
        padding: 12px 25px;
        font-size: 1.1rem;
    }
    
    .back-btn {
        top: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .header {
        margin-bottom: 30px;
    }
    
    .logo-img {
        max-width: 200px;
    }
    
    .section {
        padding: 15px;
    }
    
    .location-item, .whatsapp-item {
        padding: 15px;
    }
}

/* Animações de entrada */
.section {
    animation: slideIn 0.5s ease-out;
}

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

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Melhorias de acessibilidade */
.menu-item:focus,
.nav-btn:focus,
.whatsapp-btn:focus,
.submit-btn:focus,
.back-btn:focus {
    outline: 3px solid #6B7280;
    outline-offset: 2px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
    border: 2px solid #6B7280;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease-out;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(107, 114, 128, 0.3);
}

.modal-header h3 {
    color: #D97706;
    font-size: 1.5rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.modal-close:hover {
    background: rgba(107, 114, 128, 0.3);
    color: #D97706;
}

.ifood-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ifood-option {
    background: rgba(107, 114, 128, 0.1);
    border: 1px solid rgba(107, 114, 128, 0.3);
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ifood-option:hover {
    background: rgba(107, 114, 128, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 114, 128, 0.3);
}

.store-info h4 {
    color: #D97706;
    font-size: 1.2rem;
    margin: 0 0 5px 0;
}

.store-info p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.store-arrow {
    color: #6B7280;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.ifood-option:hover .store-arrow {
    color: #D97706;
    transform: translateX(5px);
}

/* Animações do modal */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsividade do modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 20px;
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .ifood-option {
        padding: 15px;
    }
    
    .store-info h4 {
        font-size: 1.1rem;
    }
    
    .store-info p {
        font-size: 0.85rem;
    }
}

/* Netlify reCAPTCHA */
.form-group div[data-netlify-recaptcha] {
    margin: 15px 0;
    display: flex;
    justify-content: center;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
