.contato-titulo {
    text-align: center;
    font-size: 30px;
    width: 100vw;
    padding: 0 0 40px  0 ;

    font-family: "Outfit", serif;
}

.court-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;

    color: white;
    padding: 50px 0px;
}

.court-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 40%;
    border: 1px solid #337ab7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 80PX 0 #3379b71a;
    text-align: left;
    position: relative;
    animation: flutuarOrca 5s ease-in-out alternate-reverse infinite;
    vertical-align: middle;

    p {
        font-family: 'Poppins', sans-serif;
        font-size: 11px;
    }
}

@keyframes flutuarOrca {
    0% {
        border: 1px solid #2a5f8d;
        box-shadow: 0 0 20PX 0 #3379b71a;
    }

    33% {
        border: 1px solid #287ac2;
        box-shadow: 0 0 22PX 0 #3379b728;
    }

    100% {
        border: 1px solid #2589e0;
        box-shadow: 0 0 25PX 0 #3379b760;
    }
}


.court-icon {
    height: 40px;
    width: 40px;
    display: block;
    margin-bottom: 10px;
}

.court-link {
    color: #337ab7;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

a:hover {
    transform: scale(1.02);
    color: rgb(3, 137, 255);

}

@media (max-width: 500px) {
    .contato-titulo{
        z-index: 0; 
        margin-top: 0px;

    }
    .court-section {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .court-card {
        width: 46%;
        gap: 8px;

        h2 {
            font-size: 16px;
        }

        p {
            font-size: 11px;
        }
    }

    .court-icon {
        height: 30px;
        width: 30px;
        margin-bottom: 3px;
    }

    .court-link {
        font-size: 11px;
    }
}