* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: inherit;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.profile-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #667eea;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 30px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.social-btn i {
    font-size: 1.4rem;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.youtube {
    background: #FF0000;
    color: white;
}

.whatsapp {
    background: #25D366;
    color: white;
}

/* Content Sections */
.content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.about {
    text-align: center;
    margin-bottom: 50px;
}

.about h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.about p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission Cards */
.mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.mission-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #f7fafc;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.mission-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 15px;
}

.mission-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 10px;
}

.mission-card p {
    color: #718096;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
    margin-bottom: 20px;
}

.cta.contact-section {
    margin-bottom: 0;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button i {
    font-size: 1.4rem;
}

.secondary-button {
    background: rgba(255, 255, 255, 0.16);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.secondary-button:hover {
    background: white;
    color: #667eea;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.05rem;
    color: #718096;
    max-width: 720px;
    margin: 0 auto;
}

.webradio-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 30px;
    align-items: start;
}

.webradio-player-card,
.webradio-info-card,
.webradio-empty-state {
    background: #f7fafc;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.12);
}

.webradio-player-shell {
    position: relative;
    width: 100%;
    min-height: 540px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    border: 1px solid rgba(102, 126, 234, 0.15);
}

.webradio-iframe {
    width: 100%;
    height: 540px;
    border: 0;
    display: block;
    background: white;
}

.webradio-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(102, 126, 234, 0.12);
    color: #5a67d8;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.webradio-info-card h3,
.webradio-player-card h3,
.webradio-empty-state h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 12px;
}

.webradio-info-card p,
.webradio-player-card p,
.webradio-empty-state p {
    color: #718096;
    margin-bottom: 14px;
}

.webradio-feature-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.webradio-feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #4a5568;
}

.webradio-feature-list i {
    color: #667eea;
    margin-top: 4px;
}

.webradio-empty-state {
    text-align: center;
}

.webradio-empty-state i {
    font-size: 3.5rem;
    color: #667eea;
    margin-bottom: 18px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: #667eea;
    font-weight: 700;
}

.back-link:hover {
    color: #5a67d8;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: white;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .hero {
        padding: 40px 20px;
    }

    .content {
        padding: 30px 20px;
    }

    .social-icons {
        flex-direction: column;
        align-items: stretch;
    }

    .social-btn {
        justify-content: center;
    }

    .mission {
        grid-template-columns: 1fr;
    }

    .webradio-layout {
        grid-template-columns: 1fr;
    }

    .webradio-player-shell,
    .webradio-iframe {
        min-height: 460px;
        height: 460px;
    }
}
