		.hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/veiculo_valmir.webp');
            background-size: cover;
            background-position: center;
            min-height: 80vh;
        }
        
        .service-card {
            transition: all 0.3s ease;
            border-left: 4px solid #0d6efd;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .electrician-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: #ffc107;
            color: #000;
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        .floating-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .electrician-highlight {
            background-color: #f8f9fa;
            border-left: 5px solid #ffc107;
            padding: 15px;
            margin-bottom: 20px;
        }
        
        .nav-pills .nav-link.active {
            background-color: #0d6efd;
        }
		
		.my-circle {
			aspect-ratio: 1 / 1;        /* força proporção quadrada */
			width: 3rem;               /* define um tamanho base */
			display: inline-flex;      /* flex para centralizar o conteúdo */
			align-items: center;
			justify-content: center;
		}