/* Super Buena FM */
/* Desarrollada por Ariel Flomenbaum - SkyNet® Informática */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/*Sombra Logo */
.sombra {
  filter: drop-shadow(10px 10px 10px black);
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 20px;
}

.main-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* Tarjeta con efecto de agrandado al pasar el mouse */
.radio-card {
    width: 390px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Transición suave para el efecto de agrandado */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

/* Efecto Hover: Se hace más grande */
.radio-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.logo-box {
    margin-bottom: 20px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.player-box h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.custom-audio {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-social {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.btn-social:hover {
    transform: translateY(-3px);
    color: #fff;
}

.fb:hover { background: #1877f2; }
.ig:hover { background: #e4405f; }
.x:hover { background: #000000; }
.tiktok:hover { background: #000000; }
.wa:hover { background: #25d366; }
.youtube:hover { background: #ff0000; }

/* Footer */
.main-footer {
    width: 100%;
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0);
}

.main-footer p {
    color: rgb(255, 255, 255);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .main-grid {
        flex-direction: column;
        align-items: center;
    }
}