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

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background-color: #e76e15;
    padding: 20px;
    text-align: center;
    width: 100%;
}

.logo {
    max-width: 150px;
}

.banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #d60e18;
}

.carousel {
    display: flex;
    animation: slide 12s infinite;
}

.slide {
    min-width: 100%;
    text-align: center;
    padding: 40px;
    color: #ffffff;
    font-size: 1.5em;
}

.radio-player {
    padding: 20px;
    background-color: #faf5fb;
    text-align: center;
    width: 100%;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links a {
    margin: 0 10px;
    display: inline-block;
}

.social-links img {
    width: 32px;
    height: 32px;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
}

@keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}
