@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* ---------------Variables----------------- */

:root {
    --azul-oscuro: #0b3285;
    --azul-claro: #4285f4;
    --cian-oscuro: #1ba77d;
    --cian-claro: #2cc295;
    --redondeado: 0px 0px 50px 50px;
    --nunito: "Nunito", sans-serif;
    --montserrat: "Montserrat", sans-serif;
}

/* ---------------Estilos generales----------------- */


/* ----------------------------------------------
* Generated by Animista on 2025-8-25 13:4:26
* Licensed under FreeBSD License.
* See http://animista.net/license for more info. 
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */

/**
* ----------------------------------------
* animation slide-top
* ----------------------------------------
*/

.slide-top {
    -webkit-animation: slide-top 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-top 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}


/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */

.fade-in {
    -webkit-animation: fade-in 1.5s ease-in-out both;
    animation: fade-in 1.5s ease-in-out both;
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ---------------------------------------- */



.disabled {
    background-color: rgb(158, 158, 158) !important;
    cursor: not-allowed;
}

.badge {
    /* background-color: rgb(167, 15, 167); */
    background-color: var(--cian-oscuro);
}

.index__body {
    font-family: var(--nunito);
    font-optical-sizing: auto;
    background-color: #f4f4f4;
}


header {
    background-color: white;
    color: #0b3285;
    text-align: center;
    border-radius: var(--redondeado);
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#header-tittle {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1em;
    width: 80%;
}

header .btn {
    color: var(--azul-oscuro);
    border: solid 2px var(--azul-oscuro);
    position: absolute;
    right: 7%;
}

header .btn:hover {
    background-color: var(--azul-oscuro);
    border: solid 2px var(--azul-oscuro);
}       

#header-menu {
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box; 
}

#header-menu button {
    color: white;
    background-color: var(--cian-claro);
    border: solid 3px var(--cian-oscuro);
    border-radius: 0.5em;
    padding: 0.5em 1em;
    box-sizing: border-box;

}

header h1 {
    font-family: var(--montserrat);
    font-weight: 600;
    font-size: 1.5em;
    padding: 0;
    margin: 0;
}

#br-titulo {
    display: none;
}

header p {
    font-size: 1em;
    font-weight: 300;
    padding: 7px;
    margin: 0;
    border-left: solid 2px;
}

header img {
    width: 60px;
    margin-left: 2em;
}

.btn {
    border: solid 2px var(--cian-oscuro);
    width: max-content;
    font-size: small;
    font-weight: 500 !important;
    margin: 15px 1.5em;
}

.btn:hover {
    border: solid 2px var(--cian-oscuro);
    background-color: var(--cian-oscuro);
    color: white;
}

.banner {
    border-left: #ff0000 solid 10px;
    background-color: white;
    border-radius: 7px;
    width: 85%;
    padding: 2em;
    margin: 50px auto 50px auto;
    position: relative;
    background-image: url(/img/youtube-logo.png);
    background-repeat: no-repeat;
    background-size: 25%;
    background-position: bottom 10px right 10px;
}


.banner-tittle {
    font-weight: 600;
    font-family: var(--montserrat);
    font-size: 2.1em;
    color: #282828;
    margin-bottom: 1em;
}

.banner-info {
    font-size: 1.2em;
    font-weight: 400;
    font-family: var(--montserrat);
    width: 75%;
}

.banner-btn {
    border: none;
    margin: 0px;
    width: 8em;
    padding: 0.5em;
    background-color: #ff0000;
    font-size: 1em;
}

.banner-btn:hover {
    border: none;
    margin: 0;
    width: 8em;
    padding: 0.5em;
    background-color: #bc0000;
    font-size: 1em;
}

@media screen and (max-width: 500px) {
    .banner-info {
        width: 100%;
    }

    .banner {
        background-size: 180%;
        background-position: left 10px bottom -60px;
    }

    header h1 {
        font-size: 1em;
    }

    header p {
        font-size: 0.8em !important;
    }

    .dropdown button {
        font-size: 0.7em;
    }
}



/* ---------------Estilos de inicio----------------- */

#bienvenida {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin-bottom: 90px;
}

#bienvenida-titulo {
    width: 100%;
    margin: 30px auto;
    font-family: var(--montserrat);
    text-align: center;
    z-index: 1;
}

#bienvenida-titulo h1 {
    font-weight: 500;
    font-size: 3em;
    margin: 2em 1em;
    color: var(--cian-oscuro);
}

#bienvenida-img {
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 0;
}


#bienvenida-img img {
    width: 80%;
    margin: 0 auto;
    mask-image: linear-gradient(black 70%, transparent);
}

.btn {
    font-family: var(--montserrat);
    font-weight: 500;
}

#novedades {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    background-color: #fafafa;
    margin: 2em 0.5em;
    justify-content: center;
    padding: 2em 1em;
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.novedad {
    border-radius: 2em;
    border: solid var(--cian-oscuro);
    padding: 1em;
    width: 40%;
    box-shadow: rgba(149, 157, 165, 0.228) 0px 8px 24px;
}

li span {
    color: var(--cian-oscuro);
    font-weight: 700;
}

.novedad-titulo {
    font-family: var(--montserrat);
    font-weight: 700;
    text-align: center;
    font-size: 1.7em;
}


.novedad ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    padding-left: 0em;
}

.novedad li {
    font-family: var(--nunito);
    font-size: 1.5em;
    padding: 0px 10px;
    font-weight: 500;
}


#menu {
    margin: 70px auto;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    background-color: #fafafa;
    padding: 40px;
    border-radius: 20px;
    border: #1db35e1c 4px solid ;
}


.menu_item {
    width: 300px;
    background-color: var(--cian-oscuro);
    border-radius: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}


.menu_item:hover {
    background-color: var(--azul-oscuro);

}

.menu_item img {
    width: 20%;
    margin-left: 10%;
}

.menu_item p {
    box-sizing: border-box;
    padding: 25px;
    font-family: var(--nunito);
    font-weight: 600;
    font-size: 25px;
    color: white;
}

.menu_item span {
    position: absolute;
    top: -7px;
    right: -7px;
}

@media screen and (max-width: 800px) {
    #bienvenida-titulo h1 {
        font-size: 30px !important;
        margin: 4em 1em !important;
    }

    #bienvenida {
        height: 90vh !important;
        margin: 40px auto !important;
    }

    #novedades {
        flex-direction: column;
        align-items: center;
        font-size: 0.7em;
        margin-bottom: 4em;
        margin-top: 0;
    } 

    .novedad {
        width: 90%;

    }
}

@media screen and (max-width: 500px) {
    #bienvenida-titulo h1 {
        font-size: 10px;
        margin: 0 1em !important;
    }

    #bienvenida-img {
        margin: 8em 0em;
        padding: 0;
    }

    #bienvenida-img img {
        width: 100%;
    }
}

@media screen and (max-width: 670px) {
    #bienvenida-titulo h1 {
        font-size: 26px !important;
    }

    #bienvenida {
        height: 90vh !important;
        margin: 50px auto !important;
    }
}

@media screen and (max-width: 1100px) {
    #bienvenida-titulo h1 {
        font-size: 36px;
    }
}

/* ---------------Estilos de pagina de valores----------------- */

#valores {
    display: flex;
    margin: 0 auto;
    width: 90%;
    flex-wrap: wrap;
    justify-content: center;
}

#valores .card-body a {
    width: 100%;
    text-decoration: none;
}


/* ---------------Estilos de pagina de coseguros----------------- */

#coseguros {
    background-color: white;
    border-radius: 25px;
    padding: 40px 30px;
    margin: 50px auto;
    width: 90%;
    border: solid 1px gainsboro;
}

#coseguros .coseguro:first-child {
    font-weight: 600;
    text-align: center;
    font-size: 18px;
}

#coseguros a {
    text-decoration: none;
}

.coseguro>.card-title {
    padding: 7px;
    font-size: 24px;
    margin: 15px 0px;
    border-radius: 10px 10px 0px 0px;
}


@media screen and (max-width: 500px) {
    #coseguros {
        width: 95%;
        padding: 20px 10px;
        margin: 20px auto;
    }

    .coseguro>.card-title {
        font-size: 20px;
    }

    .coseguro * {
        font-size: 15px;
    }

}

/* ---------------Estilos de pagina de facturacion----------------- */

#headerEntregas {
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    padding: 0px 30px;
}

#entregas {
    background-color: white;
    border-radius: 25px;
    padding: 60px 0px;
    margin: 50px auto;
    width: 90%;
    border: solid 1px gainsboro;
}

.accordion {
    width: 70%;
    margin: 30px auto;
}

.accordion-body {
    padding: 0px;
}

.accordion-button {
    font-size: 18px;
    font-family: var(--montserrat);
    font-weight: 600;
}

.infoFact {
    width: 100%;
    margin: 10px auto;
    padding: 5px;
    box-sizing: border-box;
}

.infoFact #buscador1,
.infoFact #buscador2 {
    font-size: 16px;
    margin: 20px 0px;
    border: solid 2px gainsboro;
}

.infoFact table {
    margin-top: 15px;
}

.importante {
    border-left: orange solid 7px;
    text-align: justify;
    background-color: #fafafa;
    border-radius: 7px;
    width: 70%;
    padding: 2em;
    margin: 20px auto;
    font-size: 18px;
    font-weight: 400;
}

.descargas {
    border-left: var(--azul-claro) solid 7px;
    background-color: white;
    border-radius: 7px;
    width: 70%;
    padding: 2em;
    margin: 50px auto 50px auto;
    font-size: 18px;
    font-weight: 400;
}

.descargas h3 {
    margin-bottom: 20px;
    font-weight: 700;
}

.descargas h4 {
    font-size: 16px;
    margin: 1em 5px;
}

.list-group a {
    font-weight: 600;
    color: var(--azul-oscuro);
    font-size: large;
}


.resaltado {
    background-color: wheat;
    font-weight: 500;
    margin-bottom: 3em;
}

.importante h3 {
    margin-bottom: 20px;
    font-weight: 700;
}

@media screen and (max-width: 700px) {

    .importante,
    .descargas {
        font-size: 16px;
        width: 90%;
    }

    #entregas {
        width: 100%;
    }

    .accordion {
        width: 95%;
        padding: 0px;
        margin: 20px auto;
    }

    .accordion table {
        font-size: 13px;
    }
}

/* ---------------Estilos de pagina de cartilla----------------- */

#cartillaHeader {
    margin: 2em auto;
    padding: 2em;
    background-color: #fdfffe;
    border-radius: 1em;
    width: 80%;
}

#cartillaHeader .detalle {
    font-size: 15px;
    margin: 10px 0px;
    color: white;
    background-color: var(--cian-oscuro);
    border-radius: 5px;
    width: fit-content;
    padding: 3px 7px;
    font-weight: 500;
}

input[type="checkbox"] {
    border: solid 2px var(--cian-oscuro);
}

label {
    font-weight: 600;
    font-size: 17px;
}

#cartillaHeader h4 {
    font-family: var(--montserrat);
    font-size: 2em;
    font-weight: 600;
    color: var(--cian-oscuro);
}

#cartillaHeader p {
    font-size: 1.2em;
    font-family: var(--montserrat);
}

#cartilla {
    margin: 2em 10px;
}

#cartilla .accordion-button {
    font-size: 1rem;
}

.medico {
    background-color: #fafafa;
    border-radius: 20px;
    padding: 5px;
    margin: 20px;
    border: solid 1px rgb(225, 225, 225);
}

.mdcPAMI,
.espPAMI {
    background-color: #0b3285;
}

.mdcPAMI::before {
    content: "MC-PAMI";
}

.espPAMI::before {
    content: "ESP-PAMI";
}

.medico-nombre {
    font-size: 18px;
    margin: 1rem;
    font-family: var(--montserrat);
    font-weight: 600;
    display: flex;
    align-items: center;
    color: var(--cian-oscuro);
}

.medico-nombre>span {
    font-size: 14px;
    margin-left: 10px;
}

.medico-datos {
    font-size: 1em;
}

@media screen and (max-width: 700px) {
    #cartillaHeader {
        margin: 1em auto;
        padding: 1.5em 2em;
        width: 90%;
    }

    #cartillaHeader h4 {
        font-size: 1.5em;
    }

    #cartillaHeader p {
        font-size: 1em;
    }
}



/* ---------------Estilos de pagina de trámites----------------- */

#tramites {
    display: flex;
    padding: 50px;
    justify-content: center;
}

.card {
    margin: 30px;
    padding: 10px;
    width: 150px;
    border-radius: 7px;
}

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

.card-title {
    background-color: var(--cian-oscuro);
    color: white;
    text-align: center;
    border-radius: 7px;
    padding: 10px;
    width: 100%;
}

.card .btn {
    width: 50%;
    text-align: center;
}

.tramite {
    width: 75%;
    margin: 2em auto;
    background-color: #fafafa;
    border-radius: 25px;
    padding: 50px;
}

.tramite a {
    text-decoration: none;
    color: var(--cian-oscuro);
    font-weight: 700;
}

.tramite h2 {
    font-family: var(--montserrat);
    font-weight: 600;
}

.tramite h6 {
    font-family: var(--montserrat);
    font-weight: 600;
    background-color: var(--cian-claro);
    color: white;
    padding: 5px;
    border-radius: 5px;
    margin: 30px;
}

.tramite p {
    font-family: var(--nunito);
    margin: 1em 1.5em;
    padding: 0;
    text-align: justify;
}

.tramite h5 {
    font-weight: 700;
    text-align: center;
    font-family: var(--montserrat);
    color: gray;
    margin-top: 2em;
}

@media screen and (max-width: 700px) {

    #tramites {
        display: flex;
        flex-direction: column;
        padding: 20px;
        justify-content: center;
        align-items: center;
    }

    .tramite {
        width: 90%;
        margin: 2em auto;
        border-radius: 25px;
        padding: 20px;
    }

    .tramite h2 {
        font-size: 20px;
        margin: 20px 0px;
    }

    .tramite h6 {
        font-size: 14px;
        margin: 20px 0px;
    }

    .tramite h5 {
        font-size: 14px;
    }


}

/* ---------------Estilos de footer----------------- */

footer {
    background-color: #0b3285;
    color: white;
    border-radius: 50px 50px 0px 0px;
    box-sizing: border-box;
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    flex-wrap: wrap;
}

footer h4 {
    font-weight: 500;
    font-size: 1.5em;
}

footer p {
    font-weight: 200;
    font-size: 1.2em;
}

.footer__contacto {
    width: 80%;
    padding: 15px 40px;
    box-sizing: border-box;
}

.footer__whatsapp {
    color: white;
    font-weight: 600;
    border: solid 3px #25d366;
    border-radius: 10px;
    background-color: transparent;
    padding: 5px 20px;
}

.footer__whatsapp i {
    margin-right: 10px;
    font-size: 1.2em;
}

.footer__enlaces {
    display: flex;
    flex-direction: column;
    padding: 15px 40px;
    box-sizing: border-box;
}

.footer__enlaces a {
    color: azure;
    text-decoration: none;
    font-weight: 400;
    color: gainsboro;
}

.footer__enlaces a:hover {
    color: white;
}

hr {
    width: 80%;
    margin: 30px auto;
}

footer #copyright {
    width: 100%;
    font-size: 0.9em;
    color: gainsboro;
    text-align: center;
    font-weight: 400;
}

footer #copyright a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}