body {
    height: 100vh;
    max-width: 100vw;
    background-color: #fcf4f4;
}

.container-cartoes {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.popup {
    display: none;
    position: fixed;
    top: 80%;
    left: 80%;
    width: 30%;
    height: 40%;
    transform: translate(-50%, -50%);
    background-color: rgb(255, 255, 255);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    padding: 40px;
    border: 1px solid rgb(128, 128, 128);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.popup a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    font-size: 18px;
    color: #000000;
}

.popup a p {
    font-size: 35px;
}

.popup p {
    color: rgb(80, 143, 147);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Roboto Slab', serif;
    text-align: center;
}

.popup button {
    border: none;
    background-color: #126557;
    width: 25%;
    height: 15%;
    border-radius: 5px;
    color: #ffffff;
}

.popup.show {
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;

}

.slider-cartao {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 50vh;
    background: linear-gradient(135deg, rgb(99, 192, 110) 10%, rgb(91, 199, 117)100%);
    margin-top: 8%;
    margin-left: 5%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.slider-cartao .slide-cartao {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0px 45px;
    position: absolute;
    bottom: 0;
    left: 0;
    animation: slide-up 0.3s ease-in-out;
    width: 100%;
    height: 100%;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* .radio-buttons input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-buttons label {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ffffff;
    margin: 0px 5px;
    cursor: pointer;
}

.radio-buttons {
    margin-top: -300px;
    margin-left: -600px;
}

input[name="slide"]:checked+.radio-buttons label {
    background-color: #3498db;
}


input[name="slide"]:checked+.radio-buttons label:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
} */

.slider-cartao .slide-cartao .txt-slide {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.slider-cartao .slide-cartao .txt-slide p {
    font-family: 'Roboto Slab', serif;
    color: #ffffff;
    font-weight: 700;
    font-size: 35px;
}

.slider-cartao .slide-cartao .txt-slide img {
    width: 80%;
    height: 20%;
}

.slider-cartao .slide-cartao .txt-slide .logos-farmacias {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.slider-cartao .slide-cartao .txt-slide .logos-farmacias .farmacia {
    width: 45%;
    height: 100%;
}

.slider-cartao .slide-cartao .img-slide {
    width: 50%;
    height: 100%;
}

.slider-cartao .slide-cartao .img-slide-cemig {
    width: 50%;
    height: 100%;
}

.slider-cartao .slide-cartao .img-slide-cemig img {
    width: 90%;
    height: 90%;
}

.slider-cartao .slide-cartao .img-slide img {
    width: 110%;
    height: 100%;
}

.slider-cartao .slide-cartao .img-slide img:last-child {
    height: 120%;
    width: 100%;
}

.container-apresentacao {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 80vh;
    width: 100%;
    background-color: #f3f1f1;
    border-top-left-radius: 20px;
    margin-top: 5%;
    padding: 0 15px;
}

.container-apresentacao .imagem-cartao {
    width: 50%;
    height: 50%;

}

.container-apresentacao .imagem-cartao img {
    width: 80%;
    height: 100%;
    rotate: 5deg;
}

.container-apresentacao .msg-apresentacao {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    width: 45%;
    height: 100%;
}

.container-apresentacao .msg-apresentacao h2 {
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
    font-size: 35px;
    width: 70%;
    color: #126557;
}

.container-apresentacao .msg-apresentacao p {
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
    width: 70%;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-family: 'Roboto Slab', serif;
    font-weight: 300;
}

li span {
    font-family: 'Roboto Slab', serif;
    font-weight: bold;
    color: #126557;
}

svg:not(:host).svg-inline--fa,
svg:not(:root).svg-inline--fa {
    overflow: visible;
    box-sizing: content-box;
    color: rgb(22, 125, 125);
}

.container-familia {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    height: 90vh;
    background: url(../images/happy-black-family-toddler-pointing-laptop-screen-design-space.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container-familia .info-cartao {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 50%;
    height: 100%;
    gap: 60px;
}

.container-familia .info-cartao h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 35px;
    line-height: 40px;
    width: 70%;
    font-weight: 600;
}

.container-familia .info-cartao span {
    color: #126557;
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
}

.container-familia .info-cartao p {
    font-family: 'Roboto Slab', serif;
    font-weight: 300;
    font-size: 18px;
    width: 70%;
}

.container-familia .info-cartao a {
    color: #f3f1f1;
    background-color: #126557;
    font-weight: bold;
    height: 5%;
    width: 20%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Slab', serif;
    margin-top: -5%;
    transition: 0.3s ease-in-out;
}

.container-familia .info-cartao a:hover {
    color: #126557;
    background-color: #ccc;
}

.container-farmacia {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
    flex-direction: column;
    position: relative;
}

.container-farmacia::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/young-hispanic-woman-pharmacist-smiling-confident-standing-with-arms-crossed-gesture-pharmacy.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
    /* Defina a opacidade desejada (valor entre 0 e 1) */
    z-index: -1;
    /* Certifique-se de que o pseudo-elemento fique atrás do conteúdo */
}

.container-farmacia .info-farmacia {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 80px;
    height: 100%;
    width: 50%;
    margin-left: -38%;
    padding-top: 80px;
}

.container-farmacia .info-farmacia h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 35px;
    font-weight: 600;
    width: 60%;
}

.container-farmacia .info-farmacia h2 span {
    font-family: 'Roboto Slab', serif;
    font-size: 35px;
    font-weight: 600;
    color: #126557;
}

.container-farmacia .info-farmacia p {
    font-family: 'Roboto Slab', serif;
    font-weight: 300;
    font-size: 18px;
    width: 70%;
}

.container-farmacia .info-farmacia p span {
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
    font-size: 18px;
    color: #126557;
}

.container-farmacia .info-farmacia .box-logos {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    height: 40%;
}

.container-farmacia .info-farmacia .box-logos .titulo-logos h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 25px;
    font-weight: 600;
    color: #126557;
}

.container-farmacia .info-farmacia .box-logos .logos {
    width: 100%;
    height: 35%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: #fff;
    border-radius: 40px;
}

.container-farmacia .info-farmacia .box-logos .logos .logo {
    width: 100%;
    height: 100%;
    padding: 10px;
}

.container-farmacia .info-farmacia .box-logos .logos .logo a {
    width: 100%;
    height: 100%;
}

.container-laboratorios {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
    flex-direction: column;
    position: relative;
}

.container-laboratorios::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/researchers-biotechnology-laboratory-with-tablet-microscope.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.4;
    /* Defina a opacidade desejada (valor entre 0 e 1) */
    z-index: -1;
    /* Certifique-se de que o pseudo-elemento fique atrás do conteúdo */
}

.container-laboratorios .info-laboratorios {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 80px;
    height: 100%;
    width: 50%;
    margin-left: -38%;
    padding-top: 80px;
}

.container-laboratorios .info-laboratorios h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 35px;
    font-weight: 600;
    width: 60%;
}

.container-laboratorios .info-laboratorios h2 span {
    font-family: 'Roboto Slab', serif;
    font-size: 35px;
    font-weight: 600;
    color: #126557;
}

.container-laboratorios .info-laboratorios p {
    font-family: 'Roboto Slab', serif;
    font-weight: 300;
    font-size: 18px;
    width: 70%;
}

.container-laboratorios .info-laboratorios p span {
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
    font-size: 18px;
    color: #126557;
}

.container-formulario {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100vh;
    background-color: #f3f6ff;
    border-top-left-radius: 5%;
    border-top-right-radius: 5%;
}

.container-formulario .info-formulario {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 55px;
    width: 40%;
    height: auto;
}

.container-formulario .info-formulario .img-info-form {
    width: 80%;
    height: 30%;
    margin-top: 6%;
}

.container-formulario .info-formulario .img-info-form img {
    width: 100%;
    height: 100%;
    rotate: -10deg;
}

.container-formulario .info-formulario h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 35px;
    font-weight: 600;
    width: 70%;
}

.container-formulario .info-formulario h2 span {
    font-family: 'Roboto Slab', serif;
    font-size: 35px;
    font-weight: 600;
    color: #126557;
}

.container-formulario .info-formulario h4 {
    width: 70%;
    font-family: 'Roboto Slab', serif;
    text-align: left;
}

.container-formulario .info-formulario p {
    width: 70%;
    font-family: 'Roboto Slab', serif;
    text-align: left;
    font-weight: bold;
}

.container-formulario form {
    height: 80%;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding-top: 5%;
    gap: 50px;
    background-color: #ffffff;
    border-radius: 20px;
}

.container-formulario form div {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    padding: 0 10%;
    gap: 20px;
}

.container-formulario form div label {
    font-family: 'Roboto Slab', serif;
    font-size: 14px;
}

.container-formulario form div input {
    height: 50px;
    width: 100%;
    border: none;
    background-color: #feead1;
    border-radius: 10px;
    padding: 10px;
    font-size: 15px;
}

.container-formulario form div input:focus-visible {
    outline: none;

}

.container-formulario form div input::placeholder {
    color: #bababa;
}

.container-formulario form div input[type="checkbox"] {
    height: 15px;
    width: 100px;

}

.container-formulario .checkbox label {
    display: flex;
    font-size: 12px;
    margin-left: -5%;
    margin-top: -5%;
}

.container-formulario form button {
    height: 50px;
    width: 120px;
    border-radius: 20px;
    border: none;
    background-color: #126557;
    color: #ffffff;
    font-family: 'Roboto Slab', serif;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease-in;
}

.container-formulario form button:hover {
    color: #126557;
    background-color: #ccc;
}