/*@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');*/

@import url('../fonts/poppins/stylesheet-poppins.css');
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

html {
/*    color-scheme: dark light;*/
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    line-height: 20px;
    min-height: 100vh;
    min-height: 100dvh;
    background-color:white;
}

img, picture, svg , video {
    display: block;
    max-width: 100%;
}

a{
    text-decoration: none;
    cursor: pointer;
    color: #5F8E90;
}


.content {
    flex: 1 0 auto;
}

footer {
    padding: 50px;
    background-color: #fff;
    text-align: center;
    font-size: 14px;
    color: #252525;
}

.bg-white {
    background-color: #fff;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.justify-content-between {
    justify-content: space-between;
}


ul {
    list-style: none;
    padding: 0;
}

.d-inline {
    display: inline;
}

.d-none {
    display: none;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: end;
}

.flex-direction-column {
    flex-direction: column;
}

.navbar-container {
    box-shadow: rgb(149 157 165 / 44%) 0px 3px 15px;
    box-shadow: rgb(151 151 151 / 50%) 0px 10px 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}

.navbar {
    padding: 0.35rem 2rem;
    max-width: 110rem;
    margin-right: auto;
    margin-left: auto;
    background-color: #fff;
    padding-left: 4.5rem;
}

.navbar__content {
    width: 100%;
}

.navbar__menu {
    gap: 1rem;
    max-width: 50rem;
    align-items: center;
    /*align-items: flex-start;*/
    margin-bottom: 0;
    margin-top: 0.5rem;
}

.navbar-menu li {
    display: flex;
    align-items: center;
}

.navbar-menu li a {
    text-decoration: none;
    line-height: 1.125em;
    position: relative;
    z-index: 1;
    font-size: 13px;
    color: #002c5f;
    padding: 0 1.7rem;
    text-align: center;
    transition: all 0.3s;
}

.navbar-menu li a:hover {
    color: #52B989;
}

.hamburger-menu {
    display: none;
}

@media only screen and (max-width: 1024px){
    .hamburger-menu {
        position: absolute;
        right: 2em;
        border: none;
        height: 3em;
        width: 3em;
        z-index: 100;
        display: block;
        background: transparent;
        padding: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: top .3s;
    }
    .hamburger-menu span {
        height: 3px;
        width: 1.3em;
        background-color: #002c5f;
        display: block;
        position: absolute;
        left: 50%;
        border-radius: 3px;
        transform: translateX(-50%);
        transition: background-color 0.3s;
    }
    .hamburger-menu span:before {
        content: '';
        position: absolute;
        display: block;
        height: 3px;
        width: 100%;
        background: #002c5f;
        opacity: 1;
        top: -7px;
        left: 0;
        transition: width .3s, left .3s, top .3s, transform .5s;
    }
    .hamburger-menu span:after {
        content: '';
        position: absolute;
        display: block;
        height: 3px;
        width: 100%;
        background: #002c5f;
        opacity: 1;
        top: 7px;
        left: 0;
        transition: width .3s, left .3s, top .3s, transform .3s;
    }
    .hamburger-menu.clicked span {
        background-color: transparent;
    }
    .hamburger-menu.clicked span:before {
        width: 100%;
        transform: translate(-50%, -50%) rotate(225deg);
        left: 50%;
        top: 50%;
    }
    .hamburger-menu.clicked span:after {
        width: 100%;
        transform: translate(-50%, -50%) rotate(-225deg);
        left: 50%;
        top: 50%;
    }
    .navbar-menu {
        position: fixed;
        z-index: 2;
        background-color: white;
        width: 100%;
        flex-direction: column;
        right: 0;
        top: 65px;
        left: 0;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        border-radius: 0 0 0.375em 0.375em;
        padding: 2rem 0;
        gap: 1.5rem;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.35s, padding-top 0.3s, top 0.3s;
        border-top: 1px solid white;
        max-width: inherit;
    }
    .navbar {
        padding: 0.35rem 1rem;
    }
    .navbar-menu a {
        justify-content: center;
        font-size: 16px;
        margin-left: 0;
    }
    .navbar-menu.open {
        transform: scaleY(1);
        padding-top: 3.125em;
        z-index:2;
        padding-top: 1.75rem;
    }
}

.navbar__btn {
    color: #fff !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 4px;
    background-image: linear-gradient(to right, #002c5f, #26806d, #00b390);
    transition: all 0.3s;
    margin-top: 0.4rem;
    display: flex;
    gap: 4px;
    width: max-content;
    align-items: center;
    position: relative;
    z-index: 1;
}

.navbar__btn::before {
    position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to left, #002c5f, #26806d, #00b390);
  z-index: -1;
  transition: opacity 0.3s linear;
  opacity: 0;
  border-radius: 4px;
}

.navbar__btn:hover::before {
    opacity: 1;
}

.hero {
    /*height: 100dvh;*/
    padding-top: 72px;
}

#hero picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

#hero picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel__img  {
    position: absolute;
    top: 3rem;
    right: 2.1rem;
    width: 575px;
}

.hero__container {
    display: flex;
    flex-direction: row;
    /*padding: 4rem 2rem;*/
    max-width: 110rem;
    margin: 0 auto;
    padding-left: 5rem;
}

.hero__img--container {
    display: flex;
    align-items: center;
}

.hero__content, .hero__img--container {
    flex: 1;
}

.hero__content {
    /*padding-left: 4rem;*/
    flex-direction: column;
    gap: 2rem;
    padding-top: 4rem;
    margin-right: 120px;
}

.hero__content h1 {
    color: #002c5f;
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.hero__list-item {
    display: flex;
    flex-direction: column;
    gap: 1.55rem;
    margin-bottom: 108px;
}

.hero__list-item li {
    display: flex;
    gap: 4px;
    font-size: 20px;
    color: #002c5f;
}

.hero__list-item li span {
    line-height: 1.25;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.hero__btn-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-bottom: 32px;
}

.btn-1 {
    padding: 0.875rem 2.5rem;
    color: #fff;
    font-weight: 400;
    font-size: 19px;
    border-radius: 8px;
    transition: all 0.3s;
    /*width: 170px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-1:hover {
    color: #fff;
}

.btn-degradado-verde {
    /*background-image: linear-gradient(to right, #002c5f, #26806d, #00b390);*/
    background-image: linear-gradient(to right, #a71b4b, #e91e63, #e65184);
    position: relative;
    z-index: 1;
}

.btn-degradado-verde::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*background-image: linear-gradient(to left, #002c5f, #26806d, #00b390);*/
    background-image: linear-gradient(to left, #a71b4b, #e91e63, #e65184);
    z-index: -1;
    transition: opacity 0.3s linear;
    opacity: 0;
    border-radius: 8px;
}

.btn-degradado-verde:hover::before {
    opacity: 1;
}

.btn-degradado-azul {
    background-image: linear-gradient(to right, #002c5f, #00b3de);
    position: relative;
    z-index: 1;
}

.btn-degradado-azul::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to left, #002c5f, #00b3de);
    z-index: -1;
    transition: opacity 0.3s linear;
    opacity: 0;
    border-radius: 8px;
}

.btn-degradado-azul:hover::before {
    opacity: 1;
}

.navigation-btn-list {
    display: flex;
    flex-direction: row;
    margin: 3rem 0 0 0;
}

.navigation-btn-list li {
    flex: 1;
}

.navigation-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 1rem;
    gap: 12px;
    transition: all 0.3s;
    height: 100%;
}

.navigation-btn:hover {
    transform: translate3d(0, -10px, 0);
}

.navigation-btn__icon {
    background-color: #fff;
    border-radius: 10rem;
}

.navigation-btn span {
    color: #fff;
    max-width: 10ch;
    text-align: center;
}

.navigation-btn__icon img {
    transition: transform 0.5s ease-in-out;
}

.navigation-btn:hover .navigation-btn__icon img {
    transform: rotate(360deg);
    transform: rotateY(180deg);
}

.qs {
    padding: 20px 10%;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.qs__container {
    display: flex;
    gap: 72px;
}

.qs__info-container {
    max-width: 600px;
    padding-top: 11rem;
}

.qs__title {
    font-weight: 700;
    color: #002c5f;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qs__title::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: #26806d;
    max-width: 85px;
    margin-left: 6px;
}

.qs__title span {
    color: #26806d;
}

.qs__text {
    color: #676767;
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 1.75rem;
}

.qs__subtitle {
    color: #3b3b3b;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.qs__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.qs__list li {
    color: #676767;
    line-height: 1.75;
    font-size: 15px;
    display: flex;
    gap: 3px;
}

.qs__list li img {
    margin-top: 3px;
}

.qs__img-container {
    margin: auto;
}

.avanter-info {
    text-align: center;
    padding: 50px 15%;
    padding: 50px 7vw;
    padding-top: 1.75rem;
}


.avanter-info h2 {
    font-weight: 700;
    color: #002c5f;
    margin-bottom: 3rem;
}

.avanter-info h2 span {
    color: #26806d;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    background: #fff;
    padding: 20px;
    border: 1px solid #dddddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s;
}

.stat.stat--primero {
    border-top-left-radius: 8px; 
    border-bottom-left-radius: 8px;
}

.stat.stat--ultimo {
    border-top-right-radius: 8px; 
    border-bottom-right-radius: 8px;
}

.stat__icon {
    background-color: #002c5f;
    border-radius: 10rem;
    padding: 10px;
    width: fit-content;
    margin-bottom: 1rem;
    transition: background 0.3s ease-in-out; 
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.stat__icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, #002c5f, #26806d, #00b390);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

.stat__number {
    color: #002c5f;
    font-weight: 800;
    font-size: 2.5rem;
    transition: all 0.3s;
}

.stat__title {
    color: #002c5f;
    font-weight: 600;
    max-width: 10ch;
    text-align: center;
    font-size: 19px;
    transition: all 0.3s;
}

.stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    background: linear-gradient(to left, #002c5f, #26806d, #00b390) border-box;
    mask: linear-gradient(to bottom, #fff 4px, transparent 4px, transparent calc(100% - 4px), #fff calc(100% - 4px));
    -webkit-mask: linear-gradient(to bottom, #fff 4px, transparent 4px, transparent calc(100% - 4px), #fff calc(100% - 4px));
    transition: all 0.3s;
    opacity: 0;
}

.stat:hover::before {
    opacity: 1;
}

.stat:hover .stat__icon::before {
    opacity: 1;
}

.stat:hover .stat__number,
.stat:hover .stat__title {
    color: #00b390;
}

.crema1 {
    width: 70px;
    position: absolute;
    top: 56%;
    right: 7%;
    z-index: 2;
    animation: girar 40s linear infinite;
}

.forma1 {
    width: 100px;
    position: absolute;
    top: 57%;
    right: 7%;
}

.crema2 {
    position: absolute;
    bottom: 6%;
    left: 5%;
    width: 80px;
    z-index: 2;
    animation: mover-lateral 10s ease-in-out infinite alternate;
}

.forma2 {
    position: absolute;
    bottom: 6%;
    left: 4%;
    z-index: 1;
    width: 110px;
}

.contenido__consultas {
    position: relative;
    padding: 80px 10%;
    padding: 80px 7vw;
    text-align: center;
    background-image: url('/img/landing/fondo-cruces.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #bfe0d8;
}

.contenido__header {
    text-align: left;
    margin-bottom: 4rem;
}

.contenido__header h2 {
    font-weight: bold;
    color: #002c5f;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
    margin-bottom: 1rem;
}

.contenido__header h2 span {
    color: #26806d;
}

.contenido__header-linea {
    width: 85px;
    height: 2px;
    background-color: #26806d;
    margin-left: 4px;
}

.contenido__header p {
    color: #676767;
    line-height: 1.75;
    font-size: 17px;
    margin-bottom: 1.75rem;
    max-width: 55ch;
}

.contenido__grid {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 60px;
}

.contenido__card {
    background: white;
    border-radius: 12px;
    padding: 30px 40px 10px 40px;
    text-align: left;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    width: 415px;
    z-index: 1;
}

.contenido__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/img/landing/fondo-hover1.png') center/cover no-repeat;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: -1;
}

.contenido__card:hover::before {
    opacity: 1;
    transform: scale(1.2);
}

.contenido__card:hover .contenido__card-title,
.contenido__card:hover .contenido__card-text {
    color: #fff;
}

.contenido__card:hover .contenido__card-icon {
    background-color: #52b989;
}

.contenido__card-icon {
    background-color: #002c5f;
    width: 72px;
    height: 72px;
    border-radius: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease-in-out;
}

.contenido__card-title {
    font-size: 24px;
    font-weight: 600;
    color: #002c5f;
    transition: all 0.3s ease-in-out;
}

.contenido__card-text {
    color: #676767;
    font-size: 16px;
    line-height: 1.5;
    transition: all 0.3s ease-in-out;
}

.contenido__fila {
    display: flex;
    justify-content: center; 
    gap: 60px;
    width: 100%;
}

.contacto {
    padding: 80px 15%;
}

.contacto__layout {
    display: flex;
    flex-direction: row;
    gap: 104px;
}

.contacto__header {
    margin-bottom: 64px;
}

.contacto__header h2 {
    font-weight: 700;
    color: #002c5f;
    margin-bottom: 24px;
}

.contacto__header p {
    color: #676767;
    font-size: 17px;
    margin-bottom: 1.75rem;
    max-width: 55ch;
}

.contacto__campos {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 56px;
}

.contacto__campos input {
    height: 47px;
    padding: 18px;
    font-size: 15px;
    border-radius: 4px;
    box-shadow: 0 0 0 1px #42547a;
    border: none;
    transition: all 0.3s;
    outline: none;
}

.contacto__campos textarea {
    min-height: 160px;
    padding: 12px;
    font-size: 15px;
    border-radius: 4px;
    box-shadow: 0 0 0 1px #42547a;
    border: none;
    transition: all 0.3s;
    outline: none;
}

.contacto__campos input:hover,
.contacto__campos textarea:hover {
    box-shadow: 0 0 0 1px #002c5f;
}

.contacto__campos input:focus,
.contacto__campos textarea:focus {
    box-shadow: 0 0 0 2px #002c5f;
}

.btn-2 {
    height: 43px;
    width: 201px;
    font-weight: 400;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    color: #fff;
}

.forma3 {
    position: absolute;
    bottom: 31%;
    left: 0;
}

.gotero {
    position: absolute;
    left: 5%;
    bottom: 28%;
    animation: subirBajar 1.5s ease-in-out infinite alternate;
}

.footer__text {
    max-width: 80ch;
    margin: 0 auto;
    line-height: 1.4;
}

.footer__header {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 20px;
}

footer a {
    text-decoration: underline;
    color: black;
}

footer a:hover {
    color: #002c5f;
}

.btn-arriba {
    position: fixed;
    bottom: 72px;
    right: 80px;
    width: 73px;
    height: 73px;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-image: linear-gradient(to left, #002c5f, #26806d, #00b390);
    z-index: 10;
}

.btn-arriba.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: all 0.3s;
}

.btn-arriba:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-down {
    animation: fadeInDown 0.6s ease;
}

@keyframes girar {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes mover-lateral {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(80px); /* Ajusta la distancia de movimiento */
    }
}

@keyframes subirBajar {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px); 
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px); 
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRight {
    animation: fadeInRight 0.8s ease-out forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeIn, .fadeInLeft, .fadeInRight {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate {
    opacity: 1;
}

.fadeIn.animate {
    transform: none;
}

.fadeInLeft {
    transform: translateX(-50px);
}

.fadeInRight {
    transform: translateX(70px); 
}

.fadeInLeft.animate, 
.fadeInRight.animate {
    transform: translateX(0);
}

::-webkit-scrollbar {
    width: 0.95em;
}

::-webkit-scrollbar-track {
    border-radius: 100vw;
    background: #f2f2f2;
    margin-block: 1px;
}

::-webkit-scrollbar-thumb {
    border-radius: 100vw;
    background: #99c9ff;
    border: 3px solid #f2f2f2;
}

::-webkit-scrollbar-thumb:hover {
    background: #66adff;
}

@media (max-width: 1024px) {
    .hero__container {
        padding: 22px 43px;
    }
    .hero__content {
        margin-right: 60px;
        padding-top: 0;
    }
    .hero__content h1 {
        font-weight: 500;
        margin-bottom: 48px;
        font-size: 25px;
    }
    .hero__list-item {
        margin-bottom: 56px;
        gap: 24px;
    }
    .hero__btn-container {
        gap: 20px;
    }
    .btn-1 {
        gap: 8px;
        width: 140px;
        font-size: 14px;
        height: 50px;
        padding: 0;
    }
    .btn-1 img {
        width: 20px;
        height: auto;
    }
    .hero__list-item li {
        font-size: 15px;
    }
    .hero__img--container {
        display: flex;
        align-items: center;
    }
    .navigation-btn__icon {
        width: 40px;
        height: 40px;
    }
    .navigation-btn__icon img {
        width: 40px;
        height: 40px;
    }
    .navigation-btn span {
        font-size: 13px;
    }
    .qs {
        padding: 68px 60px;
        margin-bottom: 12px;
    }
    .qs__container {
        gap: 60px;
    }
    .qs__title {
        margin-bottom: 36px;
        font-size: 26px;
    }
    .qs__text {
        font-size: 13px;
        margin-bottom: 22px;
    }
    .qs__list {
        gap: 24px;
    }
    .qs__list li {
        font-size: 13px;
    }
    .qs__img-container {
        margin: 0;
    }
    .qs__img-container img {
        min-width: 300px;
    }
    .qs__subtitle {
        font-size: 15px;
    }
    .btn-arriba {
        right: 42px;
        width: 45px;
        height: 45px;
    }
    .btn-arriba img {
        width: 30px;
    }
    .crema1 {
        width: 42px;
    }
    .forma1 {
        width: 60px;
    }
    .avanter-info h2 {
        margin-bottom: 42px;
        font-size: 26px;
    }
    .stat__icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
    }
    .stat__icon img {
        width: 40px;
        height: 40px;
    }
    .stat__number {
        font-size: 1.75rem;
    }
    .stat__title {
        font-size: 16px;
    }
    .crema2 {
        width: 50px;
    }
    .forma2 {
        width: 72px;
    }
    .qs__info-container {
        padding-top: 2rem;
    }
    .avanter-info {
        padding: 50px 60px;
        padding: 50px 7vw;
        padding-top: 1.75rem;
        max-width: 920px;
        margin: auto;
    }
    .contenido__consultas {
        padding: 50px 88px;
        padding: 50px 7vw;
    }
    .contenido__header {
        margin-bottom: 40px;
    }
    .contenido__header h2 {
        font-size: 26px;
        margin-bottom: 24px;
    }
    .contenido__header p {
        font-size: 14px;
    }
    .contenido__grid {
        gap: 36px;
    }
    .contenido__fila {
        gap: 36px;
    }
    .contenido__card {
        padding: 20px 22px 14px 22px;
    }
    .contenido__card-icon {
        width: 50px;
        height: 50px;
    }
    .contenido__card-icon img {
        max-width: 40px;
    }
    .contenido__card-title {
        font-size: 18px;
    }
    .contenido__card-text {
        font-size: 13px;
    }
    .contacto {
        max-width: 940px;
        margin: auto;
        padding: 56px 40px;
    }
    .contacto__layout {
        gap: 80px;
    }
    .contacto__header {
        margin-bottom: 24px;
    }
    .contacto__header h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .contacto__header p {
        font-size: 14px;
    }
    .contacto__campos {
        gap: 22px;
        margin-bottom: 30px;
    }
    .contacto__campos input {
        height: 28px;
        padding: 14px;
        font-size: 12px;
    }
    .contacto__campos textarea {
        min-height: 95px;
        padding: 14px;
        font-size: 12px;
    }
    .btn-2 {
        height: 28px;
        width: 120px;
        font-size: 12px;
    }
    .gotero {
        right: 5%;
        bottom: 5%;
        width: 40px;
        left: inherit;
    }
    .forma3 {
        bottom: 9%;
        right: 3%;
        width: 60px;
        left: inherit;
    }
    footer {
        padding: 50px;
        background-color: #fff;
        text-align: center;
        font-size: 14px;
        color: #252525;
        font-size: 11px;
    }
    .navbar__btn {
        margin-left: 1.75rem!important;
    }

}


@media (max-width: 648px) {
    .hero__container {
        display: flex;
        flex-direction: column;
        padding: 32px 20px;
        gap: 30px;  
    }
    .hero__content {
        margin-right: 0;
        padding-right: 1rem;
    }
    .hero__content h1 {
        margin-bottom: 32px;
        font-size: 30px;
        font-weight: 400;
    }
    .hero__list-item li {
        font-size: 16px;
    }
    .hero__list-item {
        margin-bottom: 56px;
        gap: 24px;
    }
    .hero__btn-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .btn-1 {
        gap: 8px;
        width: 281px;
        font-size: 15px;
    }
    .navigation-btn-list {
        flex-direction: column;
        margin-top: 30px;
    }
    .navigation-btn {
        flex-direction: row;
        gap: 0;
    }
    .navigation-btn__icon,
    .navigation-btn__icon img {
        width: 48px;
        height: 48px;
    }
    .navigation-btn span {
        font-size: 16px;
    }
    .qs {
        padding: 44px 20px;
        padding-bottom: 0;
        margin-bottom: 0;
        max-width: 600px;
        margin: auto;
    }
    .qs__container {
        flex-direction: column-reverse;
        gap: 0;
    }
    .qs__info-container {
        padding-top: 0;
    }
    .qs__title {
        margin-bottom: 26px;
        font-size: 26px;
    }
    .qs__title::after {
        max-width: 60px;
    }
    .qs__text {
        font-size: 13px;
        margin-bottom: 22px;
    }
    .qs__list {
        gap: 15px;
    }
    .avanter-info h2 {
        margin-bottom: 34px;
    }
    .stats {
        display: flex;
        flex-direction: column;
    }
    .stat__icon {
        width: 65px;
        height: 65px;
    }
    .stat__icon img {
        width: 65px;
        height: 65px;
    }
    .stat__number {
        font-size: 2.25rem;
    }
    .stat__title {
        font-size: 20px;
    }
    .espacio-blanco {
        display: none;
    }
    .forma1, .forma2, .crema1, .crema2 {
        display: none;
    }
    .btn-arriba {
        display: none;
    }
    .hamburger-menu {
        right: 0.5em;
    }
    .stat.stat--primero {
        border-radius: 0;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }
    .stat.stat--ultimo {
        border-radius: 0;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    .contenido__consultas {
        padding: 36px 7vw;
    }
    .contenido__header {
        margin-bottom: 26px;
    }
    .contenido__header h2 {
        flex-direction: column;
        align-items: baseline;
    }
    .contenido__header p {
        font-size: 14px;
    }
    .contenido__grid {
        gap: 24px;
    }
    .contenido__fila {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .contenido__card {
        width: 309px;
        padding: 24px 32px 4px;
    }
    .contenido__card-icon {
        width: 64px;
        height: 64px;
    }
    .contenido__card-icon img {
        width: 60px;
        height: 60px;
    }
    .contenido__card-text {
        font-size: 12px;
    }
    .contacto {
        padding: 35px 7vw;
    }
    .contacto__header {
        margin-bottom: 24px;
    }
    .contacto__layout {
        flex-direction: column;
        gap: 32px;
    }
    .contacto__header h2 {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 8px;
    }
    .contenido__header-linea {
        width: 64px;
        height: 1px;
        margin-left: 4px;
    }
    .contenido__header p {
        margin-bottom: 24px;
    }
    .contacto__campos {
        gap: 20px;
        margin-bottom: 26px;
    }
    .contacto__campos input {
        font-size: 11px;
        height: 24px;
    }
    .contacto__campos textarea {
        padding: 6px 14px;
        font-size: 11px;
    }
    footer {
        padding: 24px;
        font-size: 10px;
    }
    .footer__header {
        margin-bottom: 16px;
        flex-direction: column;
        gap: 0;
        align-items: center;
    }
    .logotipo img {
        max-width: 182px;
        padding-bottom: 2px;
    }
    .navbar-menu {
        top: 52px;
    }
}

/*PAGINA ADHESION DE FARMACIA*/

header picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

header picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page {
    margin-top: 58px;
}

.page__header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70px;
    padding: 0 20px;
}

.page__title {
    font-weight: 700;
    margin-bottom: 0;
    font-size: clamp(21px, 3vw, 23px);
    letter-spacing: -0.02em;
    color: #002c5f;
}

.breadcrumb {
    margin-bottom: 0;
    font-size: 10px;
    color: #002c5f;
}

.adhesion__layout {
    padding: 34px 16px;
    max-width: 864px;
    margin: 0 auto;
    max-width: 480px;
    animation: fadeIn 1s ease;
}

.adhesion__title {
    line-height: 1.25;
    margin-bottom: 0;
    color: #002c5f;
    font-size: clamp(15px, 2vw, 19px);
}

.adhesion__divisor {
    margin: 24px 0;
    border-top: 2px solid #00b3de;
    opacity: 1;
}

.aclaraciones {
    text-transform: uppercase;
    color: #3B3B3B;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: clamp(12px, 2vw, 14px);
}

.aclaraciones__list {
    font-size: clamp(12px, 2vw, 14px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: black;
    margin-bottom: 24px;
}

.aclaraciones__list li {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.aclaraciones__list li a {
    font-weight: 600;
    color: #00b3de;
}

.aclaraciones__importante {
    margin-bottom: 0;
    color: #002c5f;
    background-color: #EAF0F4;
    padding: 10px 42px;
    text-transform: uppercase;
    font-size: clamp(10px, 2vw, 40px);
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    font-size: clamp(10px, 2vw, 12px);
}

.adhesion__info {
    margin-bottom: 24px;
}

.adhesion__form {
    font-size: 11px;
    color: #002c5f;
}

.asterisco {
    color: #00b3de;
}

.input__group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.input__group .input {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.input__group label {
    color: #002c5f;
    font-weight: 500;
}

.input__group input, .input__group select {
    min-height: 28px;
    border: 1px solid #002c5f;
    border: none;
    box-shadow: 0 0 0 1px #002c5f;
    border-radius: 4px;
    color: #000;
    padding: 5px 10px;
    transition: all 0.3s;
    outline: none;
}

.input__group input:focus, .input__group select:focus {
    box-shadow: 0 0 0 2px #002c5f;
}

.input__group .input__error {
    color: red;
    font-size: 11px;
}

.adhesion__form-aviso {
    margin-bottom: 1.75rem;
}

.adhesion__campos {
    margin-bottom: 2.35rem;
}

.btn-3 {
    padding: 0.875rem 2.5rem;
    color: #fff;
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    height: 40px;
    border: 0;
    font-size: clamp(13px, 2vw, 15px);
}

.adhesion__checkbox {
    margin-bottom: 34px;
}

.adhesion__checkbox label {
    color: #002c5f;
}

.adhesion__checkbox a {
    color: #002c5f;
    font-weight: 700;
    text-decoration: underline;
}

.img-mobile {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-af-desktop {
    display: none;
}

.img-af-desktop img {
    margin: 0 auto;
}

@media (min-width: 649px) {
    .page {
        margin-top: 69px;
    }
    .page__header {
        height: 90px;
    }
    .img-mobile {
        display: none;
    }
    .adhesion__info {
        display: flex;
        flex-direction: row-reverse;
        gap: 24px;
        margin-bottom: 42px;
    }
    .img-af-desktop {
        flex: 1;
    }
    .adhesion__info-container {
        flex: 1;
    }
    .adhesion__campos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 10px;
        column-gap: 20px;
    }
    .adhesion__checkbox {
        margin-bottom: 60px;
    }
    .btn-3 {
        margin: 0 auto;
    }
    .img-af-desktop {
        display: block;
    }
    .adhesion__layout {
        padding: 34px 30px;
        max-width: 864px;
        margin: 0 auto;
    }
    .dos-input {
        display: flex;
        gap: 12px;
    }
    .dos-input .input__group {
        flex: 1;
    }
}


@media (min-width: 1024px) {
    .adhesion__layout {
        max-width: 1540px;
        padding: 72px;
        margin: 0 auto;
    }
    .adhesion__info {
        display: flex;
        flex-direction: row-reverse;
        margin-bottom: 80px;
        justify-content: space-between;
    }
    .adhesion__info-container {
        margin-left: 64px;
        flex: 1;
    }
    .img-af-desktop {
        flex: 1;
    }
    .adhesion__form {
        max-width: 1350px;
        margin: 0 auto;
        font-size: clamp(11px, 2vw, 14px);
    }
    .input__group input, .input__group select {
        height: 38px;
    }

}

input {
    background-color: white;
}


input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.login {
    background-color: #fff;
    padding: 28px 30px;
    max-width: 480px;
    margin: 0 auto;
    animation: fadeIn 1s ease;
}

.login__layout {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.login__card {
    padding: 32px 20px;
    border: 1px solid lightgrey;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.login__title {
    text-align: center;
    color: #002c5f;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
}

.login__form {
    margin-bottom: 22px;
}

.input__group.login__input {
    gap: 2px;
}

.input__group.login__input label {
    font-size: 10px;
}

.input__group.login__input input {
    font-size: 10px;
    padding-left: 20px;
    box-shadow: 0 0 0 1px #a0a0a0;
}

.input__icon {
    position: absolute;
    width: 12px;
    top: 60%;
    left: 2%;
}

.btn__ojo {
    background-color: white;
    border: 0;
    outline: none;
    position: absolute;
    top: 60%;
    right: 3%;
}

.forgot__pass {
    color: #26806d;
    width: 100%;
    display: block;
    text-align: right;
    font-size: 10px;
    margin: 20px 0;
    font-weight: 500;
}

.btn-3.btn-4 {
    height: 28px;
    font-size: 12px;
}

.aviso {
    font-size: 10px;
    color: #6c6c6c;
}

.aviso__layout {
    border: 1px solid #a0a0a0;
    border-radius: 10px;
    padding: 0.5rem 1rem;
}

.aviso__layout p {
    text-align: center;
    margin-bottom: 0;
    line-height: 1.5;
}

.aviso__layout img {
    display: inline;
    width: 14px;
    vertical-align: sub;
}

.aviso__layout a {
    font-weight: 700;
    text-decoration: underline;
    color: #26806d;
}

.login__img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rp-layout {
    display: flex;
    gap: 1rem;
    flex-direction: column-reverse;
}

@media (min-width: 786px) {
    .rp-layout {
        flex-direction: row;
    }
    .login {
        max-width: 900px;
        margin: 0 auto;
        padding: 42px 30px;
    }
    .login__layout {
        flex-direction: row-reverse;
        gap: 45px;
    }
    .login__card {
        flex: 1;
    }
    .login__img {
        flex: 1.6;
    }
    .login__img img {
        width: 100%;
    }
    .input__group.login__input input {
        height: 28px;
    }
    .btn-3.btn-4 {
        font-size: 11px;
    }
}

@media (min-width: 486px) {
    .input__group.login__input input {
        padding-left: 26px;
    }
    .btn-3.btn-4 {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .login {
        max-width: 1510px;
    }
    .login__layout {
        align-items: center;
        gap: 0;
        justify-content: space-around;
    }
    .login__card {
        height: fit-content;
        padding: 48px 32px;
        align-self: flex-start;
        margin-top: 2rem;
        max-width: 443px;
    }
    .login__img {
        max-width: 800px;
    }

    .login__img img {
        width: 90%;
    }
    .input__group.login__input {
        margin-bottom: 16px;
        gap: 7px;
    }
    .input__group.login__input input {
        height: 40px;
    }
    .input__icon {
        top: 57%;
        width: 15px;
    }
    .btn-3.btn-4 {
        height: 40px;
        font-size: clamp(10px, 2vw, 13px);
    }
    .login__form {
        margin-bottom: 3rem;
    }
    .btn__ojo img {
        width: 15px;
    }
    .login__title {
        font-size: 22px;
    }
    .input__group.login__input label,
    .input__group.login__input input,
    .forgot__pass,
    .aviso {
        font-size: 13px;
    }

}

.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    position: fixed; /* Para que quede en el centro de la pantalla */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 5000;
}

.opaco {
    opacity: 0.5; /* Valor de opacidad (de 0 a 1) */
    pointer-events: none; /* Opcional: Esto hace que el área no sea interactiva */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

