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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.5)), url('fundo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 350px;
    animation: fadeInUp 0.8s ease-out;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 44px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 3/4;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.title {
    font-size: 22px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 34px;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

.reservas-btn {
    background: linear-gradient(135deg, #F57C00, #E65100);
    color: white;
    box-shadow: 0 8px 20px rgba(230, 81, 0, 0.3);
}

.reservas-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(230, 81, 0, 0.4);
}

.location-btn {
    background: linear-gradient(135deg, #4285F4, #1976D2);
    color: white;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(66, 133, 244, 0.4);
}

.btn i {
    font-size: 20px;
}

.footer {
    margin-top: 30px;
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

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

@media (max-width: 480px) {
    .container {
        max-width: 350px;
    }
    
    .card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .card {
        padding: 25px 15px;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}
