#fw-section-custom-html-344bf71f-9b53-4a46-a8f0-8b1bc49bce4f {

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}

.platform-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
}

body {
    background: transparent;
    color: #ffffff;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Sección de plataformas */
.platforms-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    position: relative;
}

.section-container {
    width: 100%;
    padding: 80px 20px;
    position: relative;
    background: transparent;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.platforms-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Tarjetas de plataformas */
.platform-card {
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 10px;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.platform-icon {
    font-size: 60px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.platform-name {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-icon,
.platform-card:hover .platform-name {
    transform: scale(1.1);
}

/* Estilos específicos por plataforma */
.spotify {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.3), rgba(30, 215, 96, 0.1));
}

.spotify:hover {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.4), rgba(30, 215, 96, 0.2));
}

.spotify .platform-icon {
    color: #1DB954;
}

.beatport {
    background: linear-gradient(135deg, rgba(1, 247, 145, 0.3), rgba(0, 226, 132, 0.1));
}

.beatport:hover {
    background: linear-gradient(135deg, rgba(1, 247, 145, 0.4), rgba(0, 226, 132, 0.2));
}

.beatport .platform-icon {
    color: #01f791;
}

.apple {
    background: linear-gradient(135deg, rgba(251, 60, 122, 0.3), rgba(252, 71, 106, 0.1));
}

.apple:hover {
    background: linear-gradient(135deg, rgba(251, 60, 122, 0.4), rgba(252, 71, 106, 0.2));
}

.apple .platform-icon {
    color: #FB3C7A;
}

.deezer {
    background: linear-gradient(135deg, rgba(255, 115, 0, 0.3), rgba(255, 145, 45, 0.1));
}

.deezer:hover {
    background: linear-gradient(135deg, rgba(255, 115, 0, 0.4), rgba(255, 145, 45, 0.2));
}

.deezer .platform-icon {
    color: #FF7300;
}

.youtube {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(220, 0, 0, 0.1));
}

.youtube:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.4), rgba(220, 0, 0, 0.2));
}

.youtube .platform-icon {
    color: #FF0000;
}

.soundcloud {
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.3), rgba(255, 125, 0, 0.1));
}

.soundcloud:hover {
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.4), rgba(255, 125, 0, 0.2));
}

.soundcloud .platform-icon {
    color: #FF5500;
}

/* Ajustes responsivos */
@media (max-width: 1600px) {
    .platforms-container {
        max-width: 1200px;
    }
}

@media (max-width: 992px) {
    .platform-card {
        width: 200px;
        height: 200px;
    }
    
    .platform-icon {
        font-size: 55px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .platform-card {
        width: 180px;
        height: 180px;
    }
    
    .platform-icon {
        font-size: 50px;
    }
    
    .platform-name {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .section-container {
        padding: 60px 15px;
    }
}

@media (max-width: 576px) {
    .platform-card {
        width: 150px;
        height: 150px;
        margin: 6px;
    }
    
    .platform-icon {
        font-size: 40px;
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .platform-card {
        width: 130px;
        height: 130px;
        margin: 5px;
    }
    
    .platform-icon {
        font-size: 35px;
        margin-bottom: 8px;
    }
    
    .platform-name {
        font-size: 0.9rem;
    }
    
    .section-container {
        padding: 40px 10px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}
}
#fw-section-custom-html-1a284591-51d2-4332-8c32-c73e09d82fa9 {

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}

.platform-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
}

body {
    background: transparent;
    color: #ffffff;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Sección de plataformas */
.platforms-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    position: relative;
}

.section-container {
    width: 100%;
    padding: 80px 20px;
    position: relative;
    background: transparent;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.platforms-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Tarjetas de plataformas */
.platform-card {
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 10px;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.platform-icon {
    font-size: 60px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.platform-name {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-icon,
.platform-card:hover .platform-name {
    transform: scale(1.1);
}

/* Estilos específicos por plataforma */
.spotify {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.3), rgba(30, 215, 96, 0.1));
}

.spotify:hover {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.4), rgba(30, 215, 96, 0.2));
}

.spotify .platform-icon {
    color: #1DB954;
}

.beatport {
    background: linear-gradient(135deg, rgba(1, 247, 145, 0.3), rgba(0, 226, 132, 0.1));
}

.beatport:hover {
    background: linear-gradient(135deg, rgba(1, 247, 145, 0.4), rgba(0, 226, 132, 0.2));
}

.beatport .platform-icon {
    color: #01f791;
}

.apple {
    background: linear-gradient(135deg, rgba(251, 60, 122, 0.3), rgba(252, 71, 106, 0.1));
}

.apple:hover {
    background: linear-gradient(135deg, rgba(251, 60, 122, 0.4), rgba(252, 71, 106, 0.2));
}

.apple .platform-icon {
    color: #FB3C7A;
}

.deezer {
    background: linear-gradient(135deg, rgba(255, 115, 0, 0.3), rgba(255, 145, 45, 0.1));
}

.deezer:hover {
    background: linear-gradient(135deg, rgba(255, 115, 0, 0.4), rgba(255, 145, 45, 0.2));
}

.deezer .platform-icon {
    color: #FF7300;
}

.youtube {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(220, 0, 0, 0.1));
}

.youtube:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.4), rgba(220, 0, 0, 0.2));
}

.youtube .platform-icon {
    color: #FF0000;
}

.soundcloud {
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.3), rgba(255, 125, 0, 0.1));
}

.soundcloud:hover {
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.4), rgba(255, 125, 0, 0.2));
}

.soundcloud .platform-icon {
    color: #FF5500;
}

/* Ajustes responsivos */
@media (max-width: 1600px) {
    .platforms-container {
        max-width: 1200px;
    }
}

@media (max-width: 992px) {
    .platform-card {
        width: 200px;
        height: 200px;
    }
    
    .platform-icon {
        font-size: 55px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .platform-card {
        width: 180px;
        height: 180px;
    }
    
    .platform-icon {
        font-size: 50px;
    }
    
    .platform-name {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .section-container {
        padding: 60px 15px;
    }
}

@media (max-width: 576px) {
    .platform-card {
        width: 150px;
        height: 150px;
        margin: 6px;
    }
    
    .platform-icon {
        font-size: 40px;
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .platform-card {
        width: 130px;
        height: 130px;
        margin: 5px;
    }
    
    .platform-icon {
        font-size: 35px;
        margin-bottom: 8px;
    }
    
    .platform-name {
        font-size: 0.9rem;
    }
    
    .section-container {
        padding: 40px 10px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

}