@font-face {
    font-family: "Work Sans";
    src: url(../assets/fonts/WorkSans-VariableFont_wght.ttf) format("truetype");
}

:root {
    --white: hsl(0, 0%, 100%);
    --light-pink: hsl(275, 100%, 97%);
    --grayish-purple: hsl(292, 16%, 49%);
    --dark-purple: hsl(292, 42%, 14%);

    --font-principal: "Work Sans";
}

*, *:after, *:before {
    box-sizing: inherit;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    font-family: var(--font-principal);
}
html {
    box-sizing: border-box;
}
img {
    max-width: 100%;
}
body {
    background-color: var(--light-pink);
}

.faq-bg {
    height: 20rem;
    background-image: url("../assets/images/background-pattern-desktop.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.container {
    width: min(90%, 75rem);
    margin: 0 auto;
}
.card {
    max-width: 35rem;
    margin: -8rem auto 1rem;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
}
.card-header {
    margin-bottom: 2.5rem;
}
.card-header-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.title {
    font-size: 3rem;
    font-weight: 700;
}
.card-body-info {
    display: grid;
    gap: 1rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mb-1 {
    margin-bottom: 1rem;
}

.info-mas:hover {
    cursor: pointer;
    color: rgb(198, 0, 198)
}
.text-ver-mas {
    font-weight: 600;
}

.info-ver-mas {
    color: var(--dark-purple);
}
.info-mas:hover .info-ver-mas {
    color: var(--grayish-purple);
}
.hidden {
    /* content-visibility: hidden; */
    display: none;
}
.visible {
    /* content-visibility: visible; */
    display: block;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-pink)
}

.info-mas:last-child .visible {
    border-bottom: none;
    padding-bottom: 0;
}