@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

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

:root {
    --primary-purple: #563d7c;
    --secondary-purple: #7b4dae;
    --primary-green: #0d8b52;
    --secondary-green: #10a869;
    --bg-dark: #1a0f2e;
    --bg-gradient-start: #1a0f2e;
    --bg-gradient-end: #2d1f47;
    --text-light: #ffffff;
    --text-gray: #c5c5c5;
    --instagram: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --whatsapp: #25D366;
    --ifood: #EA1D2C;
    --maps: #4285F4;
    --google: #fbbc04;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1f47 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(86, 61, 124, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(13, 139, 82, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(123, 77, 174, 0.2) 0%, transparent 50%);
    animation: backgroundMove 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, -50px) rotate(5deg); }
}

.container {
    max-width: 500px;
    width: 90%;
    padding: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.logo-container {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(86, 61, 124, 0.6), 0 0 60px rgba(13, 139, 82, 0.3);
    transition: transform 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

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

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

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

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1.2s ease-out;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    animation: fadeIn 1.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInUp 1.6s ease-out;
}

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

.btn {
    position: relative;
    display: block;
    padding: 18px 30px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.btn i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.btn-glow {
    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 .btn-glow {
    left: 100%;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn:active {
    transform: translateY(-2px);
}

/* Instagram Button */
.btn-instagram {
    background: var(--instagram);
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
}

.btn-instagram:hover {
    box-shadow: 0 15px 40px rgba(225, 48, 108, 0.6);
}

/* WhatsApp Button */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* iFood Button */
.btn-ifood {
    background: linear-gradient(135deg, #EA1D2C 0%, #c71f2d 100%);
    box-shadow: 0 5px 20px rgba(234, 29, 44, 0.4);
}

.btn-ifood:hover {
    box-shadow: 0 15px 40px rgba(234, 29, 44, 0.6);
}

/* Maps Button */
.btn-maps {
    background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
    box-shadow: 0 5px 20px rgba(66, 133, 244, 0.4);
}

.btn-maps:hover {
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.6);
}

/* Google Review Button */
.btn-google {
    background: linear-gradient(135deg, #fbbc04 0%, #ea4335 50%, #34a853 100%);
    box-shadow: 0 5px 20px rgba(251, 188, 4, 0.4);
}

.btn-google:hover {
    box-shadow: 0 15px 40px rgba(251, 188, 4, 0.6);
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 15s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 18s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 14s; }
.particle:nth-child(5) { left: 60%; animation-delay: 3s; animation-duration: 16s; }
.particle:nth-child(6) { left: 70%; animation-delay: 5s; animation-duration: 13s; }
.particle:nth-child(7) { left: 80%; animation-delay: 2.5s; animation-duration: 17s; }
.particle:nth-child(8) { left: 90%; animation-delay: 4.5s; animation-duration: 19s; }

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .logo {
        width: 150px;
        height: 150px;
    }
    
    .btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .btn i {
        font-size: 1.3rem;
    }
}
