@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* =========================================
   CSS Variables - Color Palette
   ========================================= */
   :root {
    --primary-gold: #D4AF37; /* Elegant gold accent */
    --primary-gold-hover: #C5A028;
    --rich-brown: #5C4033; /* Deep earthy tone */
    --charcoal-black: #1A1A1A; /* Deep charcoal */
    --natural-beige: #F5F5DC; /* Light natural beige */
    --text-light: #F8F8F8;
    --text-dark: #333333;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--charcoal-black);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Tipografia Comum */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

.section {
    padding: 4rem 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--charcoal-black);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--primary-gold);
    margin: 0 auto 1.5rem auto;
}

/* Fundos */
.bg-light {
    background-color: #EFE8DC;
    color: #2A1B14;
}

.bg-dark {
    background-color: #1A1310;
    color: #E5DDD3;
}

.bg-projetos {
    background-color: #3D251A;
}

.bg-projetos .section-header h2 {
    color: #D49A36;
}

.bg-dark .section-header h2 {
    color: var(--primary-gold);
}

.bg-dark .section-header p {
    color: #E5DDD3;
}

.bg-brown {
    background-color: var(--rich-brown);
    color: var(--natural-beige);
}

/* =========================================
   Navegação (Mobile First)
   ========================================= */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo {
    height: 60px; 
    width: auto;
    object-fit: contain;
    /* REQUISITO 1: mix-blend-mode para remover fundo branco */
    mix-blend-mode: multiply;
}

/* Menu Hamburguer */
.menu-toggle {
    display: none; /* Hide checkbox */
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--rich-brown);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Nav Links Mobile Default */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* Hide off-screen */
    width: 70%;
    height: 100vh;
    background-color: var(--natural-beige);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.nav-links li a {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--rich-brown);
}

/* Interatividade Menu Hamburguer */
.menu-toggle:checked ~ .nav-links {
    right: 0;
}

.menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Desktop Nav */
@media (min-width: 992px) {
    .hamburger {
        display: none;
    }
    
    .nav-links {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        gap: 2rem;
    }
    
    .nav-links li a {
        font-size: 0.95rem;
        position: relative;
        padding-bottom: 5px;
    }
    
    .nav-links li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 2px;
        background-color: var(--primary-gold);
        transition: width 0.3s ease;
    }
    
    .nav-links li a:hover {
        color: var(--primary-gold);
    }
    
    .nav-links li a:hover::after {
        width: 100%;
    }
}

/* =========================================
   Cinematic Hero Section
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(to bottom, rgba(26, 19, 16, 0.3) 0%, rgba(26, 19, 16, 0.2) 70%, #1a1310 100%), url('../images/capa-do-face.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .hero {
        background-image: linear-gradient(to bottom, rgba(26, 19, 16, 0.3) 0%, rgba(26, 19, 16, 0.2) 70%, #1a1310 100%), url('../images/capa-do-face-celular.jpeg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    
    .hero-content {
        padding-top: 80px; /* Empurra o texto para não cobrir o elemento principal da imagem vertical */
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* REQUISITO 2: Overlay linear-gradient para contraste */
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.4), 
        rgba(26, 26, 26, 0.8)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 60px; /* Offset for nav */
    background: transparent;
}

.hero-title-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    line-height: 0.9;
    color: #6B3B18;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
}

.hero-title-sub {
    font-size: 2.5rem;
    color: #D49A36;
    margin-bottom: 20px;
    text-align: center;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: #E6B325;
    max-width: 600px;
    text-shadow: none;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-title-main {
        font-size: 5rem;
    }
    .hero-title-sub {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 3.5rem;
    }
    .hero-title-sub {
        font-size: 1.4rem;
    }
}

/* Botões */
.cta-button {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--charcoal-black);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-gold-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--charcoal-black);
}

/* =========================================
   Sobre (Quem Somos)
   ========================================= */
#sobre {
    background-image: linear-gradient(to bottom, #1a1310 0%, rgba(26, 19, 16, 0.4) 15%, rgba(26, 19, 16, 0.4) 85%, #1a1310 100%), url('../images/Quem somos pc.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.8s ease-in-out;
    padding: 120px 10%;
    min-height: 80vh;
    color: #E5DDD3;
}

#sobre, .hero, .hero-section {
    animation: fadeInBackground 1.2s ease-in-out forwards;
}

@keyframes fadeInBackground {
    from { opacity: 0; }
    to { opacity: 1; }
}

#sobre h2 {
    color: #D49A36;
}

#sobre p {
    color: #E5DDD3;
}

@media (max-width: 768px) {
    #sobre {
        background-image: linear-gradient(to bottom, #1a1310 0%, rgba(26, 19, 16, 0.4) 15%, rgba(26, 19, 16, 0.4) 85%, #1a1310 100%), url('../images/Quem somos mobile.jpeg');
        background-size: cover;
        background-position: center;
        padding: 100px 5%;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: rgba(42, 27, 20, 0.5) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 154, 54, 0.2);
    color: #E5DDD3;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-align: center;
    border-top: 3px solid #D49A36;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.card h3 {
    color: #D49A36;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* =========================================
   História (Timeline)
   ========================================= */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-gold);
    top: 0;
    bottom: 0;
    left: 20px;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 0 30px 50px;
    position: relative;
    background-color: inherit;
    width: 100%;
}

.timeline-year {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 15px; /* Adicionado top para alinhar corretamente */
    right: auto;
    left: 0;
    background-color: var(--rich-brown);
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item:hover .timeline-year {
    background-color: #D49A36;
    color: #1A1310;
    transform: scale(1.15);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 15px rgba(212, 154, 54, 0.5);
}

.timeline-content {
    padding: 2.5rem 1.5rem 1.5rem 1.5rem; /* Padding top maior para empurrar o texto para baixo */
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-gold);
}

.timeline-content h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    margin-top: 0.5rem; /* Margem extra de segurança */
}

@media (min-width: 768px) {
    .timeline::after {
        left: 50%;
    }
    .timeline-item {
        width: 50%;
        padding: 10px 40px 40px 40px;
    }
    .timeline-item:nth-child(even) {
        left: 50%;
    }
    .timeline-item:nth-child(odd) {
        left: 0;
    }
    .timeline-year {
        top: 20px; /* Ajuste fino na altura do círculo no desktop */
        left: 100%; /* Move para a borda direita (linha central) para cartões da esquerda */
        margin-left: -20px;
    }
    .timeline-item:nth-child(even) .timeline-year {
        left: 0; /* Move para a borda esquerda (linha central) para cartões da direita */
        margin-left: -20px;
    }
}

/* =========================================
   Centro de Pesquisa
   ========================================= */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.research-card {
    background-color: #fff;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.research-card:hover {
    background-color: var(--rich-brown);
    color: var(--natural-beige);
    transform: translateY(-5px);
}

.research-card:hover h3, .research-card:hover p {
    color: var(--natural-beige);
}

.research-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.research-card h3 {
    margin-bottom: 1rem;
    color: var(--rich-brown);
    font-size: 1.4rem;
}

/* =========================================
   Projetos e Iniciativas (Destaque)
   ========================================= */
#projetos {
    background-color: #542814; /* Marrom alaranjado escuro quente para harmonizar com a foto */
    color: var(--natural-beige);
    padding: 5rem 0;
}

#projetos .section-header h2 {
    color: var(--primary-gold);
}

.projeto-destaque-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .projeto-destaque-layout {
        flex-direction: row;
        align-items: stretch;
        gap: 4rem;
    }
}

.projeto-destaque-visual {
    flex: 1;
    width: 100%;
    display: flex;
}

.projeto-destaque-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(30, 8, 0, 0.7); /* Sombra mais densa e com subtom quente */
}

.projeto-destaque-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.projeto-destaque-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin: 0;
}

.project-credit {
    font-style: italic;
    font-size: 1rem;
    color: var(--natural-beige);
    opacity: 0.9;
    margin-top: -0.5rem;
}

.projeto-destaque-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--natural-beige);
    margin: 0;
}

/* Carrossel de Projetos */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 2rem;
}

.carousel-inner {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
}

.carousel-slide .projeto-destaque-layout {
    margin-top: 0; /* Remove a margem superior já que o container tem */
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    gap: 2rem;
}

.carousel-btn {
    background: transparent;
    border: none;
    color: var(--primary-gold);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: scale(1.2);
    color: var(--primary-gold-hover);
}

.carousel-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: var(--primary-gold);
}

.btn-saiba-mais {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-gold);
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.btn-saiba-mais:hover {
    background-color: var(--primary-gold);
    color: var(--rich-brown);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* =========================================
   Grid Mode (Toggle Ver Todos)
   ========================================= */
.carousel-container.grid-mode .carousel-controls {
    display: none;
}

.carousel-container.grid-mode .carousel-inner {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 40px 30px !important;
    width: 100% !important;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    transform: none !important; /* Desativa deslocamentos horizontais do JS */
    flex-direction: unset !important; /* Previne conflito caso use flex */
}

/* Neutraliza o .carousel-slide para que ele seja apenas um grid item transparente */
.carousel-container.grid-mode .carousel-slide {
    min-width: unset !important;
    flex: unset !important;
    width: 100% !important;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

/* Configuração interna de cada card quando estiver no modo Grid */
.carousel-container.grid-mode .project-card {
    display: flex !important;
    flex-direction: column !important; /* Organiza Imagem em cima e Texto embaixo */
    width: 100% !important;
    height: 100%;
    background: rgba(25, 17, 14, 0.4); /* Fundo sutil para unificar o bloco do card */
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
    margin: 0;
    gap: 0;
}

/* Ajuste das Imagens dos Projetos no modo Grid */
.carousel-container.grid-mode .project-image-box {
    width: 100% !important;
    flex: unset !important;
}

.carousel-container.grid-mode .project-image-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: none; /* Remove a sombra pesada do destaque */
}

/* Ajuste dos Textos no modo Grid */
.carousel-container.grid-mode .project-content-box {
    width: 100% !important;
    flex: 1 !important; /* Faz o conteúdo ocupar o espaço restante no card */
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    gap: 15px; /* Adiciona respiro natural entre título, texto e botão */
}

@media (max-width: 768px) {
    .carousel-container.grid-mode .carousel-inner {
        grid-template-columns: 1fr !important;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.btn-premium {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--charcoal-black);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.btn-premium:hover {
    background-color: var(--primary-gold-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* =========================================
   Galeria Cultural (Masonry/Grid)
   ========================================= */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    grid-auto-rows: 200px;
}

.gallery-item {
    background-color: #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
    filter: brightness(0.9);
}

/* Make some items taller for masonry effect if supported */
.gallery-item:nth-child(2), .gallery-item:nth-child(5) {
    grid-row: span 2;
}

/* =========================================
   Contato
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 800px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1.5fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
}

.info-item {
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
    color: var(--primary-gold);
    font-weight: 500;
}

.social-links a:hover {
    background-color: var(--primary-gold);
    color: var(--charcoal-black);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    background-color: rgba(255,255,255,0.9);
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--primary-gold);
}

/* =========================================
   Footer
   ========================================= */
footer, .footer {
    background-color: #111;
    color: #888;
    padding: 4rem 0 2rem;
    text-align: center;
}



/* =========================================
   Páginas Internas - Pousada e Supermercado
   ========================================= */

.internal-hero {
    padding-top: 120px; /* Offset para a navbar */
    padding-bottom: 4rem;
    text-align: center;
    background-color: var(--charcoal-black);
    color: var(--natural-beige);
}

.internal-hero h1 {
    color: var(--primary-gold);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.internal-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .items-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.item-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.item-card:hover {
    transform: translateY(-5px);
}

.item-image {
    height: 200px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
    font-family: var(--font-heading);
}

.item-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-info h3 {
    color: var(--rich-brown);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.item-info p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.item-info .btn-outline, .item-info .cta-button {
    text-align: center;
    width: 100%;
}

.location-box {
    background-color: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
    margin-top: 2rem;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    margin-top: 1rem;
    border-radius: 4px;
}

.cart-summary {
    background-color: var(--rich-brown);
    color: var(--natural-beige);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cart-summary h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.cart-summary .cta-button {
    margin-top: 1rem;
    display: inline-block;
}

/* =========================================
   Componentes de Projetos (Refatorados)
   ========================================= */

/* Header / Navbar Global Update */


.back-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--natural-beige);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-link:hover {
    color: var(--primary-gold);
}

/* Page Header (Projetos Estáticos) */
.page-header {
    padding-top: 120px;
    padding-bottom: 3rem;
    text-align: center;
    background-color: var(--charcoal-black);
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.titulo-obra-destaque {
    font-family: 'Kenjo II', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.subtitle-principal {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-heading);
    font-style: italic;
}

.subtitle-poema {
    font-size: 0.95rem;
    color: rgba(242, 230, 216, 0.8);
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-family: var(--font-body);
    font-style: italic;
    line-height: 1.5;
}

/* Cinematic Hero (Video Background) */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 0;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-section h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--natural-beige);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-section p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    font-family: var(--font-heading);
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 1rem auto 0;
}

/* Sobre Layout */
.sobre-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .sobre-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.sobre-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    object-fit: cover;
}

.sobre-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.highlight-text {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Portfólio */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--natural-beige);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-gold);
    color: var(--charcoal-black);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(26, 26, 26, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.card-overlay p {
    font-size: 0.9rem;
    color: var(--natural-beige);
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.portfolio-card:hover .card-overlay h3,
.portfolio-card:hover .card-overlay p {
    transform: translateY(0);
}

/* Imprensa e Premiações */
.premios-section {
    background-color: var(--rich-brown);
}

.premios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .premios-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.premio-item {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-gold);
    transition: var(--transition);
}

.premio-item:hover {
    transform: translateX(5px);
    background-color: rgba(0, 0, 0, 0.3);
}

.premio-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--natural-beige);
}

.premio-item p {
    color: var(--text-light);
    font-size: 1rem;
}

.premio-icon {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Modal Lightbox */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-gold);
    text-decoration: none;
    cursor: pointer;
}

.zoomable {
    cursor: pointer;
}

@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

/* Galeria Section Especial */
.gallery-section {
    padding: 3rem 0 6rem;
    background-color: var(--rich-brown);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-section .gallery-item {
    flex: 0 0 calc((100% - 3rem) / 3);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-section .gallery-item {
        flex: 0 0 100%;
    }
}

.gallery-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-section .gallery-item:hover img {
    transform: scale(1.05);
}

/* Robust Footer Base */
.footer-logo {
    height: 50px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-gold);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-gold);
    color: #111;
    transform: translateY(-3px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

/* =========================================
   Animações de Scroll
   ========================================= */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.215, 0.610, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   Transição de Página (Fade In/Out)
   ========================================= */
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1A1310;
    z-index: 9999;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

body.page-loaded .page-overlay {
    opacity: 0;
}

/* =========================================
   Cursor Customizado
   ========================================= */
@media (min-width: 1024px) {
    body, a, button, .card, .portfolio-card {
        cursor: none !important;
    }

    .custom-cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        background-color: #D49A36;
        border-radius: 50%;
        pointer-events: none;
        z-index: 999999;
        transform: translate3d(-50%, -50%, 0);
        transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border 0.2s ease;
        will-change: transform;
    }

    .custom-cursor.cursor-hover {
        width: 60px;
        height: 60px;
        background-color: rgba(212, 154, 54, 0.1);
        border: 2px solid #D49A36;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-gold);
    text-decoration: none;
    cursor: pointer;
}

.zoomable {
    cursor: pointer;
}

@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

/* Galeria Section Especial */
.gallery-section {
    padding: 3rem 0 6rem;
    background-color: var(--rich-brown);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-section .gallery-item {
    flex: 0 0 calc((100% - 3rem) / 3);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-section .gallery-item {
        flex: 0 0 100%;
    }
}

.gallery-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-section .gallery-item:hover img {
    transform: scale(1.05);
}

/* Robust Footer Base */
.footer-logo {
    height: 50px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-gold);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-gold);
    color: #111;
    transform: translateY(-3px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

/* =========================================
   Animações de Scroll
   ========================================= */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.215, 0.610, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   Transição de Página (Fade In/Out)
   ========================================= */
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1A1310;
    z-index: 9999;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

body.page-loaded .page-overlay {
    opacity: 0;
}

/* =========================================
   Cursor Customizado
   ========================================= */
@media (min-width: 1024px) {
    body, a, button, .card, .portfolio-card {
        cursor: none !important;
    }

    .custom-cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        background-color: #D49A36;
        border-radius: 50%;
        pointer-events: none;
        z-index: 999999;
        transform: translate3d(-50%, -50%, 0);
        transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border 0.2s ease;
        will-change: transform;
    }

    .custom-cursor.cursor-hover {
        width: 60px;
        height: 60px;
        background-color: rgba(212, 154, 54, 0.1);
        border: 2px solid #D49A36;
    }
}

@media (max-width: 1023px) {
    .custom-cursor {
        display: none !important;
    }
}

/* =========================================
   Seção Responsável (Biografia)
   ========================================= */
.bio-section {
  background-color: #1A1310;
  padding: 100px 40px;
  display: flex;
  justify-content: center;
}
.bio-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}

.bio-image-frame {
  border: 1px solid rgba(212, 154, 54, 0.25);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  flex: 1;
}
.bio-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.bio-text-box {
  flex: 1.2;
}
.bio-title {
  font-size: 2.5rem;
  color: #8C7A6B;
  margin: 0;
  font-weight: 600;
  font-family: var(--font-heading);
}
.bio-divider {
  width: 60px;
  height: 4px;
  background-color: #D49A36;
  margin: 20px 0 30px 0;
}
.bio-paragraph {
  color: #D5CDC4;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.highlight-text {
  color: #D49A36;
  font-weight: 600;
}

@media (max-width: 768px) {
    .bio-container {
        flex-direction: column;
        text-align: center;
    }
    .bio-divider {
        margin: 20px auto;
    }
}

/* =========================================
   Seção Repertório
   ========================================= */
.repertoire-section {
    background-color: #1A1310;
    padding: 80px 20px;
}
.repertoire-main-title {
    text-align: center;
    color: #ffffff;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    font-family: var(--font-heading);
}
.repertoire-title-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 10px 0 0 0;
}
.repertoire-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 1100px;
    margin: 40px auto 0 auto;
}
.track-card {
    cursor: pointer;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    text-align: left;
}
.track-card:hover {
    border-bottom-color: #D49A36;
}
.track-card.playing {
    border-bottom-color: #D49A36;
}
.track-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 0;
    transition: color 0.3s ease;
    font-family: var(--font-heading);
}
.track-card:hover .track-title, .track-card.playing .track-title {
    color: #D49A36;
}
.track-meta {
    color: #E5DDD3;
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    font-family: var(--font-body);
}


@media (max-width: 768px) {
    .repertoire-main-title {
        font-size: 2.5rem;
    }
    .repertoire-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   MODAL DE OBRAS E ESPETÁCULOS (GIL MENDES)
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 10, 8, 0.95);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #1A1310;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease, color 0.2s ease;
}

.modal-close-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.modal-content-layout {
    display: flex;
    gap: 40px;
    align-items: center;
}

.modal-slider-box {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-holder {
    width: 100%;
    text-align: center;
}

#modal-display-img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: opacity 0.3s ease-in-out;
}

.slider-arrow {
    position: absolute;
    z-index: 10;
    pointer-events: auto;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--primary-gold);
    color: #1A1310;
}

.prev-arrow {
    left: -20px;
}

.next-arrow {
    right: -20px;
}

.modal-info-box {
    flex: 1;
}

#modal-obra-title {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

#modal-obra-description {
    font-family: var(--font-body);
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 20px;
}

/* Responsivo para o Modal */
@media (max-width: 768px) {
    .modal-content-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .modal-container {
        padding: 30px 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    #modal-display-img {
        max-height: 300px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .prev-arrow {
        left: -10px;
    }
    
    .next-arrow {
        right: -10px;
    }
    
    #modal-obra-title {
        font-size: 1.8rem;
    }
}

/* =========================================
   Galeria Cultural (Mosaico Dinâmico)
   ========================================= */
.cultural-gallery-section {
    background-color: #1A1310; /* Tom escuro padrão do site */
    padding: 80px 10%;
    width: 100%;
}
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 220px; /* Altura base para as linhas do mosaico */
    gap: 20px;
    margin-top: 40px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta e adapta a imagem ao espaço sem distorcê-la */
    transition: transform 0.6s ease;
}

/* Efeito de destaque ao passar o mouse */
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 154, 54, 0.3); /* Sombra dourada sutil */
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lógica do Mosaico: Faz algumas imagens ocuparem mais espaço aleatoriamente (se o tamanho permitir) */
.gallery-item.wide {
    grid-column: span 2;
}
.gallery-item.tall {
    grid-row: span 2;
}
.gallery-item.big {
    grid-column: span 2;
    grid-row: span 2;
}

/* Responsividade para Celulares */
@media (max-width: 768px) {
    .cultural-gallery-section {
        padding: 60px 5%;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .gallery-item.wide, .gallery-item.tall, .gallery-item.big {
        grid-column: unset !important;
        grid-row: unset !important;
    }
}
