:root {
    --primary: #001773;
    --lightblue: #A0F1F1;
    --secondary: #334155;
    --accent: #b08b57;
    --accent-dark: #8f6c3f;
    --light: #f8fafc;
    --muted: #64748b;
    --border: rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}



html, body {
    font-family: 'Inter', sans-serif;
}

/* SPLASH */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.splash-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: splashLogoZoomOut 2s ease-in-out forwards;
}

@keyframes splashLogoZoomOut {
    0% { opacity: 0; transform: scale(2); }
    20% { opacity: 1; transform: scale(1.4); }
    100% { opacity: 1; transform: scale(1); }
}

/* LAYOUT HÍBRIDO */
.fp-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.fp-section {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100vh;
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
    will-change: transform, opacity;
}

.fp-section.fp-active {
    display: flex;
    z-index: 2;
    transform: translateY(0);
    opacity: 1;
}

.normal-flow {
    position: relative;
    width: 100%;
    z-index: 1;
}

.normal-section {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
}
/* HERO */
.hero{
    position: relative;
    overflow: hidden;
    background: #001773;
    height: 100vh;
    min-height: 100vh;
}

#carouselHero{
    position: relative;
    height: 100%;
}

.hero-slide{
    position: relative;
    min-height: 100vh;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 8, 40, 0.38) 0%,
        rgba(0, 23, 115, 0.22) 28%,
        rgba(68, 92, 206, 0.70) 60%,
        rgba(88, 108, 220, 0.94) 100%
    );
}

.hero-overlay::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 34%;
    background: linear-gradient(to top, rgba(255,255,255,0.72), rgba(255,255,255,0));
    pointer-events: none;
}

.hero-content{
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-copy{
    color: #fff;
    max-width: 520px;
    margin-top: -10px;
}

.hero-title{
    font-size: 4rem;
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-text{
    max-width: 470px;
    font-size: 1.15rem;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255,255,255,0.92);
    margin-bottom: 2rem;
}

.hero-btn{
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-height: 62px;
    padding: 8px 8px 8px 24px;
    border-radius: 999px;
    background: rgba(175, 199, 239, 0.28);
    color: #ffffff;
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all .3s ease;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .2px;
}

.hero-btn:hover{
    color: #fff;
    background: rgba(175, 199, 239, 0.38);
    transform: translateY(-1px);
}

.hero-btn-icon{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #dfe7ef;
    color: #16308c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* HERO INDICATORS */
.hero-indicators-wrap{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    z-index: 5;
}

.hero-indicators{
    --dot-size: 18px;
    --dot-gap: 10px;
    --active-index: 0;
    position: relative;
    display: flex !important;
    width: max-content;
    margin: 0 !important;
    padding: 0 !important;
    justify-content: flex-start !important;
    align-items: center;
    gap: var(--dot-gap);
    list-style: none;
}

.hero-indicators [data-bs-target]{
    width: var(--dot-size) !important;
    height: var(--dot-size) !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 50%;
    background: #001773;
    opacity: 1 !important;
    position: relative;
    z-index: 2;
    text-indent: 0;
    flex: 0 0 var(--dot-size);
    box-sizing: border-box;
    transition: background-color .3s ease, transform .3s ease;
}

.hero-indicators [data-bs-target].active{
    background: transparent;
    transform: scale(1);
}

.hero-indicators::before{
    content: "";
    position: absolute;
    top: 50%;
    left: calc(var(--active-index) * (var(--dot-size) + var(--dot-gap)));
    width: var(--dot-size);
    height: var(--dot-size);
    border-radius: 50%;
    background: #18e7f0;
    transform: translateY(-50%);
    transition: left .45s cubic-bezier(.22, 1, .36, 1);
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(24, 231, 240, 0.10);
}

.hero-indicators::after{
    content: "";
    position: absolute;
    top: 50%;
    left: calc(var(--active-index) * (var(--dot-size) + var(--dot-gap)));
    width: var(--dot-size);
    height: var(--dot-size);
    border-radius: 50%;
    border: 1px solid rgba(24, 231, 240, 0.35);
    transform: translateY(-50%);
    transition: left .45s cubic-bezier(.22, 1, .36, 1);
    z-index: 0;
    animation: dotPulse 1.6s ease-out infinite;
}

.hero-indicators.is-bouncing::before,
.hero-indicators.is-bouncing::after{
    animation: dotBounce .5s cubic-bezier(.33, 1, .68, 1);
}

@keyframes dotBounce{
    0% { margin-top: 0; }
    30% { margin-top: -24px; }
    55% { margin-top: 3px; }
    75% { margin-top: -6px; }
    100% { margin-top: 0; }
}

@keyframes dotPulse{
    0%{
        opacity: .8;
        box-shadow: 0 0 0 0 rgba(24, 231, 240, 0.20);
    }
    100%{
        opacity: 0;
        box-shadow: 0 0 0 10px rgba(24, 231, 240, 0);
    }
}

.carousel-item .hero-title,
.carousel-item .hero-text,
.carousel-item .hero-btn{
    opacity: 0;
    transform: translateY(28px);
}

.carousel-item.active .hero-title{
    animation: heroFadeUp .7s ease forwards;
}

.carousel-item.active .hero-text{
    animation: heroFadeUp .7s ease .15s forwards;
}

.carousel-item.active .hero-btn{
    animation: heroFadeUp .7s ease .3s forwards;
}

@keyframes heroFadeUp{
    from{ opacity: 0; transform: translateY(28px); }
    to{ opacity: 1; transform: translateY(0); }
}

/* SERVICES */
.services-section{
    position: relative;
    padding: 90px 0 110px;
    background: #f3f3f7;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-title{
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    color: #001773;
    margin-bottom: 60px;
}

.services-decor{
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1.5px solid #2340a5;
    border-radius: 50%;
    opacity: .8;
    pointer-events: none;
}

.services-decor-left{
    top: -300px;
    left: -180px;
}

.services-decor-right{
    top: -300px;
    right: -180px;
}

.services-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card{
    background: #ffffff;
    border-radius: 10px;
    padding: 38px 36px 28px;
    min-height: 315px;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0, 23, 115, 0.08);
}

.service-icon{
    margin-bottom: 20px;
    height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-icon img{
    max-height: 42px;
    width: auto;
    display: block;
}

.service-card-title{
    font-size: 1.5rem;
    line-height: 1.05;
    font-weight: 500;
    color: #0a2488;
    margin-bottom: 0;
}

.service-card-text{
    font-size: 1.02rem;
    line-height: 1.55;
    color: #3d3d3d;
    margin-bottom: 22px;
    max-width: 250px;
    margin-top: 28px;
}

.service-btn{
    margin-top: auto;
    width: 175px;
    min-height: 40px;
    padding: 5px 6px 5px 14px;
    border-radius: 999px;
    background: #dff3f2;
    color: #0a2488;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: .95rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: background 1s ease, color 1s ease;
}

.service-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 36, 136, 0.10);
    opacity: 0;
    transition: opacity .5s ease;
    z-index: 0;
}

.service-btn > span:first-child{
    position: relative;
    z-index: 2;
    transition: transform 1s ease, color 1s ease;
}

.service-btn-icon{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(10, 36, 136, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: background 1s ease, transform 1s ease;
}

.service-btn-icon::before{
    content: "";
    width: 14px;
    height: 14px;
    background-image: url('/img/icon/vector.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    transition: transform 1s ease, background-image 1s ease;
}

.service-btn:hover::before{
    opacity: 1;
}

.service-btn:hover{
    color: #0a2488;
}

.service-btn:hover > span:first-child{
    transform: translateX(12px);
}

.service-btn:hover .service-btn-icon{
    background: #0a2488;
    transform: scale(1.06);
}

.service-btn:hover .service-btn-icon::before{
    transform: rotate(-45deg);
    background-image: url('/img/icon/vector-white.png');
}

/* TEAM */
.team-highlight{
    position: relative;
    background: #f3f3f7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.team-highlight .container{
    position: relative;
    z-index: 2;
    max-width: 1280px;
}

.team-highlight-box{
    position: relative;
    width: 100%;
    min-height: 760px;
    z-index: 2;
}

.team-stage{
    position: relative;
    min-height: 760px;
}

.team-decor{
    position: absolute;
    border: 1px solid #2340a5;
    border-radius: 50%;
    pointer-events: none;
}

.team-decor-left{
    width: 780px;
    height: 780px;
    left: -430px;
    bottom: 60px;
}

.team-decor-top{
    width: 760px;
    height: 760px;
    top: -510px;
    left: 280px;
}

.team-image-wrap{
    position: absolute;
    left: 110px;
    top: 235px;
    width: 310px;
    border-radius: 14px;
    overflow: visible;
    z-index: 2;
}

.team-image{
    width: 100%;
    display: block;
    border-radius: 14px;
    transform: translate3d(0, 0, 0) scale(1);
    transform-origin: center center;
    transition: transform 1.05s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}

.team-copy{
    position: absolute;
    right: 125px;
    top: 155px;
    width: 430px;
    min-height: 350px;
    z-index: 4;
    overflow: hidden;
}

.team-text-layer{
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(65px);
    transition: transform .9s cubic-bezier(.22, 1, .36, 1), opacity .55s ease;
    pointer-events: none;
}

.team-text-layer.active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.team-highlight-box.is-active .team-text-layer-1{
    opacity: 0;
    transform: translateY(-75px);
}

.team-highlight-box.is-active .team-text-layer-2{
    opacity: 1;
    transform: translateY(0);
    transition-delay: .12s;
}

.team-text{
    margin: 0;
    font-size: 2.05rem;
    line-height: 1.45;
    font-weight: 400;
    color: #001773;
}

.team-action{
    position: absolute;
    right: 268px;
    top: 505px;
    z-index: 5;
    transform: translate3d(0, 0, 0);
    transition: transform 1.05s cubic-bezier(.22, 1, .36, 1),
                right 1.05s cubic-bezier(.22, 1, .36, 1),
                top 1.05s cubic-bezier(.22, 1, .36, 1);
}

.team-btn{
    width: 230px;
    min-height: 56px;
    padding: 7px 8px 7px 22px;
    border-radius: 999px;
    background: #dff3f2;
    color: #001773;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: background .9s ease, color .9s ease;
}

.team-btn::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 36, 136, 0.10);
    opacity: 0;
    transition: opacity .9s ease;
}

.team-btn-text{
    position: relative;
    z-index: 2;
    transition: transform .9s cubic-bezier(.22, 1, .36, 1);
    font-size: 1rem;
}

.team-btn-icon{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(10, 36, 136, 0.18);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: background .9s ease, transform .9s cubic-bezier(.22, 1, .36, 1);
}

.team-btn-icon::before{
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background-image: url('/img/icon/vector.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform .9s cubic-bezier(.22, 1, .36, 1), background-image .3s ease;
}

.team-highlight-box.is-active .team-image{
    transform: translate3d(125px, 6px, 0) scale(1.82);
}

.team-highlight-box.is-active .team-action{
    right: 50%;
    top: 625px;
    transform: translate3d(50%, 0, 0);
}

.team-highlight-box.is-active .team-btn::after{
    opacity: 1;
}

.team-highlight-box.is-active .team-btn-text{
    transform: translateX(14px);
}

.team-highlight-box.is-active .team-btn-icon{
    background: #001773;
    transform: scale(1.06);
}

.team-highlight-box.is-active .team-btn-icon::before{
    transform: rotate(-45deg);
    background-image: url('/img/icon/vector-white.png');
}

/* BLOG */
.blog-showcase{
    position: relative;
    min-height: 100vh;
    background: #f3f3f7;
    overflow: hidden;
    padding: 120px 0 60px;
    display: flex;
    align-items: stretch;
}

.blog-container{
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-decor{
    position: absolute;
    border: 1px solid #2340a5;
    border-radius: 50%;
    pointer-events: none;
    opacity: .9;
}

.blog-decor-left{
    width: 780px;
    height: 780px;
    left: -460px;
    top: 120px;
}

.blog-decor-top{
    width: 720px;
    height: 720px;
    top: -540px;
    left: 180px;
}

.blog-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 70px;
}

.blog-header-copy{
    max-width: 430px;
}

.blog-title{
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 600;
    color: #001773;
    margin: 0 0 8px;
}

.blog-subtitle{
    margin: 0;
    font-size: 1.25rem;
    color: #001773;
    opacity: .9;
}

.blog-search-wrap{
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.blog-search{
    width: 100%;
    max-width: 520px;
    position: relative;
}

.blog-search-input{
    width: 100%;
    height: 64px;
    border: 1px solid rgba(0, 23, 115, 0.18);
    border-radius: 999px;
    background: transparent;
    padding: 0 80px 0 24px;
    font-size: 1.3rem;
    color: #001773;
    outline: none;
}

.blog-search-input::placeholder{
    color: rgba(0, 23, 115, 0.28);
}

.blog-search-btn{
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: #001773;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.blog-columns{
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 64px;
    height: 560px;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 14%, rgba(0,0,0,1) 86%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 14%, rgba(0,0,0,1) 86%, transparent 100%);
}

.blog-column{
    position: relative;
    height: 100%;
    overflow: hidden;
}

.blog-track{
    display: flex;
    flex-direction: column;
    gap: 34px;
    will-change: transform;
    animation: blogScrollUp 16s linear infinite;
}

.blog-column-offset .blog-track{
    animation-duration: 18s;
    animation-delay: -4s;
}

.blog-column:nth-child(3) .blog-track{
    animation-duration: 20s;
    animation-delay: -7s;
}

.blog-columns.is-paused .blog-track{
    animation-play-state: paused;
}

.blog-card{
    background: rgba(255,255,255,0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
    position: relative;
}

.blog-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 23, 115, 0.10);
}

.blog-card-image-wrap{
    width: 100%;
    height: 170px;
    overflow: hidden;
    background: #e9edf3;
}

.blog-card-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-body{
    padding: 16px 16px 14px;
}

.blog-card-text{
    margin: 0 0 14px;
    font-size: .9rem;
    line-height: 1.6;
    color: #001773;
}

.blog-card-btn{
    width: 128px;
    min-height: 34px;
    padding: 4px 5px 4px 14px;
    border-radius: 999px;
    background: #dff3f2;
    color: #001773;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    overflow: hidden;
    font-size: .92rem;
}

.blog-card-btn-icon{
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(10, 36, 136, 0.14);
    flex-shrink: 0;
    position: relative;
}

.blog-card-btn-icon::before{
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 13px;
    height: 13px;
    background-image: url('/img/icon/vector.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.blog-card-btn:hover .blog-card-btn-icon{
    background: #001773;
}

.blog-card-btn:hover .blog-card-btn-icon::before{
    transform: rotate(-45deg);
    background-image: url('/img/icon/vector-white.png');
}

@keyframes blogScrollUp{
    0%{ transform: translateY(0); }
    100%{ transform: translateY(calc(-50% - 17px)); }
}

/* FULLPAGE FX */
.fp-section.fp-leaving-up {
    display: flex;
    z-index: 3;
    animation: fpSlideOutUp 0.9s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.fp-section.fp-leaving-down {
    display: flex;
    z-index: 3;
    animation: fpSlideOutDown 0.9s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.fp-section.fp-entering-down {
    display: flex;
    z-index: 2;
    animation: fpSlideInUp 0.9s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.fp-section.fp-entering-up {
    display: flex;
    z-index: 2;
    animation: fpSlideInDown 0.9s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.fp-section.fp-entering-down .services-title,
.fp-section.fp-entering-down .services-grid,
.fp-section.fp-entering-down .team-highlight-box,
.fp-section.fp-entering-down .hero-copy {
    animation: fpContentFadeUp 0.7s ease 0.3s both;
}

.fp-section.fp-entering-up .services-title,
.fp-section.fp-entering-up .services-grid,
.fp-section.fp-entering-up .team-highlight-box,
.fp-section.fp-entering-up .hero-copy {
    animation: fpContentFadeDown 0.7s ease 0.3s both;
}

@keyframes fpSlideOutUp {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-100%); opacity: 0.3; }
}

@keyframes fpSlideOutDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(100%); opacity: 0.3; }
}

@keyframes fpSlideInUp {
    0% { transform: translateY(100%); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fpSlideInDown {
    0% { transform: translateY(-100%); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fpContentFadeUp {
    0% { opacity: 0; transform: translateY(60px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fpContentFadeDown {
    0% { opacity: 0; transform: translateY(-60px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* FULLPAGE NAV */
.fp-nav{
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: opacity .35s ease;
}

.fp-nav.fp-hidden{
    opacity: 0;
    pointer-events: none;
}

.fp-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.4s ease;
    position: relative;
}

.fp-nav-dot::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #18e7f0;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fp-nav-dot.active {
    border-color: #18e7f0;
    box-shadow: 0 0 8px rgba(24, 231, 240, 0.35);
}

.fp-nav-dot.active::after {
    transform: scale(1);
}

.fp-nav-dot:hover {
    border-color: #fff;
}

.fp-scroll-hint {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    color: rgba(255, 255, 255, 0.7);
    animation: fpBounceHint 2s ease-in-out infinite;
    transition: opacity 0.5s ease;
}

.fp-scroll-hint.fp-hint-hidden {
    opacity: 0;
    pointer-events: none;
}

.fp-scroll-hint-icon {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    background: rgba(0, 23, 115, 0.3);
}

@keyframes fpBounceHint {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* RESPONSIVE */
@media (max-width: 1399.98px){
    .team-image-wrap{ left: 70px; }
    .team-copy{ right: 90px; width: 390px; }
    .team-action{ right: 210px; }
    .team-highlight-box.is-active .team-image{
        transform: translate3d(95px, 6px, 0) scale(1.68);
    }
}

@media (max-width: 1199.98px){
    .services-grid{ grid-template-columns: repeat(2, 1fr); }

    .team-highlight-box,
    .team-stage{ min-height: 700px; }

    .team-image-wrap{
        left: 35px;
        top: 235px;
        width: 280px;
    }

    .team-copy{
        right: 35px;
        top: 170px;
        width: 320px;
    }

    .team-text{ font-size: 1.8rem; }

    .team-action{
        right: 125px;
        top: 495px;
    }

    .team-highlight-box.is-active .team-image{
        transform: translate3d(70px, 0, 0) scale(1.5);
    }

    .team-highlight-box.is-active .team-action{
        top: 585px;
    }

    .blog-header{
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-search-wrap{
        width: 100%;
        justify-content: flex-start;
    }

    .blog-columns{ gap: 28px; }
    .blog-title{ font-size: 2.5rem; }
}

@media (max-width: 991.98px){
    .nav-container{
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-brand-wrap{ min-width: auto; }
    .logo{ height: 46px; }
    .logo-text{ display: none; }

    .nav-menu-wrap{ width: 100%; }

    .custom-navbar .navbar-collapse{
        background: var(--primary);
        margin-top: 12px;
        padding: 12px 0 6px;
    }

    .nav-menu{
        gap: 12px;
        align-items: flex-start;
    }

    .custom-navbar .nav-link{
        padding: 8px 0;
    }

    .hero-title{
        font-size: 2.5rem;
        line-height: 1.02;
        letter-spacing: -1px;
        margin-bottom: 1rem;
    }

    .hero-text{
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.4rem;
    }

    .hero-btn{
        min-height: 56px;
        padding: 8px 8px 8px 18px;
        font-size: .95rem;
    }

    .hero-btn-icon{
        width: 40px;
        height: 40px;
    }

    .services-section{
        padding: 70px 0 80px;
    }

    .services-title{
        font-size: 2.2rem;
        margin-bottom: 35px;
    }

    .team-highlight{
        padding: 90px 0 60px;
        min-height: auto;
        overflow-y: auto;
    }

    .team-highlight-box,
    .team-stage{
        min-height: auto;
    }

    .team-stage{
        display: flex;
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }

    .team-image-wrap,
    .team-copy,
    .team-action{
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        max-width: 560px;
        transform: none !important;
    }

    .team-image-wrap{ overflow: hidden; }
    .team-copy{ min-height: 180px; }
    .team-text{ font-size: 1.55rem; line-height: 1.35; }

    .team-action{
        display: flex;
        justify-content: flex-start;
    }

    .team-highlight-box.is-active .team-image{
        transform: scale(1.08) !important;
    }

    .footer-box{
        padding: 40px 25px;
        border-radius: 30px;
    }

    .footer-bottom{
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-copy{ max-width: 100%; }

    .fp-nav{
        right: 12px;
        gap: 10px;
    }

    .fp-nav-dot{
        width: 10px;
        height: 10px;
    }

    .blog-showcase{
        padding: 110px 0 50px;
    }

    .blog-columns{
        grid-template-columns: 1fr 1fr;
        height: 540px;
    }

    .blog-column:nth-child(3){
        display: none;
    }
}

@media (max-width: 767.98px){
    .services-grid{ grid-template-columns: 1fr; }

    .service-card{
        min-height: auto;
        padding: 28px 24px 24px;
    }

    .service-card-title{ font-size: 1.55rem; }

    .service-card-text{
        max-width: 100%;
        font-size: .96rem;
    }

    .blog-title{ font-size: 2rem; }
    .blog-subtitle{ font-size: 1rem; }

    .blog-search-input{
        height: 56px;
        font-size: 1rem;
        padding-right: 72px;
    }

    .blog-search-btn{
        width: 46px;
        height: 46px;
    }

    .blog-columns{
        grid-template-columns: 1fr;
        height: 500px;
    }

    .blog-column:nth-child(2),
    .blog-column:nth-child(3){
        display: none;
    }

    .global-whatsapp{
        right: 16px;
        bottom: 20px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 575.98px){
    .hero-title{ font-size: 2rem; }
    .hero-text{ font-size: .95rem; line-height: 1.45; }

    .team-highlight{ padding: 80px 0 50px; }
    .team-copy{ min-height: 150px; }
    .team-text{ font-size: 1.28rem; line-height: 1.32; }

    .team-btn{
        width: 220px;
        min-height: 50px;
        padding-left: 18px;
    }

    .team-btn-icon{
        width: 38px;
        height: 38px;
    }

    .fp-scroll-hint { bottom: 20px; }
    .fp-scroll-hint-icon { width: 36px; height: 36px; }
}


/* SECTION NUESTRO BLOG */
.nuestro-blog-section{
    position: relative;
    min-height: 420px;
    background: #f3f3f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0 70px;
}

.nuestro-blog-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nuestro-blog-btn{
    width: 270px;
    min-height: 56px;
    padding: 7px 8px 7px 22px;
    border-radius: 999px;
    background: #dff3f2;
    color: #001773;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: background .35s ease, transform .25s ease;
}

.nuestro-blog-btn::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 36, 136, 0.08);
    opacity: 0;
    transition: opacity .35s ease;
}

.nuestro-blog-btn:hover{
    color: #001773;
    transform: translateY(-1px);
}

.nuestro-blog-btn:hover::after{
    opacity: 1;
}

.nuestro-blog-btn-text{
    position: relative;
    z-index: 2;
    font-size: 1rem;
    font-weight: 500;
    transition: transform .35s ease;
}

.nuestro-blog-btn-icon{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 36, 136, 0.14);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: background .35s ease, transform .35s ease;
}

.nuestro-blog-btn-icon::before{
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background-image: url('/img/icon/vector.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform .35s ease, background-image .35s ease;
}

.nuestro-blog-btn:hover .nuestro-blog-btn-text{
    transform: translateX(10px);
}

.nuestro-blog-btn:hover .nuestro-blog-btn-icon{
    background: #001773;
    transform: scale(1.04);
}

.nuestro-blog-btn:hover .nuestro-blog-btn-icon::before{
    transform: rotate(-45deg);
    background-image: url('/img/icon/vector-white.png');
}

@media (max-width: 575.98px){
    .nuestro-blog-section{
        min-height: 300px;
        padding: 30px 0 50px;
    }

    .nuestro-blog-btn{
        width: 220px;
        min-height: 50px;
        padding-left: 18px;
    }

    .nuestro-blog-btn-icon{
        width: 38px;
        height: 38px;
    }
}
/* CTA BANNER SECTION */
.cta-banner-section{
    position: relative;
    background: #f3f3f7;
    padding: 0 0 18px;
}

.cta-banner-bg{
    position: relative;
    min-height: 415px;
    overflow: hidden;
    background: #000;
}

/* Video de fondo */
.cta-banner-video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
    pointer-events: none;
}

/* Degradé oscuro sobre el video */
.cta-banner-overlay{
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        160deg,
        rgba(0, 5, 40, 0.82) 0%,
        rgba(0, 23, 115, 0.70) 50%,
        rgba(0, 5, 40, 0.88) 100%
    );
}

.cta-banner-container{
    position: relative;
    z-index: 2;
    min-height: 415px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-banner-content{
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.cta-banner-title{
    margin: 0 0 22px;
    font-size: 3.15rem;
    line-height: 1.25;
    font-weight: 300;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -.5px;
}

.cta-banner-btn{
    width: 210px;
    min-height: 56px;
    padding: 7px 8px 7px 20px;
    border-radius: 999px;
    background: #f5f3eb;
    color: #001773;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: background .35s ease, transform .25s ease;
}

.cta-banner-btn::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 36, 136, 0.08);
    opacity: 0;
    transition: opacity .35s ease;
}

.cta-banner-btn:hover{
    color: #001773;
    transform: translateY(-1px);
}

.cta-banner-btn:hover::after{
    opacity: 1;
}

.cta-banner-btn-text{
    position: relative;
    z-index: 2;
    font-size: 1rem;
    font-weight: 500;
    transition: transform .35s ease;
}

.cta-banner-btn-icon{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(10, 36, 136, 0.14);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: background .35s ease, transform .35s ease;
}

.cta-banner-btn-icon::before{
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background-image: url('/img/icon/vector.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform .35s ease, background-image .35s ease;
}

.cta-banner-btn:hover .cta-banner-btn-text{
    transform: translateX(10px);
}

.cta-banner-btn:hover .cta-banner-btn-icon{
    background: #001773;
    transform: scale(1.04);
}

.cta-banner-btn:hover .cta-banner-btn-icon::before{
    transform: rotate(-45deg);
    background-image: url('/img/icon/vector-white.png');
}

@media (max-width: 991.98px){
    .cta-banner-bg,
    .cta-banner-container{
        min-height: 360px;
    }

    .cta-banner-title{
        font-size: 2.35rem;
        line-height: 1.25;
    }
}

@media (max-width: 575.98px){
    .cta-banner-bg,
    .cta-banner-container{
        min-height: 300px;
    }

    .cta-banner-title{
        font-size: 1.55rem;
        line-height: 1.3;
    }

    .cta-banner-btn{
        width: 200px;
        min-height: 50px;
        padding-left: 18px;
    }

    .cta-banner-btn-icon{
        width: 38px;
        height: 38px;
    }
}


/* REMATES */
/* AUCTION SHOWCASE */
.auction-showcase{
    position: relative;
    background: #f3f3f7;
    min-height: 100vh;
    padding: 110px 0 70px;
    overflow: hidden;
}

.auction-container{
    position: relative;
    z-index: 2;
}

.auction-layout{
    display: grid;
    grid-template-columns: minmax(320px, 420px) minmax(320px, 360px);
    justify-content: center;
    gap: 90px;
    align-items: start;
}

.auction-copy{
    padding-top: 34px;
}

.auction-title{
    margin: 0 0 20px;
    font-size: 2.45rem;
    line-height: 1.18;
    font-weight: 500;
    color: #001773;
    text-transform: uppercase;
}

.auction-text{
    margin: 0 0 30px;
    max-width: 340px;
    font-size: 1.12rem;
    line-height: 1.5;
    color: #001773;
}

.auction-main-btn{
    width: 275px;
    min-height: 56px;
    padding: 7px 8px 7px 20px;
    border-radius: 999px;
    background: #dff3f2;
    color: #001773;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: background .35s ease, transform .25s ease;
}

.auction-main-btn::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 36, 136, 0.08);
    opacity: 0;
    transition: opacity .35s ease;
}

.auction-main-btn:hover{
    color: #001773;
    transform: translateY(-1px);
}

.auction-main-btn:hover::after{
    opacity: 1;
}

.auction-main-btn > span:first-child{
    position: relative;
    z-index: 2;
    font-size: 1rem;
    font-weight: 500;
    transition: transform .35s ease;
}

.auction-main-btn-icon{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 36, 136, 0.14);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: background .35s ease, transform .35s ease;
}

.auction-main-btn-icon::before{
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background-image: url('/img/icon/vector.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform .35s ease, background-image .35s ease;
}

.auction-main-btn:hover > span:first-child{
    transform: translateX(10px);
}

.auction-main-btn:hover .auction-main-btn-icon{
    background: #001773;
    transform: scale(1.04);
}

.auction-main-btn:hover .auction-main-btn-icon::before{
    transform: rotate(-45deg);
    background-image: url('/img/icon/vector-white.png');
}

/* COLUMNA / CARRIL */
.auction-cards-wrap{
    position: relative;
    height: 620px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 16%, rgba(0,0,0,1) 84%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 16%, rgba(0,0,0,1) 84%, transparent 100%);
}

.auction-track{
    display: flex;
    flex-direction: column;
    gap: 34px;
    will-change: transform;
    animation: auctionScrollVertical 16s linear infinite;
}

.auction-cards-wrap.is-paused .auction-track{
    animation-play-state: paused;
}

.auction-card{
    background: rgba(255,255,255,0.68);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}

.auction-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 23, 115, 0.10);
}

.auction-card-image-wrap{
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #e9edf3;
}

.auction-card-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.auction-card-body{
    padding: 18px 20px 18px;
}

.auction-card-title{
    margin: 0 0 10px;
    font-size: 1.4rem;
    line-height: 1.2;
    color: #001773;
    font-weight: 500;
}

.auction-card-text{
    margin: 0 0 16px;
    font-size: .95rem;
    line-height: 1.6;
    color: #001773;
    opacity: .95;
}

.auction-card-btn{
    width: 130px;
    min-height: 36px;
    padding: 4px 6px 4px 14px;
    border-radius: 999px;
    background: #dff3f2;
    color: #001773;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    overflow: hidden;
    font-size: .92rem;
}

.auction-card-btn-icon{
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(10, 36, 136, 0.14);
    flex-shrink: 0;
    position: relative;
}

.auction-card-btn-icon::before{
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 13px;
    height: 13px;
    background-image: url('/img/icon/vector.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.auction-card-btn:hover .auction-card-btn-icon{
    background: #001773;
}

.auction-card-btn:hover .auction-card-btn-icon::before{
    transform: rotate(-45deg);
    background-image: url('/img/icon/vector-white.png');
}

@keyframes auctionScrollVertical{
    0%{
        transform: translateY(0);
    }
    100%{
        transform: translateY(calc(-50% - 17px));
    }
}

/* RESPONSIVE: horizontal de derecha a izquierda */
@media (max-width: 991.98px){
    .auction-layout{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .auction-copy{
        padding-top: 0;
        max-width: 540px;
    }

    .auction-title{
        font-size: 2rem;
    }

    .auction-text{
        max-width: 100%;
    }

    .auction-cards-wrap{
        height: auto;
        overflow: hidden;
        mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, transparent 100%);
    }

    .auction-track{
        flex-direction: row;
        align-items: stretch;
        gap: 22px;
        animation: auctionScrollHorizontal 16s linear infinite;
        width: max-content;
    }

    .auction-card{
        width: 320px;
        flex: 0 0 320px;
    }

    @keyframes auctionScrollHorizontal{
        0%{
            transform: translateX(0);
        }
        100%{
            transform: translateX(calc(-50% - 11px));
        }
    }
}

@media (max-width: 575.98px){
    .auction-showcase{
        padding: 90px 0 55px;
    }

    .auction-title{
        font-size: 1.65rem;
        line-height: 1.24;
    }

    .auction-text{
        font-size: 1rem;
    }

    .auction-main-btn{
        width: 230px;
        min-height: 50px;
        padding-left: 18px;
    }

    .auction-main-btn-icon{
        width: 38px;
        height: 38px;
    }

    .auction-card{
        width: 280px;
        flex: 0 0 280px;
    }

    .auction-card-title{
        font-size: 1.1rem;
    }

    .auction-card-text{
        font-size: .88rem;
    }
}


/* =====================================================
   CTA EQUIPO — "Nuestro Equipo te ayudará"
   ===================================================== */
.equipo-cta-section {
    padding: 80px 0;
    background: #f5f7fb;
}

.equipo-cta-box {
    max-width: 720px;
    margin: 0 auto;
    background: #edf0f7;
    border-radius: 24px;
    padding: 64px 40px;
    text-align: center;
}

.equipo-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #001773;
    line-height: 1.3;
    margin: 0 0 12px;
}

.equipo-cta-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    margin: 0 0 32px;
}

.equipo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px 14px 32px;
    border-radius: 999px;
    background: #dff3f2;
    color: #001773;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .25s ease, transform .2s ease, box-shadow .25s ease;
}

.equipo-cta-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 23, 115, 0.10);
    transition: background .25s ease;
}

.equipo-cta-btn:hover {
    background: #c9edec;
    color: #001773;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 23, 115, 0.12);
}

.equipo-cta-btn:hover .equipo-cta-btn-icon {
    background: rgba(0, 23, 115, 0.18);
}

/* Responsive */
@media (max-width: 767px) {
    .equipo-cta-box {
        padding: 48px 24px;
        border-radius: 18px;
    }

    .equipo-cta-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 575px) {
    .equipo-cta-section {
        padding: 48px 0;
    }

    .equipo-cta-title {
        font-size: 1.35rem;
    }

    .equipo-cta-subtitle {
        font-size: .95rem;
    }
}
