/**
 * ONDE ESTAMOS - Página moderna e profissional
 * Padrão: Portal Transparência + Documentos
 */

/* ==== HERO SECTION ==== */
.ondeestamos-hero {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.4) 0%, rgba(255, 255, 255, 0.8) 100%);
    padding: 50px 0 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ondeestamos-hero.harmonized {
    opacity: 1;
}

.ondeestamos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #6b7280 50%, transparent 100%);
    /* Harmonizado via JS */
}

.ondeestamos-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.ondeestamos-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.06) 0%, rgba(107, 114, 128, 0.1) 100%);
    border-radius: 50%;
    margin-bottom: 18px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.ondeestamos-hero-icon i {
    font-size: 28px;
    color: #6b7280;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ondeestamos-hero-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.ondeestamos-hero-icon:hover i {
    transform: scale(1.1);
}

.ondeestamos-hero-title {
    font-size: 28px;
    font-weight: 600;
    color: #0d153d;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.ondeestamos-hero-description {
    font-size: 14px;
    color: #8898aa;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==== SEÇÃO PRINCIPAL ==== */
.ondeestamos-section {
    padding: 0 0 60px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ondeestamos-section.harmonized {
    opacity: 1;
}

/* ==== CARDS DE INFORMAÇÃO ==== */
.ondeestamos-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.ondeestamos-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.ondeestamos-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6b7280 0%, #4b5563 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.ondeestamos-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: #6b7280;
}

.ondeestamos-card:hover::before {
    transform: scaleX(1);
}

.ondeestamos-card-icon {
    width: 60px;
    height: 60px;
    background: #6b7280;
    /* Harmonizado via JS */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ondeestamos-card-icon i {
    font-size: 28px;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ondeestamos-card:hover .ondeestamos-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.ondeestamos-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #0d153d;
    margin-bottom: 16px;
}

.ondeestamos-card-content {
    color: #4b5563;
    line-height: 1.7;
}

.ondeestamos-card-content p {
    margin-bottom: 8px;
}

.ondeestamos-card-content p:last-child {
    margin-bottom: 0;
}

.ondeestamos-cep {
    font-weight: 600;
    color: #6b7280;
}

.ondeestamos-card-content i {
    font-size: 14px;
    margin-right: 6px;
    color: #6b7280;
}

/* ==== REDES SOCIAIS ==== */
.ondeestamos-social {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #e9ecef;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ondeestamos-social-title {
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 10px;
}

.ondeestamos-social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.ondeestamos-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ondeestamos-social-link.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d5dbf 100%);
}

.ondeestamos-social-link.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.ondeestamos-social-link.linkedin {
    background: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
}

.ondeestamos-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    text-decoration: none;
}

.ondeestamos-social-link i {
    font-size: 18px;
    color: #ffffff;
}

.ondeestamos-whatsapp-wrapper {
    text-align: center;
    margin-top: 12px;
}

.ondeestamos-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #159e8a 0%, #128C7E 20%, #0f7268 50%, #128C7E 80%, #159e8a 100%);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 3px 10px rgba(18, 140, 126, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ondeestamos-whatsapp:hover {
    background: linear-gradient(135deg, #1aaf98 0%, #159e8a 20%, #128C7E 50%, #159e8a 80%, #1aaf98 100%);
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
}

.ondeestamos-whatsapp i {
    font-size: 16px;
    color: #ffffff !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ondeestamos-whatsapp:hover i {
    transform: scale(1.1) rotate(8deg);
}

.ondeestamos-whatsapp span {
    position: relative;
    z-index: 1;
    color: #ffffff !important;
    font-weight: 600;
}

/* ==== MAPA MODERNO (Full Width como Index) ==== */
.ondeestamos-map-container {
    width: 100%;
    margin: 40px 0 0 0;
    padding: 0;
}

.ondeestamos-map-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ondeestamos-map-wrapper:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.ondeestamos-map {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* Mapa sem overlay - totalmente visível */

/* ==== RESPONSIVIDADE ==== */
@media (max-width: 768px) {
    .ondeestamos-hero-title {
        font-size: 24px;
    }
    
    .ondeestamos-info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ondeestamos-card {
        padding: 24px 20px;
    }
    
    .ondeestamos-map {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .ondeestamos-hero {
        padding: 40px 0 30px;
    }
    
    .ondeestamos-hero-icon {
        width: 50px;
        height: 50px;
    }
    
    .ondeestamos-hero-icon i {
        font-size: 24px;
    }
    
    .ondeestamos-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .ondeestamos-card-icon i {
        font-size: 24px;
    }
    
    .ondeestamos-map {
        height: 400px;
    }
    
    .ondeestamos-social-link {
        width: 36px;
        height: 36px;
    }
    
    .ondeestamos-social-link i {
        font-size: 16px;
    }
}


