/* ============= ATENDIMENTO PAGE STYLES ============= */
/* CSS específico para página de atendimento */

.atendimento-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4070 100%);
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

.atendimento-header h1 {
    font-size: 40px;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.atendimento-header p {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
}

/* ============= ATENDIMENTO GRID ============= */
.atendimento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.atendimento-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.atendimento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.2);
}

.atendimento-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.atendimento-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.atendimento-card:hover .atendimento-image img {
    transform: scale(1.05);
}

.atendimento-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.atendimento-content h2 {
    color: #2c5aa0;
    font-size: 20px;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.atendimento-content p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    flex: 1;
}

.atendimento-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2c5aa0;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #2c5aa0;
    text-align: center;
    cursor: pointer;
    border: none;
}

.atendimento-btn:hover {
    background-color: #1e4070;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

/* ============= CTA SECTION ============= */
.atendimento-cta {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4070 100%);
    padding: 50px 20px;
    text-align: center;
    border-radius: 8px;
    color: white;
    max-width: 1200px;
    margin: 0 auto 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.atendimento-cta h2 {
    font-size: 32px;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.atendimento-cta p {
    font-size: 16px;
    margin: 0 0 25px 0;
    opacity: 0.95;
}

.atendimento-btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: white;
    color: #2c5aa0;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid white;
    cursor: pointer;
}

.atendimento-btn-primary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1000px) {
    .atendimento-header {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .atendimento-header h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .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 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .atendimento-cta p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .atendimento-btn-primary {
        padding: 12px 25px;
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .atendimento-grid {
        grid-template-columns: 1fr;
    }

@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 {
        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;
    }
}
