:root {
    --turquesa: #00afa9;
    --azul: #2ba3ba;
    --oscuro: #263d42;
    --gris: #607176;
    --suave: #f0f5f5;
    --borde: #dce7e7;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 165px;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--oscuro);
    background: #fff;
    line-height: 1.7;
}

h1,
h2 {
    font-family: "Bebas Neue", Impact, sans-serif;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: .025em;
    margin: 0 0 22px;
}

h1 {
    font-size: clamp(3.2rem, 7vw, 6rem);
}

h2 {
    color: var(--azul);
    font-size: clamp(2.4rem, 4vw, 3.7rem);
}

h3,
.boton,
.menu {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

h3 {
    margin: 0 0 14px;
    font-size: 1.2rem;
    line-height: 1.4;
}

p {
    margin: 0 0 20px;
}

a {
    color: #19645f;
    text-underline-offset: 4px;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

:focus-visible {
    outline: 3px solid #164c80;
    outline-offset: 4px;
}

.contenedor {
    width: min(1140px, calc(100% - 48px));
    margin-inline: auto;
}

.seccion {
    padding-block: 80px;
}

.centrado {
    text-align: center;
}

.fondo-suave {
    background: var(--suave);
}

.introduccion {
    max-width: 780px;
    margin: 0 auto 35px;
    color: var(--gris);
}

.etiqueta {
    font-family: "Montserrat", sans-serif;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid > * {
    min-width: 0;
}

.dos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tres {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #fff;
    border-bottom: 1px solid var(--borde);
}

.cabecera {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    min-height: 154px;
}

.logo {
    width: 148px;
    height: 148px;
    object-fit: contain;
}

.menu {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: .78rem;
}

.menu a {
    text-decoration: none;
}

.menu a[aria-current="page"] {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.menu-toggle {
    display: none;
    padding: 9px 15px;
    border: 1px solid var(--borde);
    border-radius: 5px;
    background: white;
}

.boton {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    padding: 13px 25px;
    border: 0;
    border-radius: 30px;
    background: var(--turquesa);
    color: #103d3b;
    font-size: .8rem;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.boton:hover {
    background: #77dcd6;
}

.boton.secundario {
    background: white;
    border: 1px solid var(--turquesa);
}

.acciones {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.acciones.centradas {
    justify-content: center;
}

.espacio {
    margin-top: 30px;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 570px;
    overflow: hidden;
    background: #183e43;
    color: white;
}

.hero-foto {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 37, 41, .86),
        rgba(10, 37, 41, .25)
    );
}

.hero-contenido {
    position: relative;
    z-index: 1;
    padding-block: 65px;
}

.hero-contenido p {
    max-width: 560px;
}

.portada {
    padding-block: 65px;
    background: var(--suave);
}

.portada h1 {
    color: var(--azul);
}

.tarjeta {
    border: 1px solid var(--borde);
    background: white;
    overflow: hidden;
}

.tarjeta-contenido {
    padding: 28px;
}

.foto {
    width: 100%;
    height: 290px;
    object-fit: cover;
    background: #e2ebeb;
}

.foto.grande {
    height: 390px;
}

.panel {
    padding: 30px;
    border-top: 3px solid var(--turquesa);
    background: var(--suave);
}

.numero,
.descuento {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    color: #168580;
    line-height: 1;
    margin-bottom: 20px;
}

.numero {
    font-size: 3rem;
}

.descuento {
    font-size: 5rem;
}

.resenas {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: center;
    gap: 40px;
    padding: 35px;
    border: 1px solid var(--borde);
}

.puntuacion {
    padding: 25px;
    text-align: center;
    background: var(--suave);
}

.puntuacion strong {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1;
}

.puntuacion small {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
}

.estrellas {
    position: relative;
    display: inline-block;
    color: #c8cfcf;
    font-size: 1.7rem;
    letter-spacing: 3px;
    white-space: nowrap;
}

.estrellas::after {
    content: "â˜…â˜…â˜…â˜…â˜…";
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    overflow: hidden;
    color: #996a00;
}

.instagram-feed {
    margin-bottom: 30px;
}

.mapa {
    width: 100%;
    height: 400px;
    border: 1px solid var(--borde);
    background: #e4ecec;
}

.galeria {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.galeria img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #e4ecec;
}

.galeria img:first-child {
    grid-column: 1 / -1;
    height: 310px;
}

.lista {
    padding-left: 22px;
}

.lista li {
    margin-bottom: 10px;
}

details {
    padding: 23px 0;
    border-bottom: 1px solid var(--borde);
}

summary {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    cursor: pointer;
}

details p {
    margin: 18px 0 0;
}

.formulario {
    padding: 30px;
    border: 1px solid var(--borde);
    background: var(--suave);
}

.formulario label {
    display: block;
    margin: 18px 0 7px;
    font-family: "Montserrat", sans-serif;
    font-size: .85rem;
    font-weight: 600;
}

.formulario input:not([type="checkbox"]):not([type="hidden"]),
.formulario select,
.formulario textarea {
    width: 100%;
    min-width: 0;
    padding: 12px;
    border: 1px solid #94acaf;
    border-radius: 6px;
    background: white;
    color: var(--oscuro);
    font-size: 1rem;
}

.formulario textarea {
    resize: vertical;
}

.campos {
    gap: 18px;
}

.formulario .consentimiento {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-block: 25px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.consentimiento input {
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    margin-top: 3px;
}

.nota {
    margin-top: 18px;
    font-size: .82rem;
    color: var(--gris);
}

.aviso {
    margin-block: 20px;
    padding: 18px;
    border-left: 4px solid var(--turquesa);
    background: #e4f7f6;
}

.trampa {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.footer {
    padding-block: 45px;
    background: #e4f7f6;
}

.pie-final {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #b5dcd8;
    font-size: .85rem;
}

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
    padding: 13px 20px;
    border-radius: 30px;
    background: #126c42;
    color: white;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: .85rem;
    box-shadow: 0 4px 18px #0002;
}

.saltar {
    position: fixed;
    top: -100px;
    left: 15px;
    z-index: 100;
    padding: 12px;
    background: white;
}

.saltar:focus {
    top: 10px;
}

@media (max-width: 1050px) {
    html {
        scroll-padding-top: 125px;
    }

    .cabecera {
        min-height: 114px;
    }

    .logo {
        width: 108px;
        height: 108px;
    }

    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        position: absolute;
        top: 114px;
        left: 0;
        right: 0;
        padding: 25px;
        background: white;
        box-shadow: 0 8px 15px #0001;
        font-size: .9rem;
    }

    .menu.abierto {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .menu a {
        padding: 8px;
    }
}

@media (max-width: 760px) {
    .contenedor {
        width: calc(100% - 36px);
    }

    .seccion {
        padding-block: 55px;
    }

    .dos,
    .tres,
    .resenas {
        grid-template-columns: 1fr;
    }

    .resenas,
    .formulario {
        padding: 22px;
    }

    .hero {
        min-height: 510px;
    }

    .foto,
    .foto.grande {
        height: 270px;
    }

    .mapa {
        height: 320px;
    }

    .whatsapp {
        right: 12px;
        bottom: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
img.logo-kapai {
  display: block;
  width: 150px;
  height: 150px;
  max-width: 100%;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  img.logo-kapai {
    width: 100px;
    height: 100px;
  }
}
.introduccion-empresas {
    max-width: 760px;
    color: var(--gris);
    font-size: 1.08rem;
}

.portada .acciones {
    margin-top: 28px;
}

.beneficios-empresas {
    margin-top: 40px;
}

.beneficios-empresas .panel {
    height: 100%;
}

.detalle-empresas,
.cotizacion-empresas {
    align-items: start;
    gap: 55px;
}

.detalle-empresas .panel h3:not(:first-child) {
    margin-top: 28px;
}

@media (max-width: 760px) {
    .detalle-empresas,
    .cotizacion-empresas {
        gap: 40px;
    }

    .portada .acciones {
        align-items: stretch;
        flex-direction: column;
    }
}
.introduccion-departamentos {
    max-width: 700px;
    color: var(--gris);
    font-size: 1.08rem;
}

.encabezado-alojamiento {
    max-width: 850px;
    margin-bottom: 36px;
}

.encabezado-alojamiento h2 {
    margin-bottom: 0;
}

.detalle-alojamiento {
    align-items: stretch;
    grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
    gap: 60px;
}

.resumen-alojamiento {
    width: 100%;
    max-width: none;
    padding: 24px;
    border: 1px solid rgba(20, 177, 171, .22);
    border-top: 4px solid var(--turquesa);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(17, 64, 68, .08);
}

.alojamiento-destacado {
    display: grid;
    gap: 18px;
}

.alojamiento-destacado > img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 18px;
}

.resumen-alojamiento .numero {
    margin-bottom: 12px;
}

.resumen-alojamiento .boton {
    margin-top: 14px;
}

.carrusel-bloque {
    margin-top: 50px;
}

.carrusel-encabezado {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.carrusel-encabezado h3 {
    margin: 0;
}

.carrusel-controles {
    display: flex;
    gap: 10px;
}

.carrusel-boton {
    width: 46px;
    height: 46px;
    border: 1px solid var(--turquesa);
    border-radius: 50%;
    background: white;
    color: #126c68;
    font-size: 1.4rem;
    cursor: pointer;
}

.carrusel-boton:hover {
    background: var(--turquesa);
    color: #103d3b;
}

.carrusel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--turquesa) var(--suave);
}

.carrusel img {
    flex: 0 0 min(520px, 82vw);
    width: min(520px, 82vw);
    height: 390px;
    object-fit: cover;
    scroll-snap-align: start;
    background: #e4ecec;
}

.informacion-estadia {
    margin-top: 35px;
}

.informacion-estadia .tarjeta {
    height: 100%;
}

.aviso-llegada {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    margin-top: 35px;
    padding: 35px;
    border-left: 5px solid var(--turquesa);
    background: var(--suave);
}

.aviso-llegada h3 {
    font-size: 1.45rem;
}

.aviso-llegada p:last-child {
    max-width: 760px;
    margin-bottom: 0;
}

.proximamente {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 35px;
}

.proximamente h3 {
    font-size: 1.55rem;
}

.lugares-cercanos {
    margin-top: 35px;
}

.servicio-tarjeta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-servicio {
    display: block;
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
    object-fit: contain;
}

.carrusel-valdivia-bloque {
    margin-top: 38px;
}

.carrusel-valdivia img {
    flex-basis: min(440px, 78vw);
    width: min(440px, 78vw);
    height: 290px;
    border-radius: 16px;
}

.lugares-cercanos .tarjeta {
    height: 100%;
}

.llamada-reserva {
    border-top: 4px solid var(--turquesa);
}

@media (max-width: 760px) {
    .encabezado-alojamiento,
    .aviso-llegada {
        align-items: stretch;
        flex-direction: column;
    }

    .resumen-alojamiento {
        max-width: none;
        justify-self: stretch;
    }

    .alojamiento-destacado > img {
        height: 320px;
    }

    .carrusel img {
        flex-basis: 85vw;
        width: 85vw;
        height: 300px;
    }

    .aviso-llegada {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .carrusel img {
        height: 250px;
    }

    .carrusel-boton {
        width: 42px;
        height: 42px;
    }
}
footer.footer-kapai {
    padding: 55px 0 24px;
    background: #123f42;
    color: #ffffff;
}

.footer-kapai .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr .8fr;
    gap: 45px;
    align-items: start;
}

.footer-kapai .footer-logo {
    display: block;
    width: 110px !important;
    height: 110px !important;
    max-width: 110px !important;
    margin: 0 0 20px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 50%;
}

.footer-kapai .footer-identidad p {
    max-width: 290px;
}

.footer-kapai .footer-desde {
    color: #92ded9;
    font-family: "Montserrat", sans-serif;
    font-size: .86rem;
    font-weight: 600;
}

.footer-kapai .footer-columna h2 {
    margin: 0 0 20px;
    color: #8ce1dc;
    font-family: "Montserrat", sans-serif;
    font-size: .82rem;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.footer-kapai .footer-enlaces {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-kapai .footer-enlaces li {
    margin-bottom: 10px;
}

.footer-kapai a {
    color: #ffffff;
    text-decoration-color: #72d8d2;
}

.footer-kapai a:hover {
    color: #8ce1dc;
}

.footer-kapai .footer-contacto {
    color: #ffffff;
    font-style: normal;
}

.footer-kapai .footer-redes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-kapai .red-social {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    flex: 0 0 44px;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    overflow: hidden;
    border: 1px solid #71d9d3;
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.footer-kapai .red-social:hover {
    color: #123f42;
    background: #71d9d3;
    transform: translateY(-2px);
}

.footer-kapai .red-social svg {
    display: block !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px;
    max-width: 22px;
    min-height: 22px;
    max-height: 22px;
    margin: 0 !important;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-kapai .red-social svg .relleno {
    fill: currentColor;
    stroke: none;
}

.footer-kapai .footer-final {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    color: #c9e6e4;
    font-size: .82rem;
}

.footer-kapai .footer-final p {
    margin: 0;
}

@media (max-width: 900px) {
    .footer-kapai .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .footer-kapai .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-kapai .footer-final {
        flex-direction: column;
    }
}
.contenido-alojamiento {
    display: flex;
    flex-direction: column;
}

.foto-destacada-alojamiento {
    min-height: 650px;
}

.foto-destacada-alojamiento img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    border-radius: 18px;
}

.resumen-horizontal {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    width: 100%;
    max-width: none;
    margin-top: 28px;
    padding: 24px;
}

.resumen-horizontal .numero {
    margin: 0;
}

.resumen-horizontal h3 {
    margin-bottom: 5px;
}

.resumen-horizontal p {
    margin: 0;
}

.resumen-horizontal .boton {
    margin: 0;
}

@media (max-width: 900px) {
    .detalle-alojamiento {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .foto-destacada-alojamiento,
    .foto-destacada-alojamiento img {
        min-height: 480px;
    }
}

@media (max-width: 600px) {
    .resumen-horizontal {
        grid-template-columns: auto 1fr;
    }

    .resumen-horizontal .boton {
        grid-column: 1 / -1;
        width: 100%;
        text-align: center;
    }

    .foto-destacada-alojamiento,
    .foto-destacada-alojamiento img {
        min-height: 390px;
    }
}
.informacion-tarjeta .icono-informacion {
    display: block;
    width: 58px;
    height: 58px;
    max-width: 58px;
    margin: 0 0 22px;
    object-fit: contain;
}

.informacion-tarjeta {
    min-height: 230px;
    padding: 30px;
}

.informacion-tarjeta h3 {
    margin-bottom: 10px;
}

.informacion-tarjeta p {
    margin-bottom: 0;
}
.proximamente .icono-proximamente {
    display: block;
    width: 70px;
    height: 70px;
    max-width: 70px;
    margin: 0 auto 22px;
    object-fit: contain;
}

.introduccion-fotos {
    max-width: 680px;
    color: var(--gris);
    font-size: 1.08rem;
}

.navegacion-galeria {
    position: sticky;
    top: 0;
    z-index: 20;
    padding-block: 16px;
    border-bottom: 1px solid rgba(17, 64, 68, .12);
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
}

.navegacion-galeria .contenedor {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.navegacion-galeria a {
    padding: 10px 18px;
    border: 1px solid var(--turquesa);
    border-radius: 999px;
    color: var(--azul);
    font-family: "Montserrat", sans-serif;
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
}

.navegacion-galeria a:hover {
    background: var(--turquesa);
}

.encabezado-galeria {
    max-width: 760px;
    margin-bottom: 35px;
}

.encabezado-galeria > p:last-child {
    color: var(--gris);
}

.cuadricula-fotos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.foto-galeria {
    position: relative;
    height: 310px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    background: #dfeaea;
    cursor: pointer;
}

.foto-galeria img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.foto-galeria::after {
    content: "Ver foto";
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(11, 57, 60, .82);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: .75rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
}

.foto-galeria:hover img {
    transform: scale(1.04);
}

.foto-galeria:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.visor-fotos {
    width: min(1100px, calc(100% - 40px));
    max-width: none;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
}

.visor-fotos::backdrop {
    background: rgba(4, 25, 27, .92);
}

.visor-fotos figure {
    margin: 0;
}

.visor-fotos figure img {
    display: block;
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 14px;
}

.visor-fotos figcaption {
    padding: 14px;
    color: #fff;
    text-align: center;
}

.cerrar-visor,
.visor-control {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--azul);
    cursor: pointer;
}

.cerrar-visor {
    top: -18px;
    right: -18px;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
}

.visor-control {
    top: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    transform: translateY(-50%);
}

.visor-anterior {
    left: 18px;
}

.visor-siguiente {
    right: 18px;
}

@media (max-width: 900px) {
    .cuadricula-fotos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .foto-galeria {
        height: 280px;
    }
}

@media (max-width: 600px) {
    .navegacion-galeria .contenedor {
        justify-content: flex-start;
    }

    .cuadricula-fotos {
        grid-template-columns: 1fr;
    }

    .foto-galeria {
        height: 330px;
    }

    .visor-control {
        width: 42px;
        height: 42px;
    }

    .visor-anterior {
        left: 8px;
    }

    .visor-siguiente {
        right: 8px;
    }

    .cerrar-visor {
        top: -14px;
        right: 0;
    }
}
.plataformas {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
}

.plataformas img {
    display: block;
    width: 110px !important;
    height: 70px !important;
    max-width: 110px !important;
    object-fit: contain;
}

.plataformas a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 95px;
    padding: 12px;
    background: #fff;
    border: 1px solid #dce5e5;
}
.servicio-incluido {
    min-height: 250px;
    padding: 28px;
}

.servicio-incluido .icono-servicio {
    display: block !important;
    width: 55px !important;
    height: 55px !important;
    min-width: 0 !important;
    max-width: 55px !important;
    min-height: 0 !important;
    max-height: 55px !important;
    margin: 0 0 20px !important;
    object-fit: contain !important;
    object-position: left center;
}

.servicio-incluido h3 {
    margin: 0 0 10px;
}

.servicio-incluido p {
    margin: 0;
}
img.logo-asociado {
    display: block !important;
    width: 180px !important;
    height: 85px !important;
    min-width: 0 !important;
    max-width: 180px !important;
    min-height: 0 !important;
    max-height: 85px !important;
    margin: 0 0 28px !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: left center;
}
.grupo-opciones {
    margin: 25px 0 0;
    padding: 22px;
    border: 1px solid #94acaf;
    border-radius: 6px;
    background: #fff;
}

.grupo-opciones legend {
    padding: 0 8px;
    font-family: "Montserrat", sans-serif;
    font-size: .9rem;
    font-weight: 600;
}

.formulario .opcion {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.formulario .opcion input {
    flex: 0 0 19px;
    width: 19px;
    height: 19px;
    margin: 0;
}

.grupo-opciones .nota {
    margin: 16px 0 0;
}
.introduccion-contacto {
    max-width: 760px;
    margin-top: 24px;
    line-height: 1.7;
}

.contacto-formulario {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

.contacto-formulario .formulario {
    width: 100%;
}

@media (max-width: 768px) {
    .contacto-formulario {
        max-width: 100%;
    }
}
