@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer components {}

.question-response {
    border-radius: 10px;
    border: solid 1px #000000;
    padding: 15px;
    margin-top: 14px;
    cursor: pointer;
}

.question-response[selected] {
    background-color: #1e8fff8e;
    border: solid 0.5px #1e8fff;
}

.question-response[selected]::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f00c";
    margin-right: 8px;
}

* {
    font-family: "Open Sans", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.question .question-title {
    font-size: 30px;
}

textarea:focus {
    outline: none;
    /* Remove o contorno */
    /* border: none; */
}

@keyframes pulsar {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-effect {
    animation: pulsar 1s ease-in-out infinite;
}