/* Reset e Variáveis */
:root {
    --gold: #c5a059;
    --dark: #0f0f0f;
    --light: #ffffff;
    --gray: #222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navegação */
/* Navbar */
#navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#navbar ul {
    display: flex;
    list-style: none;
}

#navbar a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

#navbar a:hover {
    color: var(--gold);
}

/* Hero */

/* Container do Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #000;
    /* Fundo de segurança */
}

/* Camada de Fundo Animada */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente para garantir leitura do texto por cima das fotos */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

/* Camada das Imagens */
.hero-bg-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: bgSwap 12s infinite alternate ease-in-out;
    z-index: 0;
}

/* Conteúdo do Hero (acima das imagens) */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display';
    font-size: 4rem;
    color: var(--gold);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background: var(--gold);
    color: black;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 20px;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

/* Lógica da Animação de Troca Suave */
@keyframes bgSwap {

    0%,
    45% {
        background-image: url('imagens/galeria3.webp');
        opacity: 1;
    }

    50%,
    55% {
        opacity: 0.7;
        /* Suaviza a transição no meio */
    }

    60%,
    100% {
        background-image: url('imagens/adriana.webp');
        opacity: 1;
    }
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Seções */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: 'Playfair Display';
}

.bg-dark {
    background-color: #050505;
}

/* Grid Mídia */
.grid-midia {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin-bottom: 15px;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}


/* Galeria de Fotos */
/* Container da Galeria Bento */
.gallery-bento {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    /* Define uma base de altura para as linhas */
    grid-auto-flow: dense;
    /* Preenche os espaços vazios automaticamente */
    gap: 15px;
}

/* Itens da Galeria */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

/* Tamanhos Diferenciados */
.gallery-item.tall {
    grid-row: span 2;
    /* Ocupa duas linhas de altura */
}

.gallery-item.wide {
    grid-column: span 2;
    /* Ocupa duas colunas de largura */
}

/* Imagem */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), filter 0.5s ease;
    filter: grayscale(30%);
}

/* Overlay Dourado ao passar o mouse */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(197, 160, 89, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-overlay span {
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: 0.4s ease;
}

/* Efeito Hover */
.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .gallery-bento {
        grid-template-columns: repeat(2, 1fr);
        /* 2 colunas no celular */
    }

    .gallery-item.wide {
        grid-column: span 1;
        /* Volta para largura normal no mobile */
    }
}

/* Formulário */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input,
select,
textarea {
    padding: 15px;
    background: var(--gray);
    border: 1px solid #444;
    color: #fff;
    border-radius: 5px;
}

.btn-primary,
.btn-submit {
    background: var(--gold);
    color: #000;
    padding: 15px 35px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #b08d48;
}

/* Responsivo */
@media (max-width: 768px) {

    .grid-midia,
    .input-group {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    #navbar {
        padding: 15px;
    }
}

/*seção musica*/
/* Estilos da Discografia */
.discografia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.album-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #333;
}

.album-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.album-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.btn-play {
    padding: 10px 20px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
}

.album-info {
    padding: 20px;
    text-align: center;
}

.album-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--gold);
}

.album-info p {
    font-size: 0.85rem;
    color: #bbb;
    margin-bottom: 10px;
}

.year {
    font-size: 0.8rem;
    background: #333;
    padding: 2px 8px;
    border-radius: 10px;
}

/* MP3 Player Section */
.mp3-player-section {
    background: #111;
    padding: 30px;
    border-radius: 10px;
    margin-top: 50px;
}

.track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

.track audio {
    height: 35px;
    filter: sepia(20%) saturate(70%) grayscale(100%) contrast(90%) invert(100%);
}

@media (max-width: 600px) {
    .track {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/*seção shows*/
/* Estilos da Agenda */
#agenda {
    background-color: #0c0c0c;
}

/* --- Seção Agenda Premium --- */
.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.agenda-card {
    display: flex;
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.agenda-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.1);
}

/* Poster do Show */
.agenda-poster {
    width: 250px;
    height: 350px;
    position: relative;
    flex-shrink: 0;
}

.agenda-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, #111);
}

/* Conteúdo */
.agenda-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.agenda-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

.agenda-date-box {
    background: var(--gold);
    color: #000;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 70px;
}

.agenda-date-box .day {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.agenda-date-box .month {
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.agenda-title-group h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 5px;
}

.venue {
    color: var(--gold);
    font-size: 0.9rem;
}

.agenda-details p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 500px;
}

.agenda-time {
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Botões da Agenda */
.agenda-actions {
    display: flex;
    gap: 15px;
}

.btn-ticket {
    background: var(--gold);
    color: #000;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--gold);
    color: #000;
}

/* Responsividade */
@media (max-width: 768px) {
    .agenda-card {
        flex-direction: column;
    }

    .agenda-poster {
        width: 100%;
        height: 250px;
    }

    .poster-overlay {
        background: linear-gradient(to top, #111, transparent);
    }

    .agenda-header {
        flex-direction: column;
        text-align: center;
    }

    .agenda-actions {
        flex-direction: column;
    }
}

/*player de musica*/
/* --- Player de Música Estilizado --- */
/* Isso garante que a animação exista, mas fique pausada */
.vinyl-wrapper {
    animation: rotateVinyl 8s linear infinite;
    animation-play-state: paused;
}

/* Isso 'ativa' a animação quando a música toca */
.vinyl-wrapper.playing {
    animation-play-state: running !important;
}

@keyframes rotateVinyl {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.audio-player-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    padding: 30px;
    /* Efeito de Vidro/Profundidade */
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 24px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    box-shadow: 20px 20px 60px #080808, -5px -5px 20px #1d1d1d;
    margin-bottom: 30px;
}

/* O Disco (Vinil) com efeito realístico */
.vinyl-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    /* Bordas que simulam os sulcos do disco */
    border: 8px solid #000;
    box-shadow: 0 0 0 4px #151515, 0 0 15px rgba(0, 0, 0, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    animation: rotateVinyl 8s linear infinite;
    animation-play-state: paused;
    flex-shrink: 0;
}

/* Brilho reflexivo no disco */
.vinyl-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.album-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    /* Deixa o disco com aspecto mais denso */
}

.vinyl-hole {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: #111;
    border-radius: 50%;
    border: 3px solid var(--gold);
    z-index: 3;
    box-shadow: inset 0 0 5px #000;
}

/* Lista de Músicas */
.playlist {
    flex: 1;
}

.track-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #e0e0e0;
}

.track {
    padding: 18px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.track:hover {
    background: rgba(197, 160, 89, 0.05);
    padding-left: 20px;
    /* Efeito de deslize ao passar o mouse */
    color: var(--gold);
}

/* Botão Play Moderno */
.btn-play-lg {
    background: var(--gold);
    color: #000;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    transition: 0.3s;
}

.btn-play-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
    background: #d4af37;
}

/* Responsividade */
@media (max-width: 768px) {
    .audio-player-container {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .vinyl-wrapper {
        width: 160px;
        height: 160px;
    }

    .track {
        justify-content: center;
        gap: 15px;
    }
}

/*thumbnail dos videos*/
.video-thumbnail-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* Mantém proporção 16:9 */
    background: #000;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.yt-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-thumbnail-container:hover .yt-thumb {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.video-thumbnail-container:hover .play-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.play-icon {
    font-size: 50px;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/*footer*/
/* --- Footer Premium --- */
.footer-premium {
    background: #050505;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    color: #bbb;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3.footer-logo {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Redes Sociais */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    text-decoration: none;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    /* Tamanho do ícone */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-5px) rotate(360deg);
    /* Um leve giro na rotação dá um toque premium */
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
    border-color: var(--gold);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
}

.aj-sites {
    color: var(--gold);
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Container da Barra de Progresso */
/* Container das barrinhas */
.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
    margin-bottom: 8px;
    /* Espaço antes do nome da música */
    opacity: 0;
    /* Invisível quando parado */
    transition: opacity 0.3s;
}

.equalizer.active {
    opacity: 1;
    /* Aparece quando dá Play */
}

/* As barras individuais */
.bar {
    width: 3px;
    height: 100%;
    background: #ff4757;
    /* Cor das barrinhas */
    border-radius: 2px;
}

/* Animação só ativa com a classe .active */
.equalizer.active .bar {
    animation: bounce 0.5s ease-in-out infinite alternate;
}

.bar:nth-child(1) {
    animation-delay: 0.1s;
}

.bar:nth-child(2) {
    animation-delay: 0.3s;
}

.bar:nth-child(3) {
    animation-delay: 0.2s;
}

.bar:nth-child(4) {
    animation-delay: 0.4s;
}

.bar:nth-child(5) {
    animation-delay: 0.1s;
}

@keyframes bounce {
    0% {
        height: 4px;
    }

    100% {
        height: 20px;
    }
}

/* Estilo da Barra de Progresso */
.progress-container {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    cursor: pointer;
    margin-top: 8px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #ff4757;
    border-radius: 5px;
    transition: width 0.1s linear;
}

.time-info {
    font-size: 10px;
    color: #888;
    text-align: right;
    margin-top: 4px;
}

/*WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float img {
    width: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

/*insta btn*/
/* Container fixo no canto inferior direito */
.social-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    /* Coloca um sobre o outro */
    gap: 12px;
    /* Espaço entre os botões */
    z-index: 9999;
}

/* Estilo base dos botões */
.btn-social {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-social img {
    width: 30px;
    height: 30px;
}

/* Cor do WhatsApp */
.whatsapp {
    background-color: #25d366;
}

/* Gradiente oficial do Instagram */
.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Efeitos ao passar o mouse */
.btn-social:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Ajuste para telas pequenas (celulares) */
@media (max-width: 768px) {
    .social-floating {
        bottom: 20px;
        right: 20px;
    }

    .btn-social {
        width: 50px;
        height: 50px;
    }
}

/*youtube*/
/* Container que alinha os dois vídeos lado a lado */
.grid-midia {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-card h3 {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #fff;
}

/* O SEGREDO: Mantém o vídeo sempre na proporção correta */
.video-thumbnail-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Isso cria a proporção 16:9 */
    height: 0;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Força o iframe (YouTube) e a imagem a preencherem o container exatamente */
.video-thumbnail-container img,
.video-thumbnail-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

/* Overlay do Play */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 2;
}

.video-thumbnail-container:hover .play-overlay {
    background: rgba(0,0,0,0.1);
}

.play-icon {
    font-size: 50px;
    color: #fff;
    text-shadow: 0 0 15px rgba(0,0,0,0.5);
}
.perfil-section {
    padding: 100px 0;
    background-color: #0f0f0f; /* Fundo escuro luxuoso */
    display: flex;
    justify-content: center;
}

.perfil-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
}

/* Área da Imagem */
.perfil-img {
    flex: 1;
}

.perfil-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 20px 20px 0px var(--primary-color, #d4af37); /* Borda "fake" estilizada */
    object-fit: cover;
}

/* Área de Texto */
.perfil-info {
    flex: 1.2;
}

.perfil-tag {
    color: var(--primary-color, #d4af37);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.perfil-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.perfil-info p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Lista de ícones rápidos */
.perfil-detalhes-lista {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.perfil-detalhes-lista span {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.perfil-detalhes-lista i {
    color: var(--primary-color, #d4af37);
}

/* Responsividade para celulares */
@media (max-width: 900px) {
    .perfil-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    
    .perfil-img {
        width: 80%;
        margin-bottom: 40px;
    }

    .perfil-detalhes-lista {
        align-items: center;
    }
}