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

:root {
    --primary-color: rgb(44, 76, 80);
    --secondary-color: #19beb5;
    --accent-color: #e74c3c;
}

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

.contact-card {
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

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

.card-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 20px;
    border-bottom: none;
}

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

.contact-form {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(52, 208, 219, 0.25);
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #15a0a3;
    border-color: #0c9797;
}

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

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

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}


/* Estilos gerais */
.section-title {
    color: #6B2A0D;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #6B2A0D;
}

.about-section {
    margin-bottom: 50px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
}

/* Estilos para a seção dos vídeos */
.leader-caption {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 1px;
}

.leader-caption h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.leader-caption p.text-muted {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.leader-caption p.small {
    font-style: italic;
    color: #555;
}

/* Efeito hover nos cards */
.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: #6B2A0D;
    transform: scale(1.05);
}

/* Estilos para a seção bg-whisper */
.bg-whisper {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.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-primary {
    background-color: #6B2A0D;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.button-primary:hover {
    background-color: #8a3a1a;
    color: white;
    transform: scale(1.05);
}

/* Estilos para o banner */
.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slider-header {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slider-text {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.text-primary {
    color: #6B2A0D !important;
}

.button-primary-outline-v2 {
    border: 3px solid #6B2A0D;
    color: white;
    background-color: transparent;
    padding: 12px 30px;
  
    text-decoration: none;
    transition: all 0.3s ease;
}

.button-primary-outline-v2:hover {
    background-color: #6B2A0D;
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .slider-header {
        font-size: 28px;
    }
    
    .slider-text {
        font-size: 16px;
    }
    
    .bg-whisper {
        padding: 50px 0;
    }
}