/* Configurações Gerais */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    letter-spacing: 1px;
}

/* Seção Hero (Banner Principal) */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #003d99 100%);
    color: white;
    padding: 120px 0;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 4.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Cards de Serviços */
.card-service {
    border: none;
    background: #ffffff;
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
    border-bottom: 4px solid transparent;
}

.card-service:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.15);
    border-bottom: 4px solid #0d6efd;
}

.icon-box {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    display: inline-block;
    transition: transform 0.3s;
}

.card-service:hover .icon-box {
    transform: scale(1.1);
}

/* Rodapé */
footer {
    border-top: 1px solid #333;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    .hero-section {
        padding: 80px 0;
    }
}