:root {
    --pri: #174e75;
    --pri-dk: #0f3450;
    --pri-lt: #1d6396;
    --acc: #CAA46C;
    --acc-dk: #b08a52;
    --acc-lt: #dfc09a;
    --wh: #ffffff;
    --off: #f8f6f2;
    --td: #1a1a1a;
    --tm: #3d3d3d;
    --tl: #666;
    --fh: 'Playfair Display', 'Georgia', serif;
    --fb: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --r: 10px;
    --rl: 18px;
    --s1: 0 2px 12px rgba(23, 78, 117, .08);
    --s2: 0 6px 32px rgba(23, 78, 117, .14);
    --s3: 0 16px 56px rgba(23, 78, 117, .20);
    --tr: .28s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px
}

body {
    font-family: var(--fb);
    color: var(--td);
    background: var(--wh);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--fh);
    line-height: 1.18
}

img {
    max-width: 100%;
    height: auto
}

section {
    padding: 96px 0
}

.lbl {
    font-family: var(--fb);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--acc);
    margin-bottom: .65rem;
    display: block
}

.sec-h {
    font-family: var(--fh);
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 700;
    color: var(--pri);
    margin-bottom: 1rem;
    line-height: 1.15
}

.sec-h span {
    color: var(--acc);
    font-style: italic
}

.sec-p {
    font-size: 1.05rem;
    color: var(--tm);
    max-width: 620px;
    line-height: 1.75
}

/* SCROLL REVEAL */
.rv {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s ease
}

.rv.on {
    opacity: 1;
    transform: none
}

.rvl {
    opacity: 0;
    transform: translateX(-26px);
    transition: opacity .65s ease, transform .65s ease
}

.rvl.on {
    opacity: 1;
    transform: none
}

.rvr {
    opacity: 0;
    transform: translateX(26px);
    transition: opacity .65s ease, transform .65s ease
}

.rvr.on {
    opacity: 1;
    transform: none
}

.d1 {
    transition-delay: .10s
}

.d2 {
    transition-delay: .20s
}

.d3 {
    transition-delay: .30s
}

.d4 {
    transition-delay: .40s
}

.d5 {
    transition-delay: .50s
}

/* BUTTONS */
.bp {
    background: var(--pri);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--fb);
    font-weight: 600;
    font-size: .95rem;
    padding: .82rem 2.1rem;
    transition: background var(--tr), box-shadow var(--tr), transform var(--tr);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer
}

.bp:hover {
    background: var(--pri-dk);
    color: #fff;
    box-shadow: 0 6px 24px rgba(23, 78, 117, .32);
    transform: translateY(-2px)
}

.ba {
    background: var(--acc);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--fb);
    font-weight: 600;
    font-size: .95rem;
    padding: .82rem 2.1rem;
    transition: background var(--tr), box-shadow var(--tr), transform var(--tr);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer
}

.ba:hover {
    background: var(--acc-dk);
    color: #fff;
    box-shadow: 0 6px 24px rgba(202, 164, 108, .38);
    transform: translateY(-2px)
}

.bw {
    background: rgba(255, 255, 255, .13);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 50px;
    font-family: var(--fb);
    font-weight: 600;
    font-size: .95rem;
    padding: .78rem 1.9rem;
    transition: all var(--tr);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem
}

.bw:hover {
    background: rgba(255, 255, 255, .22);
    color: #fff;
    border-color: rgba(255, 255, 255, .8)
}

.bwa {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--fb);
    font-weight: 700;
    font-size: 1rem;
    padding: .88rem 2.3rem;
    transition: background var(--tr), box-shadow var(--tr), transform var(--tr);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    cursor: pointer
}

.bwa:hover {
    background: #1cb857;
    color: #fff;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .38);
    transform: translateY(-2px)
}

.bwao {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .65);
    border-radius: 50px;
    font-family: var(--fb);
    font-weight: 600;
    font-size: .92rem;
    padding: .78rem 1.8rem;
    transition: all var(--tr);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem
}

.bwao:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border-color: #fff
}

/* NAVBAR */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background var(--tr), box-shadow var(--tr), padding var(--tr)
}

#nav.sc {
    background: #fff;
    box-shadow: 0 2px 20px rgba(23, 78, 117, .09);
    padding: 10px 0
}

#nav .navbar-brand img {
    height: 34px
}

.brtxt {
    font-family: var(--fh);
    font-weight: 900;
    font-size: 1.4rem;
    color: #fff
}

.brtxt span {
    color: var(--acc)
}

#nav.sc .brtxt {
    color: var(--pri)
}

#nav .nav-link {
    font-family: var(--fb);
    font-weight: 500;
    font-size: .88rem;
    color: rgba(255, 255, 255, .92);
    padding: .4rem .95rem;
    transition: color var(--tr)
}

#nav.sc .nav-link {
    color: var(--td)
}

#nav .nav-link:hover,
#nav.sc .nav-link:hover,
#nav .nav-link.active,
#nav.sc .nav-link.active {
    color: var(--acc)
}

#nav .navbar-toggler {
    border: 1.5px solid rgba(255, 255, 255, .45);
    padding: .3rem .5rem
}

#nav.sc .navbar-toggler {
    border-color: var(--pri)
}

#nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,.9)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

#nav.sc .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23174e75' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

/* Por defecto, ocultamos el logo de scroll */
.logo-scroll {
    display: none;
}

/* Cuando el nav tiene la clase .sc (por el JS) */
#nav.sc .logo-normal {
    display: none;
}

#nav.sc .logo-scroll {
    display: block;
}

.npill {
    background: var(--acc) !important;
    color: #fff !important;
    border-radius: 50px;
    padding: .38rem 1.25rem !important;
    margin-left: .5rem;
    font-weight: 600 !important
}

.npill:hover {
    background: var(--acc-dk) !important
}

/* HERO */
#hero {
    min-height: 100vh;
    background: linear-gradient(140deg, var(--pri-dk) 0%, var(--pri) 50%, #1a6b9e 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 130px 0 90px;
    overflow: hidden
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 28%, rgba(202, 164, 108, .13) 0%, transparent 48%), radial-gradient(circle at 8% 82%, rgba(255, 255, 255, .04) 0%, transparent 36%);
    pointer-events: none
}

#hero::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -80px;
    width: 600px;
    height: 600px;
    background: url('favicon.png') no-repeat center/contain;
    opacity: .04;
    pointer-events: none
}

.hpill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(202, 164, 108, .18);
    border: 1px solid rgba(202, 164, 108, .38);
    color: var(--acc-lt);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: .38rem 1rem;
    margin-bottom: 1.5rem
}

#hero h1 {
    font-family: var(--fh);
    font-size: clamp(2.7rem, 6.5vw, 4.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.06;
    margin-bottom: 1.4rem
}

#hero h1 em {
    color: var(--acc);
    font-style: italic
}

.hsub {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: rgba(255, 255, 255, .82);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.7
}

.hctas {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    align-items: center
}

.hstats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 3.6rem;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--rl);
    overflow: hidden
}

.hsi {
    flex: 1;
    min-width: 130px;
    padding: 1.1rem 1.4rem;
    border-right: 1px solid rgba(255, 255, 255, .1)
}

.hsi:last-child {
    border-right: none
}

.hsn {
    font-family: var(--fh);
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    line-height: 1
}

.hsl {
    font-size: .73rem;
    color: rgba(255, 255, 255, .6);
    margin-top: .2rem;
    line-height: 1.4
}

.hvis {
    position: relative;
    display: flex;
    justify-content: center
}

.hiph {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 3/4;
    background: rgba(255, 255, 255, .06);
    border: 2px dashed rgba(255, 255, 255, .18);
    border-radius: var(--rl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .45);
    font-size: .82rem;
    text-align: center;
    padding: 2rem
}

.hiph i {
    font-size: 4rem;
    color: rgba(202, 164, 108, .5);
    margin-bottom: 1rem
}

.fc {
    position: absolute;
    background: #fff;
    border-radius: var(--r);
    padding: .8rem 1.1rem;
    box-shadow: var(--s3);
    display: flex;
    align-items: center;
    gap: .65rem
}

.fc .fci {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.fc strong {
    display: block;
    font-size: .83rem;
    font-weight: 700;
    color: var(--pri);
    line-height: 1.2
}

.fc span {
    font-size: .7rem;
    color: var(--tl)
}

.fcl {
    bottom: 24px;
    left: -20px
}

.fcr {
    top: 30px;
    right: -20px
}

/* TRUST BAR */
#trust {
    background: var(--off);
    padding: 26px 0;
    border-bottom: 1px solid #e9e6e0
}

.tri {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2.5rem
}

.trit {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: var(--tm);
    font-size: .84rem;
    font-weight: 500
}

.trit i {
    font-size: 1.05rem;
    color: var(--acc)
}

.trsep {
    width: 1px;
    height: 22px;
    background: #d5d0c8
}

/* CÓMO FUNCIONA */
#como-funciona {
    background: var(--wh)
}

.pconn {
    position: relative
}

@media(min-width:992px) {
    .pconn::after {
        content: '→';
        position: absolute;
        top: 38px;
        right: -18px;
        font-size: 1.4rem;
        color: var(--acc);
        opacity: .6;
        z-index: 2
    }

    .pconn:last-child::after {
        display: none
    }
}

.scard {
    background: var(--off);
    border-radius: var(--rl);
    padding: 2.2rem 1.8rem 2rem;
    height: 100%;
    position: relative;
    border: 1.5px solid transparent;
    transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr), background var(--tr)
}

.scard:hover {
    border-color: rgba(202, 164, 108, .35);
    box-shadow: var(--s2);
    transform: translateY(-5px);
    background: #fff
}

.snum {
    position: absolute;
    top: -15px;
    left: 1.8rem;
    background: var(--pri);
    color: #fff;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(23, 78, 117, .3)
}

.sico {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--pri), var(--pri-lt));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.55rem;
    margin-bottom: 1.3rem
}

.scard h4 {
    font-family: var(--fh);
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--pri);
    margin-bottom: .5rem
}

.scard p {
    font-size: .88rem;
    color: var(--tm);
    margin: 0;
    line-height: 1.6
}

.fstrip {
    background: var(--pri);
    border-radius: var(--rl);
    padding: 1.8rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    margin-top: 3rem
}

.fsi {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: rgba(255, 255, 255, .9);
    font-size: .85rem;
    font-weight: 500
}

.fsi i {
    font-size: 1.1rem;
    color: var(--acc)
}

.fsep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, .2)
}

/* SOBRE NOSOTROS */
#sobre-nosotros {
    background: var(--off)
}

.atxt p {
    font-size: .98rem;
    color: var(--tm);
    margin-bottom: 1rem
}

.aquote {
    border-left: 4px solid var(--acc);
    padding: 1rem 1.5rem;
    background: rgba(202, 164, 108, .07);
    border-radius: 0 var(--r) var(--r) 0;
    margin-top: 1.8rem
}

.aquote p {
    font-family: var(--fh);
    font-style: italic;
    font-size: 1.08rem;
    color: var(--pri);
    margin: 0;
    line-height: 1.55
}

.abadges {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.5rem
}

.abadge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #fff;
    border: 1px solid rgba(23, 78, 117, .12);
    border-radius: 50px;
    padding: .35rem .9rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--pri)
}

.abadge i {
    color: var(--acc);
    font-size: .95rem
}

.vwrap {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--pri-dk), var(--pri));
    border-radius: var(--rl);
    overflow: hidden;
    box-shadow: var(--s3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative
}

.vwrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(202, 164, 108, .1), transparent 60%)
}

.pring {
    width: 78px;
    height: 78px;
    background: rgba(202, 164, 108, .88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1rem;
    transition: background var(--tr), transform var(--tr);
    box-shadow: 0 0 0 12px rgba(202, 164, 108, .2)
}

.vwrap:hover .pring {
    background: var(--acc);
    transform: scale(1.1)
}

/* ENTORNOS */
#entornos {
    background: linear-gradient(175deg, var(--pri-dk) 0%, var(--pri) 100%);
    position: relative;
    overflow: hidden
}

#entornos::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 85% 40%, rgba(202, 164, 108, .1), transparent 55%);
    pointer-events: none
}

.ecard {
    border-radius: var(--rl);
    height: 420px;
    position: relative;
    overflow: hidden;
    transition: transform var(--tr)
}

.ecard:hover {
    transform: translateY(-6px)
}

.eshell {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--rl);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end
}

.eshell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 52, 80, .96) 0%, rgba(15, 52, 80, 0.5) 100%, transparent 100%)
}

.ebgi {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-size: 7rem;
    color: rgba(255, 255, 255, .06);
    pointer-events: none
}

.iphn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(202, 164, 108, .22);
    border: 1px dashed rgba(202, 164, 108, .5);
    color: rgba(255, 255, 255, .55);
    font-size: .63rem;
    padding: .28rem .6rem;
    border-radius: 4px;
    max-width: 150px;
    text-align: center;
    line-height: 1.4
}

.ebody {
    position: relative;
    z-index: 2;
    padding: 1.8rem 1.7rem
}

.eic {
    width: 44px;
    height: 44px;
    background: var(--acc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: .75rem;
    box-shadow: 0 3px 12px rgba(202, 164, 108, .35)
}

.ebody h4 {
    font-family: var(--fh);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem
}

.ebody p {
    font-size: .86rem;
    color: rgba(255, 255, 255, .82);
    margin: 0;
    line-height: 1.55
}

.ebody ul {
    padding: 0;
    list-style: none;
    margin: .8rem 0 0
}

.ebody ul li {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    padding: .2rem 0;
    display: flex;
    align-items: flex-start;
    gap: .5rem
}

.ebody ul li::before {
    content: '✓';
    color: var(--acc);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .05rem
}

/* CTA WA */
#ctawa {
    background: var(--acc);
    padding: 72px 0;
    position: relative;
    overflow: hidden
}

#ctawa::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, .07);
    border-radius: 50%
}

#ctawa::after {
    content: '';
    position: absolute;
    left: -40px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    background: rgba(0, 0, 0, .05);
    border-radius: 50%
}

#ctawa h2 {
    font-family: var(--fh);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: .65rem
}

#ctawa p {
    color: rgba(255, 255, 255, .87);
    font-size: 1.02rem;
    margin: 0
}

/* BENEFICIOS */
#beneficios {
    background: var(--wh)
}

.benc {
    display: flex;
    gap: 1.3rem;
    align-items: flex-start;
    padding: 1.5rem 1.4rem;
    background: var(--off);
    border-radius: var(--r);
    border: 1.5px solid transparent;
    transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr), background var(--tr)
}

.benc:hover {
    border-color: rgba(202, 164, 108, .35);
    box-shadow: var(--s2);
    transform: translateY(-3px);
    background: #fff
}

.benic {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--pri), var(--pri-lt));
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0
}

.benc h5 {
    font-family: var(--fh);
    font-size: 1.04rem;
    font-weight: 700;
    color: var(--pri);
    margin-bottom: .3rem
}

.benc p {
    font-size: .87rem;
    color: var(--tm);
    margin: 0;
    line-height: 1.6
}

.scibox {
    background: var(--pri);
    border-radius: var(--rl);
    padding: 2.6rem;
    color: #fff
}

.scibox h3 {
    font-family: var(--fh);
    font-size: 1.55rem;
    color: #fff;
    margin-bottom: .5rem
}

.scilead {
    font-size: .88rem;
    color: rgba(255, 255, 255, .68);
    margin-bottom: 1.8rem
}

.scirow {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, .12)
}

.scirow:first-of-type {
    border-top: none;
    padding-top: 0
}

.scipct {
    font-family: var(--fh);
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--acc);
    line-height: 1;
    flex-shrink: 0;
    width: 72px
}

.scirow p {
    font-size: .83rem;
    color: rgba(255, 255, 255, .73);
    margin: 0;
    line-height: 1.6;
    padding-top: .2rem
}

/* TESTIMONIOS */
#testimonios {
    background: var(--off)
}

.tcard {
    background: #fff;
    border-radius: var(--rl);
    padding: 2rem 1.8rem;
    box-shadow: var(--s1);
    height: 100%;
    position: relative;
    border-top: 3px solid transparent;
    transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr)
}

.tcard:hover {
    border-top-color: var(--acc);
    box-shadow: var(--s2);
    transform: translateY(-4px)
}

.tstars {
    color: var(--acc);
    font-size: .9rem;
    margin-bottom: 1rem;
    letter-spacing: .1em
}

.ttxt {
    font-family: var(--fh);
    font-style: italic;
    font-size: 1rem;
    color: var(--td);
    line-height: 1.65;
    margin-bottom: 1.4rem
}

.tauth {
    display: flex;
    align-items: center;
    gap: .8rem
}

.tav {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--pri), var(--pri-lt));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0
}

.tauth strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--pri)
}

.tauth span {
    font-size: .78rem;
    color: var(--tl)
}

.qmark {
    position: absolute;
    top: 1rem;
    right: 1.4rem;
    font-family: var(--fh);
    font-size: 5rem;
    line-height: .8;
    color: rgba(202, 164, 108, .12);
    pointer-events: none;
    user-select: none
}

/* FAQ */
#faq {
    background: var(--wh)
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e8e4de;
    background: transparent
}

.accordion-item:last-child {
    border-bottom: none
}

.accordion-button {
    font-family: var(--fb);
    font-weight: 600;
    font-size: .97rem;
    color: var(--pri);
    background: transparent;
    padding: 1.25rem 0;
    box-shadow: none;
    line-height: 1.4
}

.accordion-button:not(.collapsed) {
    color: var(--acc);
    background: transparent;
    box-shadow: none
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23174e75'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23CAA46C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.accordion-body {
    font-size: .92rem;
    color: var(--tm);
    padding: 0 0 1.3rem;
    line-height: 1.75
}

.faqside {
    background: var(--pri);
    border-radius: var(--rl);
    padding: 2.2rem;
    color: #fff;
    position: sticky;
    top: 90px
}

.faqside h4 {
    font-family: var(--fh);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: .8rem
}

.faqside p {
    font-size: .86rem;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 1.5rem;
    line-height: 1.65
}

.fqci {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: .84rem;
    color: rgba(255, 255, 255, .82)
}

.fqci:last-child {
    border-bottom: none
}

.fqci i {
    font-size: 1.1rem;
    color: var(--acc);
    width: 20px;
    flex-shrink: 0
}

.fqci a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none
}

.fqci a:hover {
    color: var(--acc)
}

/* CONTACTO */
#contacto {
    background: var(--off)
}

.ccard {
    background: #fff;
    border-radius: var(--rl);
    padding: 2.8rem;
    box-shadow: var(--s2)
}

.form-label {
    font-weight: 600;
    font-size: .83rem;
    color: var(--pri);
    margin-bottom: .35rem
}

.form-control,
.form-select {
    border: 1.5px solid #ddd9d2;
    border-radius: var(--r);
    padding: .72rem 1rem;
    font-family: var(--fb);
    font-size: .92rem;
    color: var(--td);
    background: #fafaf9;
    transition: border-color var(--tr), box-shadow var(--tr)
}

.form-control:focus,
.form-select:focus {
    border-color: var(--pri);
    box-shadow: 0 0 0 3px rgba(23, 78, 117, .1);
    background: #fff;
    outline: none
}

.form-control::placeholder {
    color: #bbb
}

textarea.form-control {
    resize: vertical;
    min-height: 130px
}

.cirow {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.4rem
}

.ciic {
    width: 44px;
    height: 44px;
    background: rgba(23, 78, 117, .09);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pri);
    font-size: 1.1rem;
    flex-shrink: 0
}

.citx strong {
    display: block;
    font-size: .83rem;
    font-weight: 700;
    color: var(--pri);
    margin-bottom: .1rem
}

.citx span,
.citx a {
    font-size: .87rem;
    color: var(--tm);
    text-decoration: none
}

.citx a:hover {
    color: var(--acc)
}

.dbox {
    background: var(--pri);
    border-radius: var(--rl);
    padding: 2rem 1.8rem;
    margin-top: 2rem
}

.dbox h5 {
    font-family: var(--fh);
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: .4rem
}

.dbox p {
    font-size: .84rem;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 1.2rem
}

.mph {
    width: 100%;
    height: 190px;
    background: rgba(23, 78, 117, .05);
    border: 1.5px dashed #ccc8c0;
    border-radius: var(--r);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: .78rem;
    text-align: center;
    margin-top: 1.2rem;
    padding: 1rem
}

.mph i {
    font-size: 2rem;
    color: rgba(23, 78, 117, .25);
    margin-bottom: .5rem
}

.fsok {
    display: none;
    background: #d4f5e2;
    border: 1px solid #72d9a3;
    color: #1a6640;
    border-radius: var(--r);
    padding: 1rem 1.4rem;
    font-size: .92rem;
    margin-top: 1rem;
    align-items: center;
    gap: .6rem
}

.fserr {
    display: none;
    background: #fde8e8;
    border: 1px solid #f9a8a8;
    color: #9b2222;
    border-radius: var(--r);
    padding: 1rem 1.4rem;
    font-size: .92rem;
    margin-top: 1rem;
    align-items: center;
    gap: .6rem
}

.chc {
    font-size: .75rem;
    color: var(--tl);
    text-align: right;
    margin-top: .25rem
}

/* FOOTER */
.faccbar {
    height: 3px;
    background: linear-gradient(90deg, var(--acc-dk), var(--acc), var(--acc-lt))
}

footer {
    background: var(--pri-dk);
    color: rgba(255, 255, 255, .72);
    padding: 72px 0 0
}

.flogo {
    height: 38px;
    margin-bottom: 1.1rem
}

.ftag {
    font-size: .86rem;
    color: rgba(255, 255, 255, .52);
    max-width: 255px;
    line-height: 1.7;
    margin-bottom: 1.4rem
}

.fsoc a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .68);
    border-radius: 50%;
    font-size: .95rem;
    margin-right: .45rem;
    transition: background var(--tr), color var(--tr);
    text-decoration: none
}

.fsoc a:hover {
    background: var(--acc);
    color: #fff
}

footer h6 {
    font-family: var(--fb);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--acc);
    margin-bottom: 1.15rem
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0
}

footer ul li {
    margin-bottom: .5rem
}

footer a {
    color: rgba(255, 255, 255, .62);
    text-decoration: none;
    font-size: .86rem;
    transition: color var(--tr)
}

footer a:hover {
    color: var(--acc)
}

footer li span {
    font-size: .86rem;
    color: rgba(255, 255, 255, .5)
}

.fbot {
    padding: 1.1rem 0;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.fbot p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .38);
    margin: 0
}

/* FLOATING BUTTONS */
#btt {
    position: fixed;
    bottom: 88px;
    right: 24px;
    z-index: 900;
    width: 44px;
    height: 44px;
    background: var(--pri);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--s2);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--tr), transform var(--tr);
    cursor: pointer
}

#btt.vis {
    opacity: 1;
    pointer-events: auto
}

#btt:hover {
    transform: translateY(-3px)
}

.waf {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 52px;
    height: 52px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 1.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
    text-decoration: none;
    transition: transform var(--tr), box-shadow var(--tr)
}

.waf:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .5);
    color: #fff
}

.waf::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .35);
    animation: wap 2.2s ease-out infinite
}

@keyframes wap {
    0% {
        transform: scale(.9);
        opacity: .7
    }

    70%,
    100% {
        transform: scale(1.2);
        opacity: 0
    }
}

/* RESPONSIVE */
@media(max-width:991.98px) {
    section {
        padding: 72px 0
    }

    .ecard {
        height: 330px
    }

    .ccard {
        padding: 1.8rem 1.4rem
    }

    .scibox {
        margin-top: 2rem
    }

    .fcl {
        left: 0
    }

    .fcr {
        right: 0
    }
}

@media(max-width:767.98px) {
    #hero {
        padding: 110px 0 70px
    }

    #hero h1 {
        font-size: 2.5rem
    }

    .hstats {
        border-radius: var(--r)
    }

    .hsi {
        min-width: 0;
        flex: 1 1 40%
    }

    .faqside {
        display: none
    }

    .fsep {
        display: none
    }
}