* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #061b11, #0b5e2a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 30px;
    animation: aparecer 1.2s ease;
}

.logo {
    font-size: 80px;
    animation: bola 3s infinite linear;
}

h1 {
    font-size: 38px;
    margin: 20px 0 10px;
}

.subtitulo {
    font-size: 18px;
    opacity: .9;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background: #ffd700;
    color: #111;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: .3s;
}

.btn:hover {
    transform: scale(1.05);
    background: white;
}

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 20px #0005;
}

@keyframes bola {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes aparecer {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media(max-width:600px){

    h1 {
        font-size: 30px;
    }

    .logo {
        font-size: 60px;
    }

    .btn {
        width: 100%;
    }

}