/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a;
    background-image: url("data:image/svg+xml,%3Csvg width='84' height='48' viewBox='0 0 84 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h12v6H0V0zm28 8h12v6H28V8zm14-8h12v6H42V0zm14 0h12v6H56V0zm0 8h12v6H56V8zM42 8h12v6H42V8zm0 16h12v6H42v-6zm14-8h12v6H56v-6zm14 0h12v6H70v-6zm0-16h12v6H70V0zM28 32h12v6H28v-6zM14 16h12v6H14v-6zM0 24h12v6H0v-6zm0 8h12v6H0v-6zm14 0h12v6H14v-6zm14 8h12v6H28v-6zm-14 0h12v6H14v-6zm28 0h12v6H42v-6zm14-8h12v6H56v-6zm0-8h12v6H56v-6zm14 8h12v6H70v-6zm0 8h12v6H70v-6zM14 24h12v6H14v-6zm14-8h12v6H28v-6zM14 8h12v6H14V8zM0 8h12v6H0V8z' fill='%23222222' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
    color: #f5f5f5;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23333333' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

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

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    margin-bottom: 10px;
    text-align: center;
    color: #f5f5f5;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.8), rgba(255,255,255,0));
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

section {
    padding: 60px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0));
}

/* Header e Banner */
header {
    position: relative;
    margin-bottom: 20px;
}

.banner-container {
    position: relative;
    height: 350px;
    overflow: hidden;
    display: flex;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px;
    background: rgba(0, 0, 0, 0.2);
}

.banner-slide {
    width: 25%;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 2px;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 0.5s ease;
    border-radius: 3px;
}

.banner-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

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

.logo-container {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.logo {
    max-width: 320px;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.7));
}

/* Slogan e Região */
.slogan-container {
    text-align: center;
    margin: 30px 0 40px;
}

.slogan {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.region {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    font-weight: 300;
}

/* Seção de Vídeos */
.videos-section {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 60px 0;
    border-radius: 5px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.video-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
}

.featured-video {
    width: 100%;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-thumbnail.featured {
    padding-bottom: 56.25%;
}

.featured-video .video-thumbnail {
    background-image: url('../images/thumbs/tracy.png');
    background-size: cover;
    background-position: center;
}

.other-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.other-videos .video-link:nth-child(1) .video-thumbnail {
    background-image: url('../images/thumbs/legiao.png');
    background-size: cover;
    background-position: center;
}

.other-videos .video-link:nth-child(2) .video-thumbnail {
    background-image: url('../images/thumbs/wicked.png');
    background-size: cover;
    background-position: center;
}

.other-videos .video-link:nth-child(3) .video-thumbnail {
    background-image: url('../images/thumbs/trevo.png');
    background-size: cover;
    background-position: center;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.play-icon i {
    color: #ffffff;
    font-size: 24px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.video-link:hover .video-thumbnail {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.video-link:hover .play-icon {
    background-color: rgba(255, 255, 255, 0.3);
}

.video-link:hover .video-overlay {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Seção Sobre */
.about-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.about-preview p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-full {
    display: none;
    margin-top: 30px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-full p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.read-more-btn, .read-less-btn {
    background-color: transparent;
    border: 2px solid #f5f5f5;
    color: #f5f5f5;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    display: block;
    margin: 30px auto 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
}

.read-more-btn:hover, .read-less-btn:hover {
    background-color: #f5f5f5;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Rodapé */
footer {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 40px 0;
    text-align: center;
    border-radius: 5px;
    margin-top: 40px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #f5f5f5;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-container {
    margin-top: 30px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    letter-spacing: 1px;
}

.whatsapp-link i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.whatsapp-link:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Responsividade */
@media (max-width: 768px) {
    .logo {
        max-width: 280px;
    }
    
    .slogan {
        font-size: 2.5rem;
    }
    
    .banner-container {
        height: 300px;
        flex-wrap: wrap;
    }
    
    .banner-slide {
        width: 50%;
        height: 50%;
    }
    
    .other-videos {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-preview p, .about-full p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 220px;
    }
    
    .slogan {
        font-size: 2rem;
    }
    
    .banner-container {
        height: 250px;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
