.hero {
    background: url('Fondo/Flag.png') center center / cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeIn 2s ease-in-out;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.hero-logo {
    width: 300px;
    margin-bottom: 1px;
}

.hero-title {
    font-size: 48px;
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 20px;
    font-family: 'Bebas Neue', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn.donate {
    background: white;
    color: #340af0;
    border: 2px solid #f4f6f8;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 20px;
}

.hero-btn.join {
    background: white;
    color: #f82121;
    border: 2px solid #f4f5f7;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 20px;
}

.hero-btn:hover {
    opacity: 0.9;
}

.hero-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-btn.donate:hover {
    background: #0307f1;
    color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.hero-btn.donate:active {
    background: white;
    color: #ffffff;
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-btn.join:hover {
    background: #f81629;
    color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.hero-btn.join:active {
    background: white;
    color: #ffffff;
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}