/* Este arquivo deve conter SOMENTE estilos para index.html */

/* HERO */
@font-face {
    font-family: 'MinhaFonte';
    src: url("fontes/LeJourSerifPersonalUseOnly.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
}

.hero {
    padding: 5rem 2rem 2rem;
    text-align: center;
}

.hero-title {
    font-size: 4.6rem;
    margin-bottom: 1rem;
    font-family: 'DM Serif Display', serif;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #727272;
    font-family: 'MinhaFonte', serif;
}

/* SOBRE */
.sobre-card {
    max-width: 1000px;
    height: auto;
    margin: 1rem auto;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
}

@media (max-width: 798px) {
    .sobre-card {
        height: auto;
    }
}
.section-title {
    font-size: 4.3rem;
    color: #161616;

}
h2 {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
}

.section-text {
    font-size: 1.4rem;
    font-style: italic;
}

/* COMICS SECTION STYLES */
.comics-section {
    padding: 4rem 1rem;
    background-color: #f0f0f0;
    border-top: 0 solid #000;
    border-bottom: 0 solid #000;
}

.comic-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
    max-width: 1920px;
    height: 650px;
    margin: 2rem auto;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 3px;
    box-sizing: border-box;
    }

/* Definição das áreas do grid */
.comic-panel.panel-1 { grid-area: 1 / 1 / 3 / 2; }
.comic-panel.panel-2 { grid-area: 1 / 2 / 2 / 3; }
.comic-panel.panel-3 { grid-area: 1 / 3 / 2 / 4; }
.comic-panel.panel-4 { grid-area: 2 / 2 / 3 / 4; }
.comic-panel.panel-5 { grid-area: 3 / 1 / 4 / 3; }
.comic-panel.panel-6 { grid-area: 3 / 3 / 4 / 4; }


.comic-panel {

    overflow: hidden;
    position: relative;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    filter: brightness(1) grayscale(0%);
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.comic-panel:hover {
    transform: scale(1.05);
    z-index: 50;
    box-shadow: 0 0 25px rgba(72, 74, 86, 0.93);

}

.panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- AJUSTES DE POSIÇÃO INDIVIDUAL --- */
.comic-panel.panel-1 .panel-img { object-position: 0% 0%; }
.comic-panel.panel-2 .panel-img { object-position: center 51%; }
.comic-panel.panel-3 .panel-img { object-position: 100% 21%; }
.comic-panel.panel-4 .panel-img { object-position: center 50%; }
.comic-panel.panel-5 .panel-img { object-position: center 38%; }
.comic-panel.panel-6 .panel-img { object-position: 100% 80%; }

/* Responsividade de Comics */
@media (max-width: 950px) {
    .comic-grid-container {
        max-width: 95vw;
        height: auto;
        grid-template-rows: auto auto auto auto;
    }
}

@media (max-width: 600px) {
    .comic-grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
        padding: 5px;
        gap: 5px;
    }
    .comic-panel {
        grid-area: auto !important;
        height: 200px;
    }
}


/* --- Estilização da Seção da Playlist do SoundCloud (INDEX) --- */

.soundcloud-playlist {
    padding: 60px 40px; /* Ajustado para dar respiro nas laterais */
    text-align: center;
    background-color: #1a1a1a;
    display: none;
}

.soundcloud-playlist .section-title {
    margin-bottom: 40px;
    color: #f0f0f0;
    font-size: 2.2em;
    text-transform: uppercase;
}

/* 1. CONTAINER PAI: Define o layout Flexbox */
.playlist-flex-wrapper {
    display: flex;
    justify-content: flex-start; /* Alinha o texto à esquerda */
    gap: 40px;
    width: 100%; /* Ocupa 100% da largura do pai */
    align-items: flex-start;
    text-align: left;
}


/* 2. BLOCO DE TEXTO (ESQUERDA) */
.playlist-text-info {
    flex: 1;
    max-width: 500px; /* Limita a largura do texto para ele não esticar muito */
    padding-top: 20px;
    color: #b3b3b3;
}

.playlist-text-info h3 {
    color: #ff5500;
    margin-bottom: 15px;
}


/* 3. CONTAINER DA PLAYLIST (DIREITA) */
.playlist-container {
    width: 600px;
    flex-shrink: 0;
    margin-left: auto; /* EMPURRA PARA A DIREITA */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

.playlist-container iframe {
    height: 650px;
    width: 100%;
    display: block;
}

/* 4. RESPONSIVIDADE DA PLAYLIST */
@media (max-width: 900px) {
    .playlist-flex-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .playlist-container {
        width: 100%;
    }
}

/* TIME SECTION STYLES */

.time-section {
    padding: 2rem 1rem;
    /*background-color: #f7f7f7; */
    text-align: center;
}

.team-members-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1300px;
    margin: 1rem auto;
    gap: 1rem;
    flex-wrap: wrap;
}

.team-member-card {
    flex-basis: 18%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.member-photo-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.member-photo-wrapper:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.member-photo-wrapper:hover .member-photo {
    filter: brightness(0.4);
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    padding: 5rem;
    box-sizing: border-box;
}

.member-photo-wrapper:hover .member-overlay {
    opacity: 1;
}

.member-name {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-family: 'DM Serif Display', serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.member-description {
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}


/* MEDIA QUERIES TIME SECTION */
@media (max-width: 1200px) {
    .team-member-card {
        flex-basis: 30%;
    }
}

@media (max-width: 768px) {
    .team-member-card {
        flex-basis: 45%;
    }
    .member-photo-wrapper {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .team-member-card {
        flex-basis: 100%;
    }
}
/* FIM DO index.css */