* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 150vh;
}
:root {
    --color-main-bg: #e7edfb;
    --color-blue-dark: #2159c7;
    --color-blue-light: #5bc1e9;
    --color-radio-card: #6f5ed9;
    --color-radio-bg: #8073eb;
    --color-connected: #32cd32;
    --color-footer-bg-start: #e7edfb;
    --color-footer-bg-end: #e7edfb;
    --color-text-main: #5bc1e9;
    --color-text-light: #5bc1e9;
    --color-highlight-1: #00e5ff;
    --color-highlight-2: #ff00ff;
    --color-highlight-3: #00fff7;
    --color-shadow: #5bc2e9;
    --border-color: #00e8f8;
    --border-radius: 10px;
    --shadow-main: 0 4px 8px rgba(0, 0, 0, 0.1);
    --font-family-sans: Arial, sans-serif;
    --spacing-small: 10px;
    --spacing-medium: 20px;
    --spacing-large: 40px;
}
.main-header {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    overflow: hidden;
    transition: transform .25s;
    text-align: center;
    gap: 20px;
    height: 100%;
    max-height: 1200px;
}
.main-header:hover {
    transform: scale(1.05);
}
.main-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/banner1.webp') center/cover no-repeat;
    z-index: -2;
}
.main-header::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
}
.header-content {
    display: flex;
    align-items: center; 
    justify-content: space-around; 
    gap: 5px; 
    width: 100%;
    max-width: 1200px;
    padding-inline: 10px; 
    flex-wrap: nowrap; 
    margin: 0 auto;
    flex-direction: row; 
}
.radio-container,
.logo-container,
.redes {
    display: flex;
    justify-content: center;
    width: 1200px;
    align-items: center;
    flex-shrink: 1; 
    flex-basis: auto; 
}
.radio-img {
    width: 80px; 
    max-height: 60px;
    height: auto;
}
.banner-img {
    width: 150px; 
    max-height: 60px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 0;
    transition: transform .15s ease-out;
}
.logo-container:hover .banner-img {
    transform: scale(1.05);
}
@media (hover: none) {
    .logo-container {
        perspective: none;
    }
    .banner-img {
        transform: none !important;
    }
}
.redes {
    flex-direction: column; 
    margin-top: 0;
    gap: 2px; 
}
.siguenos {
    margin-bottom: 2px; 
    font-size: 0.7rem; 
    color: #000;
    text-align: center; 
}
.social-icons {
    display: flex;
    gap: 5px; 
    justify-content: center; 
    flex-wrap: nowrap; 
}
.icono-red {
    width: 20px; 
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}
.icono-red:hover {
    transform: scale(1.15);
}
@media (min-width: 768px) {
    .header-content {
        justify-content: space-between; 
        gap: 24px; 
        padding-inline: clamp(16px, 4vw, 48px);
        flex-wrap: nowrap; 
    }
    .radio-container,
    .logo-container,
    .redes {
        flex: 1; 
        flex-shrink: 1; 
        flex-basis: auto;
        justify-content: center;
        align-items: center;
    }
    .radio-container {
        justify-content: flex-start; 
    }

    .logo-container {
        justify-content: center; 
    }
    .redes {
        flex-direction: column; 
        align-items: center; 
        justify-content: flex-end;
        gap: 8px; 
    }
    .siguenos {
        text-align: center; 
        margin-bottom: 5px;
        font-size: 1rem; 
    }
    .social-icons {
        justify-content: flex-end; 
        gap: 12px; 
    }
    .radio-img {
        width: 150px;
        max-height: 100px;
    }
    .banner-img {
        width: 250px;
        max-height: 100px;
    }
    .icono-red {
        width: 30px;
    }
}
@media (min-width: 1200px) {
    .radio-img {
        width: 200px; 
        max-height: 150px;
    }
    .banner-img {
        width: 400px;
        max-height: 150px;
    }
    .icono-red {
        width: 40px; 
    }
    .header-content {
        gap: 40px; 
    }
    .siguenos {
        font-size: 1.2rem; 
    }
}
.header2 {
    background: linear-gradient(90deg, #3a6cf564, #3a6cf564);
    padding: 8px 16px;
    color: #000000;
    border-radius: 0 0 10px 10px;
}
.linea-divisoria {
    width: 100%; 
    height: 15px; 
    background: linear-gradient(90deg, transparent, var(--color-blue-light), transparent);    
    border: none; 
    margin-top: -1px; 
    margin-bottom: 0px; 
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); 
    z-index: 0; 
    position: relative; 
}