/* Loading Animation Styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeOutOverlay 0.8s ease-in-out 3.5s forwards;
}

.animation-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.summit-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
    animation: premiumLogoAnimation 3s ease-in-out forwards;
}

.summit-logo img {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.3));
}

@keyframes premiumLogoAnimation {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0;
        filter: blur(10px);
    }
    30% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
        filter: blur(0px);
    }
    70% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        filter: blur(0px);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
        filter: blur(5px);
    }
}

@keyframes fadeOutOverlay {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .summit-logo img {
        width: 250px;
    }
}

/* Responsive Design for Mobile Content */
@media (max-width: 768px) {
    .summit-logo img {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .rocket {
        font-size: 2.5rem;
    }
    
    .summit-logo img {
        width: 200px;
    }
}

:root {
  /* Nova Paleta Vibrante */
  --primary-accent: #D84A4A;      /* Vermelho Vibrante */
  --secondary-accent: #3E7B9A;    /* Azul Esverdeado */
  --text-light: #FFFFFF;          /* Branco */
  --text-muted: rgba(255, 255, 255, 0.8); /* Branco com transparência */
  --card-background: rgba(26, 26, 46, 0.7); /* Fundo escuro semi-transparente */
  --card-border-color: rgba(255, 255, 255, 0.2);
  --danger-color: #E57373;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { height: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; margin: 0; color: var(--text-light); min-height: 100%; position: relative; z-index: 1; background-color: #1a1a2e; padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px)); }

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(rgba(10, 2, 20, 0.6), rgba(10, 2, 20, 0.6)), url('../img/bg.png'); /* Fundo com overlay */
    background-size: cover;
    background-position: center bottom;
    z-index: -1;
}

.page-container { max-width: 1200px; margin: 0 auto; padding: 15px; }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.4s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
.page-container h2 { color: var(--text-light); text-align: center; margin: 0; padding: 20px 0 30px 0; font-weight: 700; }

.bottom-menu {
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0px);
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 6px;
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    z-index: 1000;
    background-color: rgba(26, 26, 46, 0.9); /* Fundo escuro */
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--card-border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateZ(0);
    visibility: visible;
    opacity: 1;
}

.menu-button { display: flex; flex: 1; flex-direction: column; align-items: center; background: none; border: none; color: var(--text-muted); font-size: 0.8em; font-weight: 600; cursor: pointer; transition: color 0.3s ease, transform 0.2s ease; text-decoration: none; padding: 5px; position: relative; }
.menu-button i { font-size: 1.6em; margin-bottom: 5px; }
.menu-button.active { color: var(--primary-accent); }
.menu-button:hover:not(.active) { color: var(--text-light); }
.menu-button.active::before { content: ''; position: absolute; top: -11px; width: 30px; height: 4px; background-color: var(--primary-accent); border-radius: 2px; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px; }

.menu-card {
    background: var(--card-background);
    border: 1px solid var(--card-border-color);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-light);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 130px;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-accent);
}

/* Premium Card Style for JF Summit Black */
.premium-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #000000 100%);
    border: 2px solid #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s ease;
}

.premium-card:hover::before {
    left: 100%;
}

.premium-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    border-color: #ffd700;
}

.premium-card i {
    color: #ffd700 !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.premium-card h4 {
    color: #ffd700 !important;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* Wide Card Style for "Saiba mais sobre a Feat" */
.wide-card {
    grid-column: span 2;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    border: 2px solid #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.wide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
    border-color: #60a5fa;
}

.wide-card i {
    color: #60a5fa !important;
}

.wide-card h4 {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 5px;
}

.wide-card .card-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.85rem;
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

/* FEAT Icon Style (replacing FontAwesome icon) */
.feat-icon {
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #e91e63;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    line-height: 1;
    text-align: center;
}

/* Restaurant Cards */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.restaurant-card {
    background: var(--card-background);
    border: 1px solid var(--card-border-color);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.restaurant-card h3 {
    color: var(--primary-accent);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.restaurant-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-items h4 {
    color: var(--text-light);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary-accent);
    padding-bottom: 8px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item span {
    color: var(--text-light);
}

.menu-item .price {
    color: var(--secondary-accent);
    font-weight: 600;
}

/* Feat Info Styles */
.feat-info {
    text-align: center;
}

.feat-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.feat-logo i {
    font-size: 3rem;
    color: var(--primary-accent);
    margin-bottom: 10px;
}

.feat-logo h3 {
    color: var(--text-light);
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item i {
    color: var(--secondary-accent);
    font-size: 1.2rem;
}

.service-item span {
    color: var(--text-light);
    font-weight: 500;
}

.contact-info {
    margin-top: 30px;
    text-align: left;
}

.contact-info h4 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-light);
}

.contact-item i {
    color: var(--secondary-accent);
    width: 20px;
}

/* Photo Partners Styles */
.photo-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.photo-partner-card {
    background: var(--card-background);
    border: 1px solid var(--card-border-color);
    border-radius: 16px;
    padding: 0;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.partner-header {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    padding: 25px;
    text-align: center;
    position: relative;
}

.partner-header i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
}

.partner-header h3 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.partner-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.partner-info {
    padding: 25px;
}

.partner-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.partner-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.feature-item i {
    color: var(--secondary-accent);
    font-size: 0.9rem;
}

.feature-item span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.photo-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-accent);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.photo-gallery-btn:hover {
    background: var(--primary-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Accordion de Parceiros */
.partners-accordion {
    margin-top: 20px;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 15px;
    background: var(--card-background);
    backdrop-filter: blur(10px);
    border: 2px solid var(--card-border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--secondary-accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    text-align: left;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-accent));
    color: white;
}

.accordion-header i:first-child {
    font-size: 20px;
    color: var(--secondary-accent);
    width: 25px;
    text-align: center;
}

.accordion-header.active i:first-child {
    color: white;
}

.accordion-header i.arrow {
    transition: transform 0.3s ease;
    margin-left: 10px;
    color: var(--text-muted);
}

.accordion-header.active i.arrow {
    transform: rotate(180deg);
    color: white;
}

.accordion-header span {
    margin-left: 15px;
    flex-grow: 1;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    padding: 0 25px;
}

.accordion-content.active {
    max-height: 2000px;
    padding: 20px 25px;
}

.accordion-content .partner-card {
    margin-bottom: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.accordion-content .partner-card:last-child {
    margin-bottom: 0;
}

/* WhatsApp Official Card */
.whatsapp-official-card {
    background: var(--card-background);
    border: 2px solid #25d366;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.whatsapp-official-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) translateY(-50%) rotate(360deg); }
}

.whatsapp-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.whatsapp-header i {
    font-size: 3rem;
    margin-right: 20px;
    color: #25d366;
    text-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.whatsapp-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.4;
}

.whatsapp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 12px 16px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.feature i {
    color: #25d366;
    font-size: 1.1rem;
}

.feature span {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.whatsapp-join-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    color: #25d366;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whatsapp-join-btn:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #128c7e;
}

.whatsapp-join-btn i:first-child {
    font-size: 1.3rem;
}

.whatsapp-join-btn i:last-child {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .whatsapp-official-card {
        padding: 20px;
    }
    
    .whatsapp-header {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-header i {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .whatsapp-features {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-join-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

.menu-card i { font-size: 2.2em; color: var(--secondary-accent); margin-bottom: 15px; }
.menu-card h4 { margin: 0; font-size: 1em; font-weight: 600; }

.content-card, .schedule-card, .ticket-card, .speaker-card, .sponsor-tier {
    background-color: var(--card-background);
    border: 1px solid var(--card-border-color);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
}

.content-card h3 { color: var(--secondary-accent); margin-top: 0; }
.content-card p, .content-card li { line-height: 1.6; }

#cronograma-content .schedule-card h3 { font-size: 1.5em; color: var(--primary-accent); margin-top: 0; }
#cronograma-content .schedule-day { margin-bottom: 30px; border-bottom: 1px solid var(--card-border-color); padding-bottom: 20px; }
#cronograma-content .schedule-day:last-child { border-bottom: none; }
#cronograma-content .schedule-item { margin-bottom: 15px; padding: 15px; border-left: 4px solid var(--secondary-accent); background-color: rgba(0,0,0,0.2); border-radius: 8px; position: relative; }
.schedule-item.current-event { background-color: rgba(216, 74, 74, 0.2); border-left-color: var(--primary-accent); }
.schedule-item.current-event::after { content: 'ACONTECENDO'; position: absolute; top: 15px; right: 15px; font-size: 0.7em; font-weight: bold; color: var(--primary-accent); background-color: var(--card-background); border: 1px solid var(--primary-accent); padding: 3px 8px; border-radius: 10px; }
#cronograma-content .schedule-item strong { display: block; font-size: 1.1em; margin-bottom: 5px; color: var(--text-light); }
#cronograma-content .schedule-item span { color: var(--text-muted); }

/* New Schedule Grid Styles */
.schedule-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.schedule-tab {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2); /* Borda padrão */
    color: #e0e0e0;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.schedule-tab.active {
    background: var(--primary-accent); /* Cor de destaque para aba ativa */
    border-color: var(--primary-accent);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(216, 74, 74, 0.3);
    transform: translateY(-2px);
}

.schedule-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.schedule-grid-container {
    display: none;
    overflow-x: auto;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.schedule-grid-container.active-schedule {
    display: block;
}

.schedule-grid {
    min-width: 980px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

/* Schedule Header Grid */
.schedule-header {
    display: grid;
    grid-template-columns: 80px repeat(5, 1fr);
    background: rgba(0, 0, 0, 0.8);
    gap: 1px;
    margin-bottom: 2px;
}

/* Schedule Row Grid */
.schedule-row {
    display: grid;
    grid-template-columns: 80px repeat(5, 1fr);
    gap: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin-bottom: 1px;
    min-height: 60px;
    align-items: stretch;
}

/* ================= CRONOGRAMA FUNCIONAL ================= */
.timeline-header {
    display: grid;
    grid-template-columns: 80px repeat(5, 1fr);
    background: rgba(0, 0, 0, 0.8);
    gap: 1px;
    margin-bottom: 2px;
}

.schedule-header .time-column-header,
.schedule-header .venue-header {
    padding: 12px 8px;
    background: rgba(0, 0, 0, 0.9);
    color: var(--accent-color, #ff9800);
    font-weight: bold;
    text-align: center;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 165, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Controle de visibilidade dos dias */
.schedule-day {
    display: none;
}

.schedule-day.active-schedule {
    display: block;
}

.timeline-day {
    display: grid !important;
    grid-template-columns: 80px repeat(5, 1fr);
    gap: 1px;
    background: rgba(0, 0, 0, 0.1);
    /* A linha abaixo é a chave: 
      Cria linhas de altura fixa (80px) automaticamente para cada marcador de tempo.
    */
    grid-auto-rows: 80px; 
}

/* Configurações específicas para cada dia */
#day2 .timeline-day {
    grid-template-rows: repeat(23, 80px) !important; /* 23 slots para dia 2 que vai até 20:00 */
}

.time-slot {
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent-color);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-right: 1px solid rgba(255, 165, 0, 0.2);
    border-bottom: 1px solid rgba(255, 165, 0, 0.1);
    font-size: 0.85rem;
    height: 80px; /* Altura fixa para cada slot de 30min */
}

.event-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 8px;
    padding: 6px 8px;
    color: #ffffff;
    backdrop-filter: blur(5px);
    margin: 3px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    align-self: start;
    font-size: 0.75rem;
    line-height: 1.2;
}

.event-card.empty {
    background: transparent;
    border: none;
    pointer-events: none;
    margin: 0;
}

/* Identificação visual por coluna */
.event-card[style*="grid-column: 2"] {
    border-left: 4px solid #ff9800; /* Plenária - Laranja */
}

.event-card[style*="grid-column: 3"] {
    border-left: 4px solid #2196f3; /* Arena GPME Summit - Azul */
}

.event-card[style*="grid-column: 4"] {
    border-left: 4px solid #9c27b0; /* Arena Moinho - Roxo */
}

.event-card h4 {
    font-size: 0.8rem;
    margin: 0 0 3px 0;
    line-height: 1.1;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.event-card p {
    font-size: 0.65rem;
    margin: 0 0 4px 0;
    line-height: 1.2;
    opacity: 0.9;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    flex: 1;
}

.event-card .duration {
    display: none;
}

/* Estilos para cards pequenos (15, 30 e 45 minutos) */
.event-card[data-duration="15"] h4,
.event-card[data-duration="30"] h4 {
    font-size: 0.7rem;
    margin: 0 0 2px 0;
    line-height: 1.0;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.event-card[data-duration="45"] h4 {
    font-size: 0.68rem;
    margin: 0 0 2px 0;
    line-height: 1.0;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.event-card[data-duration="15"] p,
.event-card[data-duration="30"] p {
    font-size: 0.55rem;
    margin: 0 0 2px 0;
    line-height: 1.1;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.event-card[data-duration="45"] p {
    font-size: 0.55rem;
    margin: 0 0 3px 0;
    line-height: 1.1;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.event-card[data-duration="15"] {
    padding: 4px 6px;
    font-size: 0.65rem;
}

.event-card[data-duration="45"] {
    padding: 5px 7px;
}

/* Para cards muito pequenos (15 minutos), reduzir ainda mais */
.event-card[data-duration="15"] h4 {
    font-size: 0.65rem;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.event-card[data-duration="15"] p {
    font-size: 0.5rem;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

/* Timeline lateral com marcadores de 30 em 30 minutos */
.schedule-timeline-column {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.time-marker {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent-color);
    font-weight: bold;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

/* Timeline de referência */
.timeline-reference {
    margin: 30px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 2px;
    max-width: 100%;
    overflow-x: auto;
}

.timeline-grid .time-marker {
    height: 40px;
    background: rgba(255, 165, 0, 0.2);
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    font-size: 0.75rem;
    color: white;
    transition: all 0.3s ease;
}

.timeline-grid .time-marker:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

/* Cada linha já é um grid completo (removido display: contents) */

.time-slot {
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent-color);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-right: 1px solid rgba(255, 165, 0, 0.2);
    border-bottom: 1px solid rgba(255, 165, 0, 0.1);
    font-size: 0.85rem;
    min-height: 60px;
}

/* Cards vazios devem ser invisíveis */
/* Placeholders visíveis apenas como espaço vazio - mantêm layout */
.event-card.empty {
    background: transparent;
    border: none;
    pointer-events: none;
}

/* Classe específica para Arena Moinho (terceira coluna) */
/* Cores diferenciadas por arena */
.gpme-arena { border-color: rgba(59,130,246,0.5); box-shadow: 0 0 0 1px rgba(59,130,246,0.3) inset; }
.gpme-arena h4 { color: #3b82f6; }
.moinho-arena { border-color: rgba(168,85,247,0.5); box-shadow: 0 0 0 1px rgba(168,85,247,0.3) inset; }
.moinho-arena h4 { color: #a855f7; }

/* Legenda das arenas */
.schedule-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin: -10px 0 25px 0;
    font-size: 0.85rem;
}
.schedule-legend .legend-item { display: flex; align-items: center; gap: 6px; color: var(--text-muted); }
.legend-color { width: 16px; height: 16px; border-radius: 4px; display: inline-block; box-shadow: 0 0 0 1px rgba(255,255,255,0.15); }
.legend-plenaria { background: linear-gradient(135deg,#444,#222); }
.legend-gpme { background: #3b82f6; }
.legend-moinho { background: #a855f7; }
.legend-happy { background: linear-gradient(135deg,#ff9800,#ff5722); }

@media (max-width:600px){
    .schedule-legend { flex-direction: column; align-items: flex-start; padding: 0 10px; }
}

.happy-hour-section {
    display: grid;
    grid-template-columns: 80px 1fr;
    font-size: 0.7rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-top: auto;
}

/* Arena-specific colors */
.event-card.main-stage {
    border-left: 4px solid var(--accent-color);
}

.event-card.tech-arena {
    border-left: 4px solid #4a9eff;
}

.event-card.business-arena {
    border-left: 4px solid #ff8c42;
}

.event-card.wellness-arena {
    border-left: 4px solid #6bcf7f;
}

.event-card.happy-hour {
    background: rgba(255, 165, 0, 0.2);
    border-left: 4px solid var(--accent-color);
    border-color: rgba(255, 165, 0, 0.4);
}

/* Happy Hour Full Width Row */
.happy-hour-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin-bottom: 1px;
    min-height: 80px;
    align-items: stretch;
}

.event-card.happy-hour-full {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 165, 0, 0.4);
    border-left: 6px solid var(--accent-color);
    text-align: center;
    padding: 1.5rem;
    min-height: 100px;
    backdrop-filter: blur(8px);
    grid-column: 2;
    margin: 3px;
}

.event-card.happy-hour-full:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 165, 0, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.event-card.happy-hour-full h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.event-card.happy-hour-full p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.event-card.happy-hour-full .duration {
    display: none;
}

@media (max-width: 768px) {
    .schedule-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .schedule-tab {
        width: 200px;
        text-align: center;
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    .schedule-grid {
        min-width: 900px;
    }

    .schedule-header,
    .schedule-row {
        grid-template-columns: 60px repeat(5, 1fr);
    }
    
    .happy-hour-row {
        grid-template-columns: 60px 1fr;
    }
    
    .time-slot,
    .schedule-header .time-column-header,
    .schedule-header .venue-header {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .event-card {
        padding: 4px 6px;
        min-height: 50px;
        font-size: 0.7rem;
    }
    
    .event-card h4 {
        font-size: 0.7rem;
        margin: 0 0 2px 0;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .event-card p {
        font-size: 0.6rem;
        margin: 0 0 2px 0;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    /* Cards pequenos no mobile precisam ser ainda menores */
    .event-card[data-duration="15"],
    .event-card[data-duration="30"] {
        padding: 3px 4px;
        min-height: 40px;
    }
    
    .event-card[data-duration="45"] {
        padding: 3px 5px;
        min-height: 45px;
    }
    
    .event-card[data-duration="15"] h4,
    .event-card[data-duration="30"] h4 {
        font-size: 0.6rem;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        margin: 0 0 1px 0;
    }
    
    .event-card[data-duration="45"] h4 {
        font-size: 0.6rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        margin: 0 0 2px 0;
    }
    
    .event-card[data-duration="15"] p,
    .event-card[data-duration="30"] p {
        font-size: 0.5rem;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        margin: 0;
    }
    
    .event-card[data-duration="45"] p {
        font-size: 0.5rem;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        margin: 0;
    }
    
    .event-card[data-duration="15"] h4 {
        font-size: 0.55rem;
    }
    
    .event-card[data-duration="15"] p {
        font-size: 0.45rem;
    }
    
    .event-card .duration {
        font-size: 0.65rem;
    }
    
    .event-card.happy-hour-full {
        padding: 1rem;
        min-height: 80px;
    }
    
    .event-card.happy-hour-full h4 {
        font-size: 1rem;
    }
    
    .event-card.happy-hour-full p {
        font-size: 0.85rem;
    }
    
    .event-card.happy-hour-full .duration {
        font-size: 0.8rem;
    }
}

/* Estilos para a seção de Networking */
#networking-content .search-container { margin: 0 auto 20px auto; max-width: 600px; position: relative; }
#networking-content .search-container input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border-radius: 8px;
    border: 1px solid var(--card-border-color);
    background: rgba(26, 26, 46, 0.5);
    color: var(--text-light);
    font-size: 1em;
}
#networking-content .search-container i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.participant-list { display: flex; flex-direction: column; gap: 15px; }
.participant-card {
    background-color: var(--card-background);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    color: var(--text-light);
    border: 1px solid var(--card-border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.participant-info h4 { margin: 0; font-size: 1.1em; font-weight: 600; color: var(--text-light); }
.participant-info .company { margin: 2px 0 0; font-size: 0.9em; color: var(--secondary-accent); }
.social-links a { color: var(--text-muted); font-size: 1.5em; margin: 0 8px; }

#ingresso-content .ticket-card { max-width: 400px; margin: 0 auto; text-align: center; }
#ingresso-content .ticket-card h3 { color: var(--secondary-accent); margin-top: 0; }
#ingresso-content .ticket-card .qr-code { width: 150px; height: 150px; margin: 20px auto; border-radius: 8px; overflow: hidden; background: white; padding: 5px;}
#ingresso-content .ticket-card p { margin: 5px 0; font-size: 0.9em; }

.speaker-card { text-align: center; }
.speaker-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 15px auto; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.speaker-card h4 { margin: 0; color: var(--text-light); }
.speaker-card p { font-size: 0.9em; color: var(--primary-accent); margin: 5px 0 0; font-weight: 600; }

.sponsor-tier h3 { text-align: center; color: var(--secondary-accent); border-bottom: 2px solid var(--card-border-color); padding-bottom: 10px; margin-bottom: 25px; }
.sponsor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 25px; align-items: center; }
.sponsor-logo { width: 100%; max-width: 150px; height: auto; object-fit: contain; filter: grayscale(100%) brightness(5); opacity: 0.8; margin: 0 auto; }

/* Partners new styles */
.partners-section {
    margin: 3rem 0;
}

.partners-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.partner-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,165,0,0.3);
    backdrop-filter: blur(10px);
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    background: rgba(0, 0, 0, 0.65);
}

.partner-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.partner-logo {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
    border: 2px solid rgba(255,165,0,0.5);
}

.partner-info {
    margin-bottom: 1.5rem;
}

.partner-info h4 {
    margin: 0 0 0.5rem 0;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
}

.partner-type {
    margin: 0;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-bio {
    margin: 0 0 1.5rem 0;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: justify;
}

.partner-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.social-btn.instagram:hover {
    border-color: #E1306C;
    background: rgba(225, 48, 108, 0.1);
    color: #E1306C;
}

.social-btn.website:hover {
    border-color: var(--primary-color);
    background: rgba(255, 165, 0, 0.1);
    color: var(--primary-color);
}

.social-btn.phone:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Speakers new styles */
.speakers-section {
    margin: 3rem 0;
}

.speaker-card-new {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,165,0,0.3);
    backdrop-filter: blur(10px);
    text-align: center;
}

.speaker-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    background: rgba(0, 0, 0, 0.65);
}

.speaker-photo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.speaker-photo {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    border: none;
}

.speaker-info {
    margin-bottom: 1.5rem;
}

.speaker-info h4 {
    margin: 0 0 0.5rem 0;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
}

.speaker-topic {
    margin: 0;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    font-style: italic;
}

.speaker-bio {
    margin: 0 0 1.5rem 0;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: justify;
}

.speaker-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-btn.linkedin {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.social-btn.linkedin:hover {
    border-color: #0077B5;
    background: rgba(0, 119, 181, 0.1);
    color: #0077B5;
}

@media (max-width: 768px) {
    .speaker-photo {
        width: 155px;
        height: 155px;
    }
    
    .speaker-info h4 {
        font-size: 1.1rem;
    }
    
    .speaker-topic {
        font-size: 0.85rem;
    }
    
    .speaker-bio {
        font-size: 0.9rem;
    }
    
    .partner-logo {
        width: 70px;
        height: 70px;
    }
    
    .partner-info h4 {
        font-size: 1.1rem;
    }
    
    .partner-type {
        font-size: 0.85rem;
    }
    
    .partner-bio {
        font-size: 0.9rem;
    }
}

#dicas-content .tips-list { list-style: none; padding: 0; }
#dicas-content .tips-list li { display: flex; align-items: flex-start; margin-bottom: 20px; }
#dicas-content .tips-list i { color: var(--primary-accent); font-size: 1.5em; margin-right: 15px; margin-top: 4px; }

/* Estilos dos Modais e Botões */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); display: none; justify-content: center; align-items: center; z-index: 2000; backdrop-filter: blur(5px); cursor: pointer; padding: 20px; }
.modal-overlay .modal-content-wrapper { max-width: 90%; max-height: 90%; overflow: auto; border-radius: 12px; position: relative; }
.modal-overlay img { max-width: 100%; height: auto; display: block; }
.confirm-modal-content { background: var(--card-background); backdrop-filter: blur(10px); color: var(--text-light); padding: 30px; border-radius: 12px; max-width: 350px; width: 100%; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.2); cursor: default; }
.confirm-modal-content h3 { color: var(--danger-color); margin: 0 0 15px 0; }
.confirm-modal-content p { margin: 0 0 25px 0; font-size: 0.9em; color: var(--text-muted); }
.confirm-modal-buttons { display: flex; gap: 15px; justify-content: center; }

.btn { width: 100%; padding: 14px 20px; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; font-family: 'Poppins', sans-serif; font-size: 1em; font-weight: 600; text-decoration: none; border: none; }
.btn-primary { background-color: var(--primary-accent); color: #fff; }
.btn-primary:hover { filter: brightness(1.1); }
.btn-secondary { background-color: var(--secondary-accent); color: #fff; }
.btn-secondary:hover { filter: brightness(1.1); }
.btn-danger { background-color: var(--danger-color); color: #fff; }
.btn-cancel { background-color: rgba(255, 255, 255, 0.2); color: var(--text-light); }
.banner-img { width: 100%; border-radius: 12px; }
#show-benefits-btn { margin-top: 20px; }

/* Estilos para novas seções */
.links-list { display: flex; flex-direction: column; gap: 15px; }
.link-card {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid var(--card-border-color);
}
.link-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}
.link-card i {
    font-size: 1.8em;
    margin-right: 15px;
    color: var(--secondary-accent);
    min-width: 40px;
}
.link-card h4 {
    margin: 0 0 5px 0;
    font-size: 1.1em;
}
.link-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9em;
}

.faq-item {
    border-bottom: 1px solid var(--card-border-color);
    padding: 20px 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item h4 {
    color: var(--secondary-accent);
    margin: 0 0 10px 0;
    font-size: 1.1em;
}
.faq-item p {
    margin: 0;
    line-height: 1.6;
}

.photo-gallery {
    text-align: center;
    margin: 20px 0;
}
.photo-placeholder {
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 2px dashed var(--card-border-color);
}
.photo-placeholder i {
    font-size: 3em;
    color: var(--text-muted);
    margin-bottom: 15px;
}
.photo-placeholder p {
    color: var(--text-muted);
    margin: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.product-card {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid var(--card-border-color);
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}
.product-card i {
    font-size: 2.5em;
    color: var(--secondary-accent);
    margin-bottom: 15px;
}
.product-card h4 {
    margin: 0 0 10px 0;
    font-size: 1em;
}
.product-card p {
    margin: 0;
    font-weight: 600;
    color: var(--primary-accent);
    font-size: 1.1em;
}

/* Estilos para seção Sobre */
.event-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid var(--card-border-color);
}

.highlight-item i {
    font-size: 1.8em;
    color: var(--secondary-accent);
    margin-right: 15px;
    min-width: 40px;
}

.highlight-item h4 {
    margin: 0 0 5px 0;
    font-size: 1em;
    color: var(--text-light);
}

.highlight-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9em;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95em;
    line-height: 1.4;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.organizers {
    margin-top: 25px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
}

.organizers h4 {
    margin: 0 0 10px 0;
    color: var(--secondary-accent);
}

.organizers p {
    margin: 0;
    font-size: 1.1em;
}

/* Estilos para Mapa do Evento */
.map-container {
    margin-bottom: 30px;
}

.map-image-container {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.event-map-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.zoom-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--primary-accent);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.zoom-btn:hover {
    background-color: var(--secondary-accent);
    transform: translateY(-2px);
}

.zoom-btn i {
    font-size: 1.1em;
}

.map-sectors {
    margin-top: 25px;
}

.map-sectors h3 {
    color: var(--secondary-accent);
    margin-bottom: 20px;
    text-align: center;
}

.sector-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--card-border-color);
    transition: all 0.3s ease;
}

.sector-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.sector-icon {
    background-color: var(--secondary-accent);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.sector-icon i {
    font-size: 1.3em;
}

.sector-info h4 {
    margin: 0 0 8px 0;
    color: var(--text-light);
    font-size: 1.1em;
}

.sector-info p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95em;
}

/* Modal do Mapa */
.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-accent);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background-color: var(--secondary-accent);
    transform: scale(1.1);
}

#map-modal-overlay .modal-content-wrapper {
    position: relative;
    max-width: 95%;
    max-height: 95%;
}

#modal-map {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
