:root {
    --color-primario: #003C61;
    --color-secundario: #4AA8E3;
    --color-terciario: #2D3439;
    --color-texto: #1F2B32;
    --background-color: #FBFBFE;
    --font-family: 'Montserrat', sans-serif;
    --bs-gutter-x: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    font-family: var(--font-family);
    color: var(--color-texto);
}

header {
    background: linear-gradient(180deg, rgba(0, 81, 131, 0.50) 0%, #F9FDFF 100%);
}

.post, .page {
    margin: 0;
}

a:visited {
    color: #ffffff;
}

.fondo-header {
    background-image: url(https://www.asisclick.cl/wp-content/uploads/2025/11/dec-fondo.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}

@media (max-width: 1200px) {
    .fondo-header {
        background-image: none;
    }
}

h1,
h2 {
    font-weight: 900;
}

h1 {
    font-size: 3rem;
    margin: 1rem 0;
}


nav.container-fluid {
    display: flex;
    justify-content: space-between;
    height: 15vh;
    padding: 0 6rem;
}

@media (max-width: 768px) {
    .menu-superior {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

img.logo {
    width: 250px;
    height: auto;
}

.redes-top {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

@media (max-width: 1199px) and (min-width: 769px) {

    /* 1. Ajuste de la Navegación */
    nav.container-fluid {
        padding: 0 3rem;
        /* Reduce el relleno lateral */
        height: 12vh;
        /* Reduce la altura */
    }

    img.logo {
        width: 200px;
        /* Hace el logo un poco más pequeño */
    }

    .redes-top {
        gap: 1rem;
        /* Reduce el espacio entre iconos */
    }
}

.redes-top li {
    margin: 10px 0;
}

.redes-top li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-primario);
    transition: all 0.3s ease;
}

.redes-top li a i {
    font-size: 1.2em;
    color: #FFFFFF;
}

.redes-top li a:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

.img-hero {
    margin-right: 0;
    display: flex;
    justify-content: center;
}

.img-hero img {
    height: auto;
    width: 90%;
}

.seccion-hero {
    padding-top: 3rem;
}

.hero-content {
    width: 50%;
    padding-top: 4rem;
    padding-left: 4rem;
}

.hero-content .sub-hero {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primario);
}


.hero-content .desc-hero {
    color: var(--color-primario);
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 1rem;
    line-height: normal;
}

.hero-content .desc-hero span {
    color: var(--color-secundario);
}

@media(max-width: 768px) {
    .hero-content {
        width: 100%;
        padding-left: 2rem;
    }

    .img-hero {
        margin-top: 2rem;
        margin-bottom: 4rem;
    }
}


.pie-hero {
    margin-top: 3rem;
    display: flex;
    justify-content: start;
    flex-direction: column;
    align-items: start;
}

.pie-hero a.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--background-color);
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    font-size: 1.25rem;
    border: none;
    border-radius: 16px;
    background: linear-gradient(180deg, #003D62 0%, #007CC8 100%);
    margin-bottom: 1rem;
    transition: all 0.5s ease-in-out;
}

.pie-hero a.btn-primary:hover {
    background: linear-gradient(90deg, #003D62 0%, #007CC8 100%);
    box-shadow:
        0 0 15px rgba(0, 124, 200, 0.8),
        0 5px 20px rgba(0, 61, 98, 0.4);
    transform: scale(1.05) translateY(-3px);
    filter: saturate(1.2) brightness(1.1);
}

.pie-hero a.btn-primary i {
    font-size: 1.8rem;
    margin-left: 1.5rem;
}


.pie-hero p {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
}

.pie-hero p i {
    color: var(--color-secundario);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .pie-hero{
        align-items: center;
    }
}

@media (max-width: 1199px) and (min-width: 769px) {
    .hero-content {
        width: 80%;
        padding-left: 4rem;
        padding-top: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-content .desc-hero {
        font-size: 1.25rem;
    }

    .img-hero img {
        width: 100%;
    }
}

section.seccion-video.container {
    margin-top: 6rem;
}

.col.video {
    padding: 15px;
}

.col.video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15),
        0 6px 6px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-video h2 {
    width: 80%;
    font-size: 2rem;
    color: var(--color-primario);
}

.content-video p {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 2rem;
}

.content-video ul {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 2rem 2rem;
}

.content-video ul li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1rem;
}

.hr-video {
    background-color: var(--color-terciario);
    width: 96px;
    height: 4px;
}

.content-video a.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    color: var(--background-color);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 1.25rem;
    border: none;
    border-radius: 16px;
    background: linear-gradient(180deg, #003D62 0%, #007CC8 100%);
    margin-bottom: 1rem;
    transition: all 0.5s ease-in-out;
}

.content-video a.btn-primary:hover {
    background: linear-gradient(90deg, #003D62 0%, #007CC8 100%);
    box-shadow:
        0 0 15px rgba(0, 124, 200, 0.8),
        0 5px 20px rgba(0, 61, 98, 0.4);
    transform: scale(1.05) translateY(-3px);
    filter: saturate(1.2) brightness(1.1);
}

.video h3 {
    color: var(--color-texto);
    font-weight: 700;
    font-size: 1.25rem;
}

.video p {
    font-size: 1rem;
    font-weight: 500;
}

.seccion-pasos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 6rem 0;
}

section h2 {
    color: var(--color-primario);
    font-size: 30px;
    width: 35%;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .content-video h2 {
        width: 100%;
    }

    section h2 {
        width: 90%;
        text-align: center;
    }
}

.pre-titulo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.hr-t {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-terciario);
    width: 19px;
    height: 1px;
}

.pre-titulo p {
    margin-bottom: 0;
}

.fila-pasos {
    display: flex;
    justify-content: center;
    margin: 0 1rem;
    gap: 2rem;
}

.paso {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 25%;
    border-radius: 26px;
    background-color: #F1F3F4;
    padding: 2rem 1rem 1rem;
}

.paso h3 {
    color: var(--color-texto);
    font-size: 20px;
    font-weight: 700;
}

.paso span {
    color: var(--color-primario);
}

.paso p {
    font-size: 18px;
    font-weight: 500;
}

.icn-paso {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--Secundario, #4AA8E3) 0%, #295D7D 100%);
    transition: all 0.3s ease;
}

.icn-paso i {
    font-size: 2.5rem;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .fila-pasos {
        flex-direction: column;
        align-items: center;
    }

    .paso {
        width: 90%;
    }
}

.seccion-servicios {
    margin-bottom: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.fila-servicio {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.servicio {
    width: 31%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem;
    text-align: center;
    border-radius: 39px;
    background-color: #E8F6FF;
    gap: 2rem;
    cursor: default;
    transition: transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.servicio:hover {
    transform: translateY(-5px);
    background-color: #bce5ff;
}

.servicio img {
    width: 70px;
    height: auto;
}

@media (max-width: 783px) {
    .servicio {
        display: block;
        width: 45%;
    }

    .servicio img {
        margin-bottom: 1rem;
    }
}

.serv-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: start;
}

.serv-content h3 {
    font-size: 23px;
    font-weight: 600;
    color: var(--color-primario);
}

.serv-content p {
    font-size: 18px;
    margin-bottom: 0;
}

@media (max-width: 1199px) and (min-width: 769px) {
    section h2 {
        width: 50%;
        font-size: 28px;
    }

    .fila-pasos {
        gap: 1rem;
    }

    .paso {
        width: 30%;
        padding: 1.5rem 0.5rem 0.5rem;
    }

    .fila-servicio {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .servicio {
        width: 45%;
    }

    .col.garantia {
        width: 45%;
    }

    .content-video h2 {
        font-size: 1.8rem;
    }
}

section.garantias {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6rem;
}

.col.garantia {
    background-color: #F1F3F4;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35%;
    border-radius: 24px;
    padding: 2rem;
}

@media (max-width: 768px) {
    .col.garantia {
        width: 90%;
    }
}

.fila-garantia {
    gap: 2rem;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.garantia h3 {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
}

.garantia .pg-1 {
    color: var(--color-secundario);
    font-size: 30px;
    font-weight: 700;
    width: 90%;
    text-align: center;
    margin-bottom: 0;
}

.content-garn {
    width: 90%;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    padding: 1rem 1rem;
    border-radius: 24px;
    border: 1px solid var(--primario, #003C61);
    background: rgba(74, 168, 227, 0.15);
}

.content-garn p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.content-garn span {
    color: #117322;
}

.content-garn.azul span {
    color: #0369A8;
}

.p-pie {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;
}

.p-pie i {
    margin-right: 1rem;
    font-size: 20px;
    color: #00FF6A;
}

.p-pie.azul i {
    color: var(--color-secundario);
}

.row.row-cols-1.fila-security {
    display: flex;
    justify-content: center;
}

.security {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #F1F3F4;
    border-radius: 24px;
    padding: 2rem 3rem;
}

.security h3 {
    color: var(--color-secundario);
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
}

.security p {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
}

.security a.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--background-color);
    padding: 0.5rem 2.5rem;
    font-weight: 600;
    font-size: 1.25rem;
    border: none;
    border-radius: 16px;
    background: linear-gradient(180deg, #003D62 0%, #007CC8 100%);
    margin-bottom: 1rem;
    transition: all 0.5s ease-in-out;
}

.security a.btn-primary:hover {
    background: linear-gradient(90deg, #003D62 0%, #007CC8 100%);
    box-shadow:
        0 0 15px rgba(0, 124, 200, 0.8),
        0 5px 20px rgba(0, 61, 98, 0.4);
    transform: scale(1.05) translateY(-3px);
    filter: saturate(1.2) brightness(1.1);
}

@media (max-width: 768px) {
    .security {
        width: 90%;
        padding: 1.5rem 1rem;
    }

    .security h3 {
        font-size: 20px;
        text-align: center;
    }

    .security p {
        font-size: 16px;
        text-align: center;
    }
}


section.pctotal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 6rem;
}

.pctotal img {
    width: 400px;
    height: auto;
    margin-bottom: 2rem;
}

.pctotal h2 {
    color: var(--color-primario);
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 1rem;
    width: 45%;
}

.pctotal p {
    margin: 2rem;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
}
.pctotal p span {
    color: var(--color-secundario);
}

.pctotal a.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primario);
    padding: 0.5rem 2rem;
    width: 30%;
    font-weight: 600;
    font-size: 1.25rem;
    border: 3px solid var(--color-primario);
    border-radius: 59px;
    background-image:
        linear-gradient(to right,
            #003D62 0%,
            #007CC8 50%,
            white 50%,
            white 100%);
    background-size: 200% 100%;
    background-position: right center;
    background-color: transparent;
    transition: all 0.5s ease-in-out;
    margin-bottom: 1rem;
    cursor: pointer;
    gap: 1rem;
}

.pctotal a.btn-primary i {
    font-size: 1.5rem;
}

.pctotal a.btn-primary:hover {
    background-position: left center;
    color: var(--background-color);
    box-shadow: 0 4px 15px rgba(0, 61, 98, 0.4);
}

@media (max-width: 768px) {
    .pctotal h2 {
        width: 90%;
        font-size: 24px;
        text-align: center;
    }

    .pctotal p {
        font-size: 18px;
        margin: 1rem;
        text-align: center;
    }

    .pctotal a.btn-primary {
        width: 75%;
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}

@media (max-width: 1199px) and (min-width: 769px) {
    .pctotal h2 {
        width: 70%;
        font-size: 28px;
    }

    .pctotal p {
        font-size: 22px;
        margin: 1.5rem;
    }

    .pctotal a.btn-primary {
        width: 50%;
        font-size: 1.1rem;
    }
}

footer {
    background-color: var(--color-texto);
    color: #FFFFFF;
    padding: 3rem 6rem;
}

.fila-footer {
    margin-left: 10%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

footer .logo-footer {
    width: 250px;
    height: auto;
    margin-bottom: 1rem;
}

footer h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 0.8rem;
}

footer ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

footer p a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

footer p a i {
    margin-right: 1rem;
}

footer ul li a:hover {
    color: var(--color-secundario);
}

.logo-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.logo-whatsapp:hover {
    transform: scale(1.1);

}

.redes-top {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 2rem;
}

.redes-top li {
    margin: 10px 0;
}

.redes-top li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-secundario);
    transition: all 0.3s ease;
}

.redes-top li a i {
    font-size: 1.2em;
    color: #FFFFFF;
}

.redes-top li a:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

@media (max-width: 1199px) and (min-width: 769px) {
    footer {
        padding: 2rem 3rem;
    }

    .logo-footer {
        width: 200px;
    }

    footer h3 {
        font-size: 1.5rem;
    }

    footer ul li a,
    footer p a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .redes-top {
        justify-content: center;
    }
    footer {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .fila-footer {
        flex-direction: column;
        align-items: start;
        margin-left: 0;
    }

    .logo-footer {
        width: 150px;
        margin-bottom: 1rem;
    }
}

