.atendimento-header {
    padding: 40px 20px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4070 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
    text-align: center;
}

.atendimento-header h1 {
    margin: 0 0 15px;
    font-size: 40px;
    font-weight: 700;
}

.atendimento-header p {
    margin: 0;
    font-size: 18px;
    opacity: 0.95;
}

.atendimento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto 60px;
}

.atendimento-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.atendimento-card:hover {
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.2);
    transform: translateY(-8px);
}

.atendimento-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.atendimento-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.atendimento-card:hover .atendimento-image img { transform: scale(1.05); }

.atendimento-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.atendimento-content h2 {
    margin: 0 0 12px;
    color: #2c5aa0;
    font-size: 20px;
    font-weight: 700;
}

.atendimento-content p {
    flex: 1;
    margin: 0 0 15px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.atendimento-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2c5aa0;
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.atendimento-btn:hover {
    background-color: #1e4070;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
    transform: translateY(-2px);
}

.atendimento-cta {
    max-width: 1200px;
    padding: 50px 20px;
    margin: 0 auto 60px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4070 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
    text-align: center;
}

.atendimento-cta h2 { margin: 0 0 15px; font-size: 32px; }
.atendimento-cta p { margin: 0 0 25px; font-size: 16px; opacity: 0.95; }

.atendimento-btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 6px;
    color: #2c5aa0;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.atendimento-btn-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1000px) {
    .atendimento-header { padding: 30px 20px; margin-bottom: 40px; }
    .atendimento-header h1 { margin-bottom: 10px; font-size: 28px; }
    .atendimento-header p { font-size: 16px; }
    .atendimento-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
    .atendimento-cta { padding: 40px 20px; margin-bottom: 40px; }
    .atendimento-cta h2 { margin-bottom: 12px; font-size: 24px; }
    .atendimento-cta p { margin-bottom: 20px; font-size: 14px; }
    .atendimento-btn-primary { padding: 12px 25px; font-size: 13px; }
}

@media (max-width: 600px) {
    .atendimento-header { padding: 20px 15px; margin-bottom: 30px; }
    .atendimento-header h1 { font-size: 24px; }
    .atendimento-header p { font-size: 14px; }
    .atendimento-grid { grid-template-columns: 1fr; gap: 15px; padding: 0 15px; }
    .atendimento-content { padding: 20px; }
    .atendimento-content h2 { font-size: 18px; }
    .atendimento-content p { font-size: 13px; }
    .atendimento-cta { padding: 30px 15px; }
    .atendimento-cta h2 { font-size: 20px; }
}
