.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
}

.slogan h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.slogan p {
    font-size: 1.2rem;
    color: #cfd8dc;
    max-width: 600px;
    margin: 0 auto;
}

.images {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    flex-wrap: wrap;
}

.images img {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.images img:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

/* Diagonal Effect */
.images img:first-child {
    transform: rotate(-10deg);
}

.images img:last-child {
    transform: rotate(10deg);
}

/* Buttons */
.buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.btn-bot {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background-color: #5865F2; /* Discord Blue */
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.3s;
}

.btn-bot:hover {
    background-color: #4752C4; /* Darker Discord Blue */
    transform: scale(1.05);
}

.btn-bot:active {
    transform: scale(0.95);
}

/* Responsivo */
@media (max-width: 768px) {
    .slogan h1 {
        font-size: 1.8rem;
    }

    .slogan p {
        font-size: 1rem;
    }

    .images img {
        width: 200px;
        height: 200px;
    }

    /* .buttons {
        flex-direction: column;
    } */
}