body {
    background-color: black;
    color: darkgrey;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    margin: 0;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

@font-face {
    font-family: 'Inter';
    src: url('font/Inter.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Inter', Arial, sans-serif;
}


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 40px;
    margin-bottom: 20px;
}

h1 {
    background: linear-gradient(to bottom, #f1f1f1, #515151);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 41px;
    margin: 20px 0;
    max-width: 600px;
}

a {
    color: lightgray;
    text-decoration: none;
}

.card {
    width: 550px;
    height: 92px;
    background-color: rgb(31, 31, 31);
    display: flex;
    align-items: center;
    margin: 10px 0;
    padding: 14px;
    padding-right: 24px;
    box-sizing: border-box;
    border-radius: 6px;
    animation: slide-in-bottom 1s ease-out both;
}

.card-img {
    width: 65px;
    /* Ajuste o tamanho da imagem conforme necessário */
    height: auto;
    margin-right: 10px;
    border-radius: 5px;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.card-content p {
    font-size: 12px;
    margin: 0;
    text-align: left;
    width: 54%;
}

.learn-more {
    /* align-self: flex-end; */
    background-color: #1f1f1f;
    /* color: white; */
    border: 1px solid #3a3a3a;
    padding: 8px 24px;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    transition: background-color 0.6s ease, color 0.6s ease;
    display: none;
}


.learn-more:hover {
    opacity: 0.5;
    transition: background-color 0.3s ease;
}

footer {
    margin-top: 20px;
    font-size: 12px;
    animation: slide-in-bottom 2s ease-out both;
}

.title-card {
    font-weight: bold !important;
    font-size: 15px !important;
    margin-bottom: 5px !important;
    color: white;
}

.link-socialmedia {
    background-color: #232323;
    margin-bottom: 35px;
    border-radius: 30px;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    color: #b5b5b5;
    margin-top: 15px;
}

.learn-more-mob {
    background-color: #1f1f1f;
    border: 1px solid #3a3a3a;
    padding: 8px 8px;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    /* display: flex; */
    /* align-items: flex-end; */
    transition: background-color 0.6s ease, color 0.6s ease;
}

.learn-more-mob img {
    width: 30px;
}

.learn-more-mob:hover{
    opacity: 0.5;
    transition: background-color 0.3s ease;
}

@keyframes slide-in-bottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }

}

/* Responsividade */
@media (max-width: 768px) {
    .card {
        width: 95%;
    }

    .card-content {
        width: 100% !important;
    }

    .learn-more {
        width: 119px;
    }

    .h1 {
        max-width: 485px !important;
    }

}

@media (max-width: 480px) {
    h1 {
        font-size: 34px;
        margin: 20px;
    }

    .card {
        width: 95%;
    }

    .card-content {
        width: 100%;
    }

    .learn-more a {
        padding: 8px 15px;
        width: 119px;
    }

    .learn-more {
        display: none;
    }

    .card-content p {
        font-size: 12px;
        margin: 0;
        text-align: left;
        width: 95%;
    }

    .learn-more-mob {
        background-color: #1f1f1f;
        border: 1px solid #3a3a3a;
        padding: 8px 8px;
        border-radius: 5px;
        cursor: pointer;
        color: white;
        transition: background-color 0.6s ease, color 0.6s ease;
    }

    .learn-more-mob img {
        width: 30px;
    }
}