/* Estilos específicos para a página Área do Cliente */

.page-banner {
    background: linear-gradient(rgba(0, 178, 203, 0.8), rgba(10, 59, 108, 0.9)), url('../images/banner-cliente.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.page-banner h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.page-banner p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.cliente-content {
    padding: 60px 0;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 178, 203, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 36px;
    color: #00B2CB;
}

.service-card h2 {
    color: #0A3B6C;
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #00B2CB;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0A3B6C;
}

.btn-secondary {
    background-color: #FFD100;
    color: #0A3B6C;
}

.btn-secondary:hover {
    background-color: #e6bd00;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-option:hover {
    background-color: #e0e0e0;
}

.cotacao-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cotacao-options .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.vantagens {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.vantagens h2 {
    text-align: center;
    color: #0A3B6C;
    font-size: 36px;
    margin-bottom: 50px;
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.vantagem-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.vantagem-item:hover {
    transform: translateY(-5px);
}

.vantagem-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 209, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vantagem-icon i {
    font-size: 30px;
    color: #FFD100;
}

.vantagem-item h3 {
    color: #0A3B6C;
    font-size: 20px;
    margin-bottom: 15px;
}

.vantagem-item p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(90deg, #0A3B6C, #00B2CB);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Responsividade */
@media (max-width: 992px) {
    .service-cards {
        flex-direction: column;
    }
    
    .service-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 60px 0;
    }
    
    .page-banner h1 {
        font-size: 36px;
    }
    
    .vantagens-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .page-banner h1 {
        font-size: 28px;
    }
    
    .page-banner p {
        font-size: 16px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}
