/* Hero Espetaculo com Imagem de Fundo */
.hero-espetaculo {
    position: relative;
    height: 85vh;
    margin-top: 70px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-meta {
    display: flex;
    gap: 1rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* Quote Section */
.quote-section {
    padding: 4rem 0;
    background: var(--ice);
}

.main-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.main-quote p {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-style: italic;
    color: var(--black);
    line-height: 1.5;
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
}

.main-quote cite {
    font-size: 1.1rem;
    color: var(--dark);
    font-style: normal;
}

/* Intro Espetaculo */
.intro-espetaculo {
    padding: 4rem 0;
    background: var(--light);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.intro-text p {
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
}

/* Gallery Full */
.gallery-full {
    padding: 4rem 0;
    background: var(--ice);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mosaic-item {
    overflow: hidden;
    border-radius: 8px;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mosaic-item:hover img {
    transform: scale(1.1);
}

.mosaic-tall {
    grid-row: span 2;
}

.mosaic-wide {
    grid-column: span 2;
}

/* Sinopse Detalhada */
.sinopse-detalhada {
    padding: 5rem 0;
    background: var(--light);
}

.sinopse-detalhada h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
    text-align: center;
}

.sinopse-content {
    max-width: 900px;
    margin: 0 auto;
}

.sinopse-lead {
    font-size: 1.3rem;
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.sinopse-text p {
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Leminski Section */
.leminski-section {
    padding: 5rem 0;
    background: var(--ice);
}

.leminski-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.leminski-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

.leminski-bio h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.leminski-bio h3 {
    font-size: 1.3rem;
    color: var(--mid);
    margin-bottom: 2rem;
    font-weight: 400;
}

.leminski-bio p {
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

/* Estrutura Section */
.estrutura-section {
    padding: 5rem 0;
    background: var(--light);
}

.estrutura-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
    text-align: center;
}

.estrutura-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.estrutura-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.estrutura-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-number {
    font-size: 3rem;
    font-weight: 200;
    color: var(--mid);
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
}

.estrutura-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.estrutura-card p {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.7;
}

/* Linguagem Section */
.linguagem-section {
    padding: 5rem 0;
    background: var(--ice);
}

.linguagem-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
    text-align: center;
}

.linguagem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.linguagem-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.linguagem-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.linguagem-item p {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.7;
}

/* Ficha Tecnica Completa */
.ficha-tecnica-completa {
    padding: 5rem 0;
    background: var(--light);
}

.ficha-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.ficha-header h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin: 0;
}

.btn-download {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--black);
    color: white;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
}

.btn-download:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.ficha-grid-completa {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.ficha-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    border-bottom: 2px solid var(--mid);
    padding-bottom: 0.5rem;
}

.ficha-item {
    margin-bottom: 1.5rem;
}

.ficha-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mid);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.ficha-item p {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.6;
}

/* Requisitos Section */
.requisitos-section {
    padding: 5rem 0;
    background: var(--ice);
}

.requisitos-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
    text-align: center;
}

.requisitos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.requisito-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.requisito-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.requisito-card ul {
    list-style: none;
}

.requisito-card li {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.requisito-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--mid);
}

/* Depoimentos Section */
.depoimentos-section {
    padding: 5rem 0;
    background: var(--light);
}

.depoimentos-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
    text-align: center;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.depoimento-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.depoimento-card p {
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.depoimento-card cite {
    font-size: 0.9rem;
    color: var(--mid);
    font-style: normal;
    font-weight: 500;
}

/* CTA Espetaculo */
.cta-espetaculo {
    padding: 5rem 0;
    background: var(--ice);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--black);
    color: white;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
}

.btn-cta:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

/* Animations */
.hero-text {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.main-quote {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.intro-text,
.intro-image {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.intro-text { animation-delay: 0.2s; }
.intro-image { animation-delay: 0.4s; }

.mosaic-item {
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
}

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

.sinopse-lead,
.sinopse-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.sinopse-lead { animation-delay: 0.2s; }
.sinopse-text { animation-delay: 0.4s; }

.leminski-image,
.leminski-bio {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.leminski-image { animation-delay: 0.2s; }
.leminski-bio { animation-delay: 0.4s; }

.estrutura-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.estrutura-card:nth-child(1) { animation-delay: 0.1s; }
.estrutura-card:nth-child(2) { animation-delay: 0.2s; }
.estrutura-card:nth-child(3) { animation-delay: 0.3s; }
.estrutura-card:nth-child(4) { animation-delay: 0.4s; }
.estrutura-card:nth-child(5) { animation-delay: 0.5s; }
.estrutura-card:nth-child(6) { animation-delay: 0.6s; }

.linguagem-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

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

.ficha-col {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.ficha-col:nth-child(1) { animation-delay: 0.1s; }
.ficha-col:nth-child(2) { animation-delay: 0.2s; }
.ficha-col:nth-child(3) { animation-delay: 0.3s; }
.ficha-col:nth-child(4) { animation-delay: 0.4s; }
.ficha-col:nth-child(5) { animation-delay: 0.5s; }
.ficha-col:nth-child(6) { animation-delay: 0.6s; }

.requisito-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

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

.depoimento-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.depoimento-card:nth-child(1) { animation-delay: 0.1s; }
.depoimento-card:nth-child(2) { animation-delay: 0.2s; }
.depoimento-card:nth-child(3) { animation-delay: 0.3s; }

.cta-content {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .intro-grid,
    .leminski-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .estrutura-grid,
    .linguagem-grid,
    .requisitos-grid,
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ficha-grid-completa {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ficha-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Eventos Carousel Section */
.eventos-carousel-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.eventos-carousel-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #0F1112;
    font-weight: 600;
}

.eventos-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.carousel-track {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.evento-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.evento-showcase-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.evento-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.evento-showcase:hover .evento-showcase-image img {
    transform: scale(1.08);
}

.evento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
}

.evento-showcase-content {
    padding: 3rem;
}

.evento-badge {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, #0F1112 0%, #2d3436 100%);
    color: white;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.evento-showcase-content h3 {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
    color: #0F1112;
    font-weight: 600;
    line-height: 1.2;
}

.evento-showcase-content h4 {
    font-size: 1.4rem;
    color: #8D8F92;
    font-weight: 500;
    margin-bottom: 1.8rem;
}

.evento-showcase-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

/* Controles do Carrossel */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    background: white;
    border: 2px solid #E7E9EA;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0F1112;
}

.carousel-btn:hover {
    background: #0F1112;
    border-color: #0F1112;
    color: white;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E7E9EA;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #0F1112;
    transform: scale(1.3);
}

.dot:hover {
    background: #8D8F92;
}

/* Responsive */
@media (max-width: 992px) {
    .eventos-carousel-section h2 {
        font-size: 2.2rem;
    }

    .evento-showcase {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .evento-showcase-image {
        height: 350px;
    }

    .evento-showcase-content {
        padding: 2rem;
    }

    .evento-showcase-content h3 {
        font-size: 2rem;
    }

    .evento-showcase-content h4 {
        font-size: 1.2rem;
    }

    .evento-showcase-content p {
        font-size: 1rem;
    }

    .carousel-controls {
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .eventos-carousel-section {
        padding: 4rem 0;
    }

    .eventos-carousel-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .evento-showcase-image {
        height: 250px;
    }

    .evento-showcase-content {
        padding: 1.5rem;
    }

    .evento-showcase-content h3 {
        font-size: 1.6rem;
    }

    .evento-showcase-content h4 {
        font-size: 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

.timeline-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6b6b, #ee5a6f);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #ff6b6b;
    border: 4px solid #fff;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.2);
}

.timeline-item .timeline-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.timeline-item .timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-image img {
    transform: scale(1.05);
}

.timeline-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.timeline-year {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.timeline-reverse {
    direction: rtl;
}

.timeline-reverse .timeline-content {
    direction: ltr;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-left: 70px;
        direction: ltr !important;
    }

    .timeline-item::before {
        left: 30px;
        top: 30px;
    }

    .timeline-reverse {
        direction: ltr;
    }

    .timeline-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-espetaculo {
        height: 70vh;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .intro-espetaculo,
    .sinopse-detalhada,
    .leminski-section,
    .estrutura-section,
    .linguagem-section {
        padding: 3rem 0;
    }

    .intro-grid,
    .leminski-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-image,
    .leminski-image {
        order: -1;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .mosaic-tall,
    .mosaic-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .estrutura-grid,
    .linguagem-grid,
    .requisitos-grid,
    .depoimentos-grid,
    .ficha-grid-completa {
        grid-template-columns: 1fr;
    }

    .quote-section blockquote {
        font-size: 1.5rem;
        padding: 2rem 1rem;
    }

    .btn-cta,
    .btn-download {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

/* Small Mobile - Espetáculos */
@media (max-width: 480px) {
    .hero-espetaculo {
        height: 60vh;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .intro-espetaculo,
    .sinopse-detalhada,
    .leminski-section,
    .estrutura-section,
    .linguagem-section {
        padding: 2.5rem 0;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .quote-section blockquote {
        font-size: 1.2rem;
        padding: 1.5rem 1rem;
    }

    .gallery-mosaic {
        grid-auto-rows: 180px;
    }

    .estrutura-card,
    .linguagem-item {
        padding: 1.5rem;
    }

    .card-number {
        font-size: 2rem;
    }

    .ficha-grid-completa {
        gap: 2rem;
    }

    .btn-cta,
    .btn-download {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}
