/* Estilos específicos da página inicial (index) */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 37, 63, 0.95) 0%, rgba(0, 40, 90, 0.85) 100%), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 100px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.service-card {
    border: none;
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--accent-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 105, 217, 0.1);
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.check-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.check-list i {
    color: #28a745;
    margin-right: 10px;
}


/* Destaque para citações ou pontos chave */
.border-start-primary {
    border-left: 4px solid var(--accent-color, #0069d9);
    padding-left: 1.5rem;
}

/* Box de informações técnicas (Público/Produtos) */
.tech-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid #e9ecef;
}