/* Container Principal */
.servicos .icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #007bff; }

.servicos .icon i {
    display: block;}

.servicos .card:hover .icon {
    color: #0056b3;
    transform: scale(1.1);
    transition: 0.3s;}

.servicos .container {
    padding: 60px 20px;
    font-family: sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;}

.servicos .header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;}

.servicos .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px; }

.servicos .card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    flex: 1 1 250px; /* Base de 250px, cresce conforme o espaço */
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);}

.servicos .card h3 {
    font-size: 1.4rem;
    color: #007bff;
    margin-bottom: 15px;}

.servicos .card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;}

.servicos .cta {
    margin-top: 50px;}


    
.servicos .btn {
    background-color: #007bff;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background 0.3s;
    display: inline-block;}

.servicos .btn:hover {
    background-color: #0056b3;}

.servicos .cta2 {
    margin-top: 50px;}

.servicos .btn2 {
    background-color: #58e02e;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background 0.3s;
    display: inline-block;}

.servicos .btn2:hover {
    background-color: #0056b3;}

/* Responsividade para Celular */
@media (max-width: 768px) {
    .servicos .card {
        flex: 1 1 100%;
        max-width: 100%; }}