/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Borda 1: Header */
.borda-1 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
    margin-bottom: 15px;
}

.logo img {
    max-width: 300px;
    max-height: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.logo h1 {
    color: white;
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.frase {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
}

/* Borda 2: Redes Sociais */
.borda-2 {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    text-align: center;
}

.redes-sociais {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.rede-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.rede-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Cores específicas das redes sociais */
.rede-social.facebook { background-color: #3b5998; }
.rede-social.instagram { background-color: #E1306C; }
.rede-social.youtube { background-color: #FF0000; }
.rede-social.twitter { background-color: #1DA1F2; }
.rede-social.tiktok { background-color: #000000; }
.rede-social.whatsapp { background-color: #25D366; }
.rede-social.app_android { background-color: #3DDC84; }
.rede-social.app_iphone { background-color: #A2AAAD; }
.rede-social.app_multi { background-color: #007bff; }

/* Borda 3: Players */
.borda-3 {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 0;
}

.player-section {
    margin-bottom: 30px;
    text-align: center;
}

.player-section h2 {
    color: #333;
    font-size: 2em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.video-player {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Seção de áudio centralizada */
.audio-section {
    text-align: center;
    margin-bottom: 30px;
}

.audio-section h2 {
    color: #333;
    font-size: 2em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.audio-player-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.audio-player-container audio {
    width: 100%;
    height: 50px;
    border-radius: 5px;
}

/* Player de áudio customizado */
.custom-audio-player {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.audio-info {
    text-align: center;
    margin-bottom: 20px;
}

.audio-info h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.audio-info p {
    opacity: 0.8;
    font-size: 0.9em;
}

.audio-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.play-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.time-display {
    font-size: 0.9em;
    opacity: 0.8;
}

.progress-container {
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: white;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.volume-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.volume-container i {
    opacity: 0.8;
}

.volume-slider {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.visualizer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    height: 30px;
    margin-bottom: 15px;
}

.bar {
    width: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.3s; }
.bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { height: 10px; }
    50% { height: 25px; }
}

/* Bordas 4, 5, 6: Carrosséis */
.borda-4, .borda-5, .borda-6 {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 0;
    margin-top: 2px;
}

.borda-4 h2, .borda-5 h2, .borda-6 h2 {
    text-align: center;
    color: #333;
    font-size: 2em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Carrossel */
.carrossel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carrossel {
    overflow: hidden;
}

.carrossel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

/* Carrossel de Locutores */
.carrossel-item.locutor-item {
    flex: 0 0 240px;
    min-width: 240px;
}

.locutor-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.locutor-card:hover {
    transform: translateY(-5px);
}

.locutor-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.locutor-card h3 {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.locutor-card p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.4;
}

/* Carrossel de Vídeos */
.carrossel-item.video-item {
    flex: 0 0 320px;
    min-width: 320px;
}

.video-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card iframe {
    width: 100%;
    height: 180px;
    border: none;
}

.video-card h3 {
    padding: 15px;
    color: #333;
    font-size: 1.1em;
    text-align: center;
    margin: 0;
}

/* Carrossel de Banners */
.carrossel-item.banner-item {
    flex: 0 0 240px;
    min-width: 240px;
}

.banner-card {
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.banner-card:hover {
    transform: translateY(-5px);
}

.banner-card a {
    display: block;
    text-decoration: none;
}

.banner-card img {
    width: 240px;
    height: 240px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.banner-card img:hover {
    transform: scale(1.05);
}

/* Controles do carrossel */
.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(102, 126, 234, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.carrossel-btn:hover {
    background: rgba(102, 126, 234, 1);
    transform: translateY(-50%) scale(1.1);
}

.carrossel-btn.prev {
    left: -25px;
}

.carrossel-btn.next {
    right: -25px;
}

.carrossel-btn:disabled {
    background: rgba(204, 204, 204, 0.5);
    cursor: not-allowed;
    transform: translateY(-50%);
}

/* Borda 7: Rodapé */
.borda-7 {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 2px;
}

.borda-7 p {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .logo img {
        max-width: 200px;
        max-height: 200px;
    }
    
    .logo h1 {
        font-size: 2em;
    }
    
    .frase {
        font-size: 1em;
    }
    
    .redes-sociais {
        gap: 10px;
    }
    
    .rede-social {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .borda-4 h2, .borda-5 h2, .borda-6 h2 {
        font-size: 1.5em;
    }
    
    .carrossel-item.locutor-item,
    .carrossel-item.banner-item {
        flex: 0 0 200px;
        min-width: 200px;
    }
    
    .carrossel-item.video-item {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .locutor-card img {
        width: 160px;
        height: 160px;
    }
    
    .banner-card img {
        width: 200px;
        height: 200px;
    }
    
    .video-card iframe {
        height: 157px; /* Mantém proporção 16:9 para 280px de largura */
    }
    
    .carrossel-btn {
        padding: 10px 15px;
        font-size: 16px;
    }
    
    .carrossel-btn.prev {
        left: -15px;
    }
    
    .carrossel-btn.next {
        right: -15px;
    }
}

@media (max-width: 480px) {
    .carrossel-item.locutor-item,
    .carrossel-item.banner-item,
    .carrossel-item.video-item {
        flex: 0 0 90%;
        min-width: 90%;
    }
    
    .carrossel-track {
        gap: 10px;
    }
}


/* Borda 7: Rodapé */
.borda-7 {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}

.rodape-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rodape-content p {
    margin: 10px 0;
    font-size: 1em;
    line-height: 1.6;
}

.rodape-content p:first-child {
    font-size: 1.1em;
    font-weight: 500;
    color: #f0f0f0;
}

.rodape-content p:last-child {
    font-size: 0.9em;
    color: #ccc;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .borda-7 {
        padding: 20px 0;
    }
    
    .rodape-content p {
        font-size: 0.9em;
    }
    
    .rodape-content p:first-child {
        font-size: 1em;
    }
    
    .rodape-content p:last-child {
        font-size: 0.8em;
    }
}

