:root {
    --primary-color: rgb(27, 124, 116);
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
}

/* Navbar Styles */
.navbar-container {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 10px;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}



.navbar-brand img {
    height: 50px;
    width: auto;
}

/* Mobile menu toggle */
.navbar-toggler {
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

@media (max-width: 992px) {
    .navbar-toggler {
        display: block;
    }
    
    .navbar-collapse {
        display: none;
    }
    
    .navbar-collapse.show {
        display: block;
    }
    
    .navbar-nav {
        flex-direction: column;
    }
    
    .nav-item {
        margin: 5px 0;
    }
}

.header-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    margin-bottom: 40px;
}

.about-section {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.section-title {
    color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-box {
    text-align: center;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.timeline {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--secondary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 3px solid white;
}

.timeline-date {
    font-weight: 600;
    color: var(--primary-color);
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.logo-container img {
    max-height: 100px;
    margin: 0 20px;
}

.organizers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.organizer-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.organizer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.organizer-logo {
    max-height: 80px;
    margin-bottom: 15px;
}

.organizers-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}




/* Estilos gerais */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
}

.bg-whisper {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.section-title {
    color: #6B2A0D;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Estilos para a seção de formato do evento */
.section-50 {
    padding-top: 50px;
}

.section-md-75 {
    padding-top: 75px;
}

h3 {
    color: #6B2A0D;
    font-weight: 600;
    margin-bottom: 20px;
}

h4 {
    color: #444;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.list-marked {
    list-style-type: none;
    padding-left: 0;
}

.list-marked li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.list-marked li:before {
    content: "•";
    color: #6B2A0D;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.button-wrap {
    margin-top: 30px;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button-primary {
    background-color: #6B2A0D;
    color: white;
    border: 2px solid #6B2A0D;
}

.button-primary:hover {
    background-color: transparent;
    color: #6B2A0D;
}

.image-wrap {
    position: relative;
    height: 100%;
}

.image-wrap svg {
    width: 100%;
    height: auto;
    max-height: 700px;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .section-50, .section-md-75 {
        padding-top: 30px;
    }
    
    .bg-whisper {
        padding: 40px 0;
    }
}
