@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
:root {
    --purple: #80014C;
    --darkgray: #798080;
    --white: #FFFFFF;
    --black: #000000;
  
    --h1: 40px;
    --h2: 32px;
    --h3: 26px;
    --h4: 24px;
    --h5: 20px;
    --h6: 18px;
    --p: 16px;
    --li: 1rem;
    --a: 1rem;
}

.container-fluid {
    padding:0!important;
    margin:0!important;
}
  
body {
    font-family: 'Roboto', sans-serif!important;
    font-size:16px!important;
    scroll-behavior: smooth;
}

h1, .h1 {
    font-size: var(--h1)!important;
    font-family: 'Roboto', sans-serif!important;
    line-height:1.1;
}

h2, .h2 {
    font-size: var(--h2)!important;
    font-family: 'Roboto', sans-serif!important;
    line-height:1.1;
}

h3, .h3 {
    font-size: var(--h3)!important;
    font-family: 'Roboto', sans-serif!important;
    line-height:1.1;
}

h4, .h4 {
    font-size: var(--h4)!important;
    font-family: 'Roboto', sans-serif!important;
    line-height:1.1;
}

h5, .h5 {
    font-size: var(--h5)!important;
    font-family: 'Roboto', sans-serif!important;
    line-height:1.1;
}

h6, .h6 {
    font-size: var(--h6)!important;
    font-family: 'Roboto', sans-serif!important;
    line-height:1.1;
}

p, li, a, .p{
    font-size: var(--p)!important;
    font-family: 'Roboto', sans-serif!important;
    line-height:1.1;
}

a {
    text-decoration: none!important;
    font-family: 'Roboto', sans-serif!important;
    line-height:1;
}

b {
    font-family: 'Roboto', sans-serif!important;
    font-weight: 700!important;
}

/* Fonts variables */

.bold {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.medium {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.regular {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.light {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.thin {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
}

.space-1 {
    line-height:1.1!important;
}
.space-2 {
    line-height:1.2!important;
}
.space-3 {
    line-height:1.3!important;
}

/* Text color */

.text-purple {
    color:var(--purple);
}
.text-black {
    color: var(--black);
}
.text-gray {
    color: var(--darkgray);
}
.text-white {
    color:var(--white);
}

/*Styles Home*/

/*Hero Banner*/
#banner-home-idme {
    margin-top:0!important;
    padding-top:0!important;
}

.contenedor-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    border-bottom-right-radius: 32px;
    border-bottom-left-radius: 32px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding:16px;
}
.logo img{
    width:150px;
    padding:1rem;
}
.nav-items {
    display: flex;
    gap:1.5rem;
    align-items: center;
    justify-content: center;
}
.nav-items a {
    text-decoration: none!important;
    color: var(--black);
    font-size: 16px;
    position: relative;
    display: block;
    cursor: pointer;
    padding: 8px 0;
}

/*Animacion hover nav*/

.nav-items a:hover{
  color: var(--purple);
  text-decoration: none;
}

.nav-items a:before, a:after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -2px;
  background: var(--purple)!important;
}

.nav-items a:before {
  left: 0;
}
.nav-items a:after {
  right: 0;
  background: var(--purple)!important;
  transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1)!important;
}

.nav-items a:hover:before {
  background: var(--purple)!important;
  width: 100%;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1)!important;
}

.nav-items a:hover:after {
  background: transparent!important;
  width: 100%!important;
  transition: 0s!important;
}

.contenedor-logos {
    padding-top:5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-idme img {
    max-width: 100%;
    height: auto;
    width: 25rem;
}

.logo-diagnostico img{
    width:190px;
    padding-right:16px;
}

.contenedor-info {
    padding-top:3rem;
    padding-bottom:3rem;
}

.contenedor-title {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap:.5rem;
}

.contenedor-title h1 b,
.contenedor-title h1 span {
    font-size: 7rem;
}
.contenedor-title p b,
.contenedor-title p span {
    font-size: 2.5rem;
    text-align: justify;
}

a.btn-hero-idme {
    color: var(--white);
    background-color:var(--purple);
    text-decoration: none;
    border-radius: 50px;
    padding: 10px 24px;
    width: fit-content;
    font-size: 16px;
    font-weight:500;
    transition:all ease-in 300ms;
}

a.btn-hero-idme:hover {
    color: var(--purple)!important;
    background-color:var(--fff)!important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px!important;
}

.container-cards-hero {
    position:relative!important;
    z-index:1000!important;
}

/* Styles CARDS ID.ME */
/*.card-idme {*/
/*    width: fit-content;*/
/*    border-radius: 16px;*/
/*    min-height:240px;*/
/*    background-color: var(--white);*/
/*    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;*/
/*}*/

/*.card-idme .header-card {*/
/*    background-color: var(--purple);*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    padding-top:16px;*/
/*    border-radius: 16px;*/
/*    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 20px 0px;*/
/*}*/

.card-idme .header-card img {
    width:48px;
}

/*.card-idme .body-card {*/
/*    padding: 2rem;*/
/*}*/

.card-idme .body-card p {
    text-align:center!important;
}

.card-idme {
    width: fit-content;
    border-radius: 16px;
    min-height: 240px;
    overflow: hidden; /* Ocultar el contenido que desborda */
    transition: transform 0.3s ease-in-out; 
}

.card-idme .header-card {
    background-color: var(--purple);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 16px;
    border-radius: 16px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 20px 0px;
    cursor: pointer; /* Cambiar el cursor en hover */
}

.card-idme .body-card {
    padding: 2rem;
    transform: scaleY(0); /* Ocultar inicialmente */
    transform-origin: top; /* Punto de origen en la parte superior */
    transition: transform 0.3s ease-in-out; 
    background-color: var(--white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.card-idme:hover .body-card {
    transform: scaleY(1); /* Mostrar body-card en hover */
}


/* End Styles CARDS ID.ME*/

#nueva-plataforma {
    position:relative;
    z-index:1;
    margin-top:-5rem;
    padding-top:5rem;
    padding-bottom:7rem;
    margin-bottom:-30px;
    background-color:#EEF2F1;
    border-radius:16px;
}


.contenedor-nueva-plataforma {
    padding-top:5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height:470px!important;
    width:100%;
}
.contenido-np {
    display: flex;
    flex-direction: column;
    align-items: start;
    height:100%;
    padding:2rem;
    justify-content: start;
    background-color: var(--white);
    border-radius: 20px 0px 0px 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding-left: 2rem;
    width:50%;
}
.contenido-np span.h3 {
    margin-top:10px!important;
    margin-bottom:6px!important;
}
::marker {
    color: #80014C;
}
.contenido-np-group {
    border: 2px solid #80014C;
    border-radius: 2rem 1rem 1rem 0.5rem;
    padding: 1rem;
    padding-left: 3rem;
    padding-bottom: 3px;
}
.lista-icons {
    display: flex;
    align-items:start;
    gap:1rem;
    width:100%!important;
    height:100%!important;
}
.lista-icons .lista-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    gap:1rem;
}
.lista-icons .lista-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    gap:1rem;
}
.lista-icons .item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.lista-icons .item img {
    height:40px!important;
}
.img-np {
    display: flex;
    height: 100%;
    width:50%;
}
.img-np img {
    width: 90%;
}

.flecha-down {
    position: absolute;
    right: 0;
    bottom: 10px;
}
.flecha-down img {
    width:24px;
}

#video-np {
    background-position:center!important;
    padding-bottom:5rem;
    padding-top:8rem;
}

.video-np {
    display:flex;
    align-items:center;
    justify-content:center;
    padding:2rem 0rem;
}

.video-np img {
    width:80%;
    margin:auto!important;
}

#testimonios {
    padding:6rem 0rem;
    display:none;
}
.item-carousel {
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
}

.item-carousel span {
    text-align:center;
}
.item-carousel p {
    text-align:center;
}
.item-carousel img {
    width:80%;
    margin:auto!important;
}

#plataforma-idme {
    min-height: 550px!important;
    padding: 6rem 0rem!important;
    display: flex!important;
    align-items: center!important;
}

#plataforma-idme .contenedor-title {
    padding-top:2rem!important;
}

#area-idme {
    padding-top:5rem;
    padding-bottom:5rem;
}

.btn-area-idme {
    color: var(--purple);
    border:2px solid var(--purple);
    text-decoration: none;
    border-radius: 50px;
    padding: 10px 24px;
    width: fit-content;
    font-size: 16px;
    font-weight:500;
}

#testimonios {
    display:none!important;
}

#testimonios .fa-chevron-right:before {
    content:'';
    width:32px;
    height:32px;
    background-image:url(/content/dam/multibrand/ar/es/new-home/id-me/flecha-right.png);
    background-size:contain;
    display:inline-block;
    background-repeat:no-repeat;
}
#testimonios .fa-chevron-left:before {
    content:'';
    width:32px;
    height:32px;
    background-image:url(/content/dam/multibrand/ar/es/new-home/id-me/flecha-left.png);
    background-size:contain;
    display:inline-block;
    background-repeat:no-repeat;
}

.img-np #img-mobile-np {
    display:none;
}

@media (min-width:768px) and (max-width:1024px) {
    .main-container {
        position: relative;
        padding-top: 3rem!important;
        padding: 0;
    }
}

@media  (max-width:767px) {
    .main-container {
        position: relative;
        padding-top: 0rem!important;
        margin-top:0rem!important;
        padding: 0;
    }
    .contenedor-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        justify-content: center;
        background-color: var(--white);
        border-bottom-right-radius: 32px;
        border-bottom-left-radius: 32px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
        padding: 16px;
    }
    .contenedor-nueva-plataforma {
        padding-top: 5rem;
        display: flex;
        flex-direction:column;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    }
    .contenido-np {
        border-radius:20px 20px 0px 0px;
        width:90%;
    }
    .img-np {
        width:90%;
    }
    .img-np #img-desktop-np {
        display:none;
    }
    .img-np #img-mobile-np {
        display:block;
    }
    .img-np img {
        width: 100%;
    }
    .flecha-down {
        position: absolute;
        right: 60px;
        bottom: 10px;
    }
    .card-idme {
        border-radius: 16px;
        min-height: 240px;
        width: 90%;
        margin: auto;
        margin-bottom:2rem;
        background-color: var(--white);
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        overflow:none!important;
    }
    .card-idme .body-card {
        padding: 2rem;
        transform: none!important; /* Ocultar inicialmente */
        transform-origin: 0!important; /* Punto de origen en la parte superior */
        /*transition: transform 0.3s ease-in-out; */
        background-color: transparent;
        box-shadow: none;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
    }
    .contenedor-info img.new-image-mobile {
        width:80%!important;
        margin:auto!important;
    }
    .contenedor-title {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align:center;
        gap: 0.5rem;
    }
    .btn-area-idme {
        margin-top:2rem;
        margin-bottom:2rem;
    }
    .btn-hero-idme {
        margin-top:2rem;
        margin-bottom:2rem;
    }
    #nueva-plataforma {
        margin-top:-1rem!important;
        padding-top:10rem!important;
        padding-bottom: 24rem!important;
    }
    .contenido-np {
        display: flex;
        flex-direction: column;
        margin-top: 10rem;
        align-items: start;
        height: 100%;
        padding: 2rem;
        padding-bottom: 3rem!important;
        justify-content: start;
        background-color: var(--white);
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        padding-left: 2rem;
    }
}

@media (max-width:400px) {
    .nav-items {
        display: flex;
        flex-direction:column;
        gap: 1.5rem;
        align-items: center;
        justify-content: center;
        text-align:center;
    }
    .contenedor-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        justify-content: center;
        background-color: var(--white);
        border-bottom-right-radius: 32px;
        border-bottom-left-radius: 32px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
        padding: 16px;
    }
    #img-desktop-np {
        border-radius: 0rem 15rem 0rem 0rem;
    }
    .img-np #img-desktop-np {
        display:none;
    }
    .img-np #img-mobile-np {
        display:block;
    }
    .img-np img {
        width: 100%;
    }
    .flecha-down {
        position: absolute;
        right: 60px;
        bottom: 10px;
    }
    .card-idme {
        border-radius: 16px;
        min-height: 240px;
        width: 90%;
        margin: auto;
        margin-bottom:2rem;
        background-color: var(--white);
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }
    .contenedor-info img.new-image-mobile {
        width:80%!important;
        margin:auto!important;
    }
    .contenedor-title {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align:center;
        gap: 0.5rem;
    }
    .btn-area-idme {
        margin-top:2rem;
        margin-bottom:2rem;
    }
    .contenido-np {
        border-radius:20px 20px 0px 0px;
        width:100%;
    }
    .img-np {
        width:100%;
    }

}

.cod-prom {
    background: #CCCCCC;
    text-align: center;
    padding: 1rem 0;
}
.cod-prom p {
    color: #FFFFFF;
    margin: 0;
}

.cod-prom-top {
    background: #CCCCCC;
    text-align: center;
    padding: 1rem 0;
    margin-top: 3rem;
}
.cod-prom-top p {
    color: #FFFFFF;
    margin: 0;
}

/*Quitar espacio arriba del footer*/
.footer {
    margin-top: 0;
}




























