/* Estilos específicos para a página Sobre Nós */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://lfnetosite.synerserra.com.br/assets/img/estrutura.webp') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.section-title {
    text-align: center;
    margin: 60px 0 40px;
    font-size: 2.5rem;
    color: #2c3e50;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #f17824;
    margin: 15px auto;
}

.mission-vision-values {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
}

.mv-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.mv-card h3 {
    color: #f17824;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.mv-card p {
    color: #555;
    line-height: 1.6;
    text-align: center;
}

.about-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.about-section p {
    margin-bottom: 20px;
}

.highlight {
    color: #f17824;
    font-weight: bold;
}

.coverage-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

.coverage-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.coverage-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
}

.coverage-card h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #f17824;
    padding-bottom: 10px;
}

.coverage-card ul {
    columns: 2;
    column-fill: balance;
    break-inside: avoid;
    list-style: none; /* Remove o marcador preto */
    padding-left: 30px; /* Remove o padding padrão da lista */
}

.coverage-card li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px; /* Espaço para o ::before laranja */
}

.coverage-card li::before {
    content: "•";
    color: #f17824;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.partners-section {
    padding: 60px 20px;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.partner-logo img {
    max-width: 80%;
    max-height: 80px; /* Ajuste conforme necessário */
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.stats-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://lfnetosite.synerserra.com.br/assets/img/deposito.jpeg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    color: #19470d;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #333;
}

.units-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.unit-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 15px 30px;
    background: #f1f1f1;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.tab-btn:first-child {
    border-radius: 8px 0 0 8px;
}

.tab-btn:last-child {
    border-radius: 0 8px 8px 0;
}

.tab-btn.active {
    background: #f17824;
    color: white;
}

.unit-content {
    display: none;
}

.unit-content.active {
    display: block;
}

.unit-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.unit-stat {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.unit-stat h4 {
    color: #f17824;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.unit-stat p {
    font-size: 1.1rem;
    color: #333;
}

.contact-section {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.contact-info h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    background: #f17824;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.partner-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f17824, #19470d);
    color: white;
}

.partner-container {
    max-width: 800px;
    margin: 0 auto;
}

.partner-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.partner-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.partner-btn {
    display: inline-block;
    background: white;
    color: #f17824;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.partner-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .mission-vision-values {
        flex-direction: column;
        align-items: center;
    }
    
    .coverage-card ul {
        columns: 1;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .unit-tabs {
        flex-direction: column;
    }
    
    .tab-btn:first-child {
        border-radius: 8px 8px 0 0;
    }
    
    .tab-btn:last-child {
        border-radius: 0 0 8px 8px;
    }
}