/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;

    /* AZUL E LARANJA NEON VIBRANTES */
    background-color: #030308; /* Fundo levemente mais profundo para realçar as cores */
    background-image: 
        /* Azul Neon Superior (Mais forte e saturado) */
        radial-gradient(circle at 5% 5%, rgba(0, 140, 255, 0.6) 0%, transparent 45%),
        /* Laranja Neon Inferior (Vibrante) */
        radial-gradient(circle at 95% 95%, rgba(255, 115, 0, 0.5) 0%, transparent 45%),
        /* Ponto de luz Azul Médio para preencher o centro */
        radial-gradient(circle at 20% 60%, rgba(0, 102, 255, 0.3) 0%, transparent 40%),
        /* Grade tecnológica brilhante */
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    
    background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    background-attachment: fixed;
}
/* Container padrão */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header com imagem do evento */
.event-header {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.event-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.event-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image-placeholder p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.event-logo {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.event-info {
    text-align: center;
}

.event-location,
.event-dates {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    margin: 5px 0;
}

/* Navegação */
.main-nav {
    background: #000000;
    border-bottom: 1px solid #262626;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.95);
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.nav-list li {
    margin: 0 20px;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 20px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
    color: #E1306C;
    border-bottom-color: #E1306C;
}

/* Seções */
section {
    padding: 80px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E1306C, transparent);
    opacity: 0.5;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #E1306C, #C13584);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #8e8e8e;
}

/* Seção de Convidados */
.guests-section {
   background: transparent;}

.guests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.guest-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #262626;
    position: relative;
}

.guest-card:hover {
    transform: translateY(-5px);
    border-color: #E1306C;
}

.guest-photo {
    width: 100%;
    height: 250px;
    background: #262626;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder {
    color: #8e8e8e;
    font-weight: 600;
    font-size: 14px;
}

.guest-info {
    padding: 20px;
}

.guest-name {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.guest-description {
    color: #8e8e8e;
    margin-bottom: 15px;
    font-size: 14px;
}

.follow-btn {
    background: #E1306C;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.follow-btn:hover {
    background: #C13584;
}

/* Seção Cosplay */
.cosplay-section {
    background: background: transparent;
}

.cosplay-days {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.day-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid #262626;
    transition: transform 0.3s ease;
}

.day-card:hover {
    transform: translateY(-5px);
    border-color: #833AB4;
}

.day-number {
    font-size: 3rem;
    font-weight: 900;
    color: #E1306C;
    display: block;
    line-height: 1;
}

.day-name {
    color: #8e8e8e;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.day-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.day-description {
    color: #8e8e8e;
    margin-bottom: 25px;
    font-size: 14px;
}

.register-btn {
    background: linear-gradient(45deg, #405DE6, #833AB4, #E1306C);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s ease;
    text-transform: uppercase;
}

.register-btn:hover {
    transform: scale(1.05);
}

/* NOVA SEÇÃO: Atividades (Galeria 8 fotos) */
.atividades-section {
   background: transparent;
}

.atividades-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas no PC */
    gap: 15px;
    margin-top: 40px;
}

.atividade-card {
    background: #1a1a1a;
    aspect-ratio: 1 / 1; /* Mantém as imagens quadradas */
    border-radius: 8px;
    border: 1px solid #262626;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.atividade-card:hover {
    transform: scale(1.03);
    border-color: #F56040;
}

/* NOVA SEÇÃO: Contato */
.contato-section {
    background: background: transparent;
    text-align: center;
}

.contato-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.contato-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.email-link {
    display: block;
    color: #8e8e8e;
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #E1306C;
}

.social-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-btn {
    padding: 12px 25px;
    border-radius: 25px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.btn-insta {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.btn-tiktok {
    background: #000000;
    border: 1px solid #25F4EE;
    box-shadow: 2px 2px 0px #FE2C55;
}

.btn-youtube {
    background: #FF0000;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #262626;
}

.footer p {
    color: #555555;
    font-size: 14px;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .event-header { height: 250px; }
    .event-logo { font-size: 2.5rem; }
    
    .nav-list { flex-direction: column; text-align: center; }
    .nav-list li { margin: 0; }
    .nav-list a { padding: 12px 0; }
    
    .guests-grid, .cosplay-days {
        grid-template-columns: 1fr;
    }
    
    /* REGRA ESTRITA: 2 Imagens lado a lado no celular para Atividades */
    .atividades-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .event-header { height: 200px; }
    .event-logo { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}
.guest-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}
/* Configuração para os dois convidados ocuparem bem o espaço */
.guests-grid-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas no PC */
    gap: 40px;
    margin-top: 50px;
}

/* Container que se adapta à altura da foto */
.guest-photo-container {
    width: 100%;
    background: #1a1a1a;
    display: block; /* Permite que a altura seja definida pelo conteúdo */
    overflow: hidden;
}

/* A foto agora define a altura do card */
.guest-img-alongada {
    width: 100%;
    height: auto; /* Mantém a proporção original da foto (alongada) */
    display: block;
    object-fit: contain; /* Garante que a foto apareça inteira */
}

.card-alongado {
    max-width: 350px; /* Largura máxima para não ficar exagerado no PC */
    margin: 0 auto;
    border: 2px solid #c52965;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

/* Ajuste para Celular */
@media (max-width: 768px) {
    .guests-grid-duo {
        grid-template-columns: 1fr; /* Um embaixo do outro no celular */
        gap: 30px;
    }
}

.event-logo {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
 
    text-shadow: 0px 4px 15px rgba(19, 2, 2, 0.9), 0px 0px 30px rgba(0, 0, 0, 0.5);
}


.event-location,
.event-dates {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    margin: 5px 0;
    text-align: center;
  
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.9);
}

/* Estilo do Pôster Único */
.main-poster-container {
    width: 100%;
    max-width: 900px; /* Ajuste conforme o formato do seu pôster */
    margin: 0 auto 40px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid #262626;
}

.main-poster-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Sombra nos textos do Header (como você pediu) */
.event-logo, .event-location, .event-dates {
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.9), 0px 0px 30px rgba(0, 0, 0, 0.5);
}

/* Ajuste dos cards individuais */
.guests-grid-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.guest-img-alongada {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsividade */
@media (max-width: 768px) {
    .guests-grid-duo {
        grid-template-columns: 1fr;
    }
    .main-poster-container {
        margin-bottom: 20px;
    }
}
/* Container dos dois convidados */
.guests-grid-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: start; /* Alinha os cards pelo topo */
}

/* O Card Principal */
.card-alongado {
    display: flex;
    flex-direction: column; /* Foto em cima, texto embaixo */
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #262626;
    height: 100%; /* Faz os dois cards terem a mesma altura */
}

/* --- AJUSTE PARA IMAGEM DAS CONVIDADAS NO CELULAR --- */
@media (max-width: 768px) {
    .guest-img-alongada {
        /* 'cover' faz a foto preencher 100% da largura e altura do container */
        /* Ele corta levemente as bordas se necessário para não deixar buracos */
        object-fit: cover !important; 
        
        /* Garante que o foco da imagem seja no topo (rosto das dubladoras) */
        object-position: top center; 
        
        width: 100%;
        height: 100%;
    }

    .guest-photo-container {
        /* Define uma altura fixa para o campo da foto no celular */
        height: 400px; 
        overflow: hidden;
    }
}

.guest-img-alongada {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: top; 
}


.guest-info {
    padding: 25px;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.expandable-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.expandable-img:hover {
    transform: scale(1.05);
}


.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    cursor: zoom-out;
}


.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {transform: scale(0.7); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}


.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Container da Chamada de Ingressos */
.ticket-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(225, 48, 108, 0.05); /* Fundo sutil rosa */
    border-radius: 15px;
    border: 1px dashed #E1306C;
}

.cta-phrase {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}

.main-ticket-btn {
    display: inline-block;
    background: linear-gradient(45deg, #E1306C, #FD1D1D);
    color: #fff;
    text-decoration: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
    transition: all 0.3s ease;
}

.main-ticket-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(225, 48, 108, 0.5);
    filter: brightness(1.1);
}

/* Ajuste nos cards para remover os botões individuais se preferir focar no geral */
.guest-card .follow-btn {
    display: none; /* Opcional: remove o botão dentro do card se quiser apenas o grande embaixo */
}/* Frase de chamada no topo */
.cta-phrase-top {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
}

/* Ajuste do Card para alinhar o botão sempre embaixo */
.guest-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Empurra o botão para o fim do card */
    text-align: center;
}

/* Estilo do Botão Individual */
.ticket-btn {
    display: block;
    background: linear-gradient(45deg, #E1306C, #FD1D1D);
    color: #fff;
    text-decoration: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: 900;
    border-radius: 8px;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.ticket-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
}

/* Ajuste de Proporção no PC (mantendo o que corrigimos) */
.guest-photo-container {
    width: 100%;
    height: 400px; /* Evita que o card fique gigante no monitor */
    overflow: hidden;
}

.guest-img-alongada {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Seção VIP */
.vip-section {
    padding: 60px 0;
  background: transparent;
}

.vip-card {
    max-width: 800px; /* Mais largo que as dubladoras para dar destaque */
    margin: 0 auto;
    background: #111;
    border: 2px solid #ffd700; /* Borda Dourada */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.vip-card:hover {
    transform: scale(1.02);
}

.vip-photo-container {
    position: relative;
    width: 100%;
    height: 350px; /* Altura ideal para banners VIP */
    overflow: hidden;
}

.vip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vip-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffd700;
    color: #000;
    padding: 5px 15px;
    font-weight: 900;
    border-radius: 5px;
    font-size: 0.8rem;
}

.vip-info {
    padding: 40px;
    text-align: center;
}

.vip-title {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.vip-description {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-phrase-vip {
    font-weight: bold;
    color: #fff;
    margin-bottom: 25px;
}

/* Botão VIP Dourado */
.vip-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #b8860b);
    color: #000;
    text-decoration: none;
    padding: 20px 60px;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.vip-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.6);
    filter: brightness(1.2);
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .vip-photo-container { height: 250px; }
    .vip-title { font-size: 1.8rem; }
    .vip-btn { width: 100%; padding: 15px; font-size: 1.1rem; }
}
/* --- AJUSTES PARA CELULAR (Mobile First/Responsive) --- */

@media (max-width: 768px) {
    /* 1. Ajuste do Título Principal (Não sai mais da tela) */
    .event-logo {
        font-size: 2.2rem !important; /* Diminui o tamanho */
        word-wrap: break-word;
        width: 100%;
        padding: 0 10px;
        line-height: 1.1;
    }

    .event-header {
        height: 300px; /* Reduz a altura da capa no celular */
    }

    /* 2. Menu Hambúrguer (As 3 barrinhas) */
    .menu-mobile-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
        cursor: pointer;
    }

    .menu-mobile-btn span {
        width: 100%;
        height: 3px;
        background: #E1306C;
        border-radius: 10px;
        transition: 0.3s;
    }

    /* 3. Escondendo a Navegação Horizontal e criando o Menu Lateral */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Escondido fora da tela */
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        transition: 0.4s;
        z-index: 1000;
        padding-top: 80px;
    }

    .main-nav.active {
        right: 0; /* Aparece ao clicar */
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
    }

    .nav-list li {
        margin: 20px 0;
    }

    /* 4. Convidadas uma embaixo da outra */
    .guests-grid-duo {
        grid-template-columns: 1fr !important; /* Força 1 coluna */
        gap: 20px;
    }

    .card-alongado {
        max-width: 100%; /* Ocupa a largura total disponível */
    }

    .guest-photo-container {
        height: 350px; /* Ajusta a altura da foto no celular */
    }
}

/* Esconde o botão do menu no PC */
@media (min-width: 769px) {
    .menu-mobile-btn {
        display: none;
    }
}
/* ==========================================================================
   HEADER & CAPA (BANNER) - AJUSTE GLOBAL
   ========================================================================== */

/* Container principal do Header */
.event-header {
    position: relative;
    width: 100%;
    height: 450px; /* Altura padrão no PC */
    overflow: hidden;
    background-color: #000; /* Fundo de segurança */
    z-index: 1; /* Garante que fique abaixo do menu sticky */
}

/* Container da imagem de fundo */
.event-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Imagem na camada base */
}

/* A imagem em si */
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cobre todo o espaço sem distorcer */
    object-position: center; /* Centraliza a imagem */
}

/* Camada escura por cima da imagem para dar contraste */
.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Filme escuro (60% opacidade) */
    display: flex;
    align-items: center; /* Centraliza verticalmente o conteúdo */
    justify-content: center; /* Centraliza horizontalmente o conteúdo */
    z-index: 2; /* Acima da imagem, abaixo do texto */
}

/* Container de texto dentro da overlay */
.event-overlay .container {
    position: relative;
    z-index: 3; /* Texto na camada mais alta */
    text-align: center;
    width: 100%;
}

/* Estilo do Título Principal (GEEK DAY) no PC */
.event-logo {
    font-size: 5rem; /* Tamanho grande no PC */
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* Sombra pesada para leitura fácil sobre a imagem */
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 1), 0px 0px 30px rgba(0, 0, 0, 0.8);
}

/* Estilo das Info (Localização, Datas) no PC */
.event-location,
.event-dates {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 5px 0;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.9);
}

/* ==========================================================================
   AJUSTES ESPECÍFICOS PARA MOBILE (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    .event-header {
        height: 300px; /* Reduz a altura da capa no celular */
    }

    /* Reduz o tamanho do título para caber na tela do celular */
    .event-logo {
        font-size: 2.2rem !important; /* Força o tamanho menor */
        letter-spacing: 1px;
        padding: 0 15px;
        line-height: 1.1;
    }

    .event-location,
    .event-dates {
        font-size: 1.1rem; /* Reduz as info no celular */
    }
}
/* Ajuste do Header para conter a imagem melhor */
.event-header {
    position: relative;
    width: 100%;
    height: 450px; /* Altura no PC */
    overflow: hidden;
    background-color: #000;
}

.banner-img {
    width: 100%;
    height: 100%;
    /* O 'cover' preenche o espaço, o 'center' garante que o meio da foto nunca suma */
    object-fit: cover; 
    object-position: center center; 
}

/* Ajuste específico para Celular */
@media (max-width: 768px) {
    .event-header {
        height: 250px; /* Diminuímos a altura para a imagem não precisar dar tanto zoom */
    }
    
    .banner-img {
        /* No celular, centralizamos com foco total no meio da arte */
        object-fit: cover;
        object-position: center center;
    }
}
@media (max-width: 768px) {
    .guest-img-alongada {
        /* 'contain' faz a foto inteira caber dentro do quadrado sem cortar os lados */
        object-fit: contain; 
        background-color: #1a1a1a; /* Fundo escuro para preencher caso a foto seja estreita */
    }
}/* --- AJUSTES APENAS PARA CELULAR --- */
@media (max-width: 768px) {
    
    /* 1. Ajuste do container da Capa */
    .event-header {
        height: auto;        /* Deixa a altura se ajustar ao conteúdo */
        min-height: 200px;   /* Altura mínima para não sumir */
        aspect-ratio: 16 / 9; /* Mantém a proporção da imagem para não cortar as bordas */
    }

    .event-image-container {
        position: relative; /* Muda de absolute para relative para respeitar o tamanho real */
    }

    .banner-img {
        width: 100%;
        height: auto;
        object-fit: contain; /* IMPORTANTE: Garante que a imagem inteira apareça sem cortes */
        object-position: center; /* Centraliza a imagem na tela */
    }

    /* 2. Ajuste do Título e Overlay no Mobile */
    .event-overlay {
        position: absolute;
        background: rgba(0, 0, 0, 0.4); /* Deixa um pouco mais claro para ver a arte */
    }

    .event-logo {
        font-size: 1.8rem !important; /* Diminui o título para não cobrir a arte */
        margin-bottom: 5px;
    }

    .event-location, .event-dates {
        font-size: 0.9rem;
    }
}
/* Localize este bloco no final do seu style.css */
@media (max-width: 768px) {
    
    /* ... outros códigos ... */

    .event-logo {
        font-size: 1.8rem !important;
        margin-bottom: 5px;
        /* Sombras múltiplas: uma preta bem forte e definida, outra mais esfumaçada */
        text-shadow: 
            2px 2px 10px rgba(0, 0, 0, 1), 
            0px 0px 25px rgba(0, 0, 0, 1),
            0px 0px 5px rgba(0, 0, 0, 0.8);
        font-weight: 900;
    }

    .event-location, .event-dates {
        font-size: 0.9rem;
        /* Sombra forte também para as informações menores */
        text-shadow: 
            1px 1px 8px rgba(0, 0, 0, 1),
            0px 0px 15px rgba(0, 0, 0, 1);
        font-weight: 700; /* Aumentar o peso da fonte ajuda na leitura */
    }

    /* 2. DICA EXTRA: Escurecer um pouco mais o fundo apenas atrás do texto */
    .event-overlay {
        background: rgba(0, 0, 0, 0.55); /* Aumentamos de 0.4 para 0.55 */
    }
}