body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff; /* White background color */
    color: #333;
    font-family: Roboto, sans-serif;
    height: 100vh;
    background-image: url('bg-player.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content-box{
    position: relative;
    width: 100%;
    background-color: rgba(255, 255, 255, .9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, .5);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo {
    width: 250px;
    margin: 0 0 30px 0;
}

.publicidade {
    width: 285px;

}


audio {
    outline: none;
    width: 100%;
    max-width: 400px;
    border-radius: 50px;
    border: 2px solid #fff;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    margin: 30px auto;
    padding: 10px 20px;
    background-color: #00c307;
    color: white; /* Text color */
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
}

.whatsapp-button ion-icon {
    margin-right: 10px; /* Space between icon and text */
    color: white; /* WhatsApp icon color */
    font-size: 24px; /* Increases WhatsApp icon size by 60% */

}

.whatsapp-button:hover {
    background-color: #009b06;
    color: #fff;
}

.icon-radio img{
    margin-bottom: 30px;
    max-width: 273px;
}

/* Styles for social media and sharing */
.social-share-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 30px auto; /* Space between social media and player */
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons ion-icon {
    color: #555; /* Icon color */
    margin: 0 5px !important;
}

.social-icons ion-icon:hover {
    color: #000; /* Color on hover */
}

.like-container {
    display: flex;
    align-items: center;
}

.icon-size {
    font-size: 20px; /* Icon size reduced by 50% */
    color: #555; /* Initial icon color */
    cursor: pointer; /* Change cursor on hover */
    margin-left: 10px; /* Space between icons */
}

/* Changes for like icon */
.liked {
    color: red; /* Like icon color when clicked */
}

/* Styles for "About the Radio" section */
.sobre-container {
    max-width: 600px; /* Limits maximum container width */
    width: 100%; /* Occupies full available width up to maximum */
    text-align: left; /* Aligns text left within container */
    margin: 20px auto; /* Top and bottom spacing and horizontal centering */
}

.sobre-container a{
    color: #000;
    text-decoration: none;
}

.sobre-titulo {
    font-size: 36px; /* Increases title size */
    font-weight: 800;
    margin-bottom: 15px; /* Space between title and text */
}

.sobre-texto {
    font-size: 16px; /* Descriptive text size */
    line-height: 1.5; /* Increases line height for better readability */
    margin-bottom: 15px !important;
}

/* Styles for headers */
h1 {
    font-size: 2.5em; /* h1 size */
    color: #333; /* h1 text color */
    margin: 20px 0; /* Top and bottom margin */
}

h2 {
    font-size: 2em; /* h2 size */
    color: #555; /* h2 text color */
    margin: 15px 0; /* Top and bottom margin */
}

h3 {
    font-size: 1.75em; /* h3 size */
    color: #777; /* h3 text color */
    margin: 10px 0; /* Top and bottom margin */
}

p{
    margin-bottom: 5px !important;
    color: #333;
}

p, p a, a{
    color: #333;
}

/* Red dot style */
.dot {
    height: 10px; /* Dot size */
    width: 10px; /* Dot size */
    background-color: red; /* Dot color */
    border-radius: 50%; /* Makes the dot round */
    margin-right: 5px; /* Spacing between dot and "Live" word */
}

/* Adjustments for radio section */
.radio-info {
    display: flex;
    flex-direction: column; /* Organizes elements in column */
    align-items: flex-start; /* Aligns left */
    text-align: left; /* Left-aligned text */
}

.live-dot {
    display: flex;
    align-items: center; /* Vertically aligns dot and "Live" text */
    margin-bottom: 5px; /* Spacing between 'Live' and 'Your Radio Name' */
}

.radio-info h1 {
    font-size: 1.25em; /* Reduced size by 50% (from 2.5em to 1.25em) */
    font-weight: 700;
    color: #333; /* h1 text color */
    margin: 5px 0; /* Spacing between title and frequency */
}

.radio-info h2 {
    font-size: 1em; /* h2 size */
    color: #888; /* Gray color for 106.7 MHz */
    margin: 0; /* Removes margins for perfect alignment */
}

.logo-maxi{
    display: flex;
    margin-top: 30px;
    align-items: center;
}

.logo-maxi p{
    color: #fff;
}

.logo-maxi p .logomaxi {
    width: auto; /* Maintains image proportion */
    max-width: 150px; /* Limits maximum width to 150px */
    filter: brightness(0) invert(1);
}


/*RESPONSIVE*/
@media(max-width: 768px){
    body, .row.d-flex.align-items-center.h-100{
        display: block !important;
        height: unset !important;
    }
    body{
        padding: 60px 0;
    }
    .sobre-container{
        margin: 30px auto 20px auto;
        /*text-align: center;*/
    }
    .logo-maxi{
        justify-content: center;
    }
    .icon-radio img{
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .publicidade {
    width: 285px;
   margin-bottom: 40px;

}

}