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

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
    color: #475569;
    font-weight: 600;
    transition: .3s;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: #2563eb;
    transition: all .3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #2563eb;
}

.feature-mini {
    padding: 16px;
    border-radius: 18px;
    background: white;
    border: 1px solid rgb(226 232 240);
    font-weight: 600;
    color: #334155;
    transition: .3s;
}

.feature-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px rgba(15, 23, 42, .08);
}

.glass {

    background: rgba(255, 255, 255, .55);

    backdrop-filter: blur(30px);

    border: 1px solid rgba(255, 255, 255, .7);

    box-shadow:

        0 20px 80px rgba(15, 23, 42, .08),

        inset 0 1px 0 rgba(255, 255, 255, .9);

    transition: .4s;

}

.glass:hover {

    transform: translateY(-10px);

    box-shadow:

        0 35px 100px rgba(37, 99, 235, .15);

}

.bg-blue-600 {

    position: relative;

    overflow: hidden;

}

.bg-blue-600::before {

    content: "";

    position: absolute;

    left: -100%;

    top: 0;

    width: 80%;

    height: 100%;

    background:

        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .55),
            transparent);

    transition: .8s;

}

.bg-blue-600:hover::before {

    left: 150%;

}

.animate-float {

    animation: floatHero 8s ease-in-out infinite;

    filter:

        drop-shadow(0 30px 80px rgba(37, 99, 235, .18));

}

@keyframes floatHero {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-18px);

    }

}


.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.reveal.show {
    opacity: 1;
    transform: none;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float2 {
    animation: float 8s ease-in-out infinite;
}

.animate-float3 {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}






.hero-bg {

    position: absolute;
    inset: 0;

    overflow: hidden;

    background:

        radial-gradient(circle at top left, #f8fdff 0%, #eefcff 35%, #ffffff 70%),

        linear-gradient(135deg,
            #ffffff,
            #f5fcff,
            #eefcff,
            #ffffff);

}

.hero-grid {

    position: absolute;
    inset: 0;

    background:

        linear-gradient(rgba(37, 99, 235, .04) 1px, transparent 1px),

        linear-gradient(90deg, rgba(37, 99, 235, .04) 1px, transparent 1px);

    background-size: 60px 60px;

    mask-image: radial-gradient(circle, #000 15%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle, #000 15%, transparent 90%);

    animation: gridMove 45s linear infinite;

}

.hero-light {

    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    opacity: .55;

}

.hero-light-1 {

    width: 700px;
    height: 700px;

    left: -250px;
    top: -180px;

    background: #bde9ff;

    animation: blob1 18s ease-in-out infinite;

}

.hero-light-2 {

    width: 600px;
    height: 600px;

    right: -180px;
    top: 80px;

    background: #b7fff2;

    animation: blob2 22s ease-in-out infinite;

}

.hero-light-3 {

    width: 420px;
    height: 420px;

    left: 45%;
    bottom: -180px;

    background: #d9f3ff;

    animation: blob3 20s ease-in-out infinite;

}


@keyframes blob1 {

    0%,
    100% {

        transform: translate(0, 0) scale(1);

    }

    50% {

        transform: translate(80px, 40px) scale(1.18);

    }

}

@keyframes blob2 {

    0%,
    100% {

        transform: translate(0, 0);

    }

    50% {

        transform: translate(-70px, -50px);

    }

}

@keyframes blob3 {

    0%,
    100% {

        transform: translate(0, 0);

    }

    50% {

        transform: translate(-40px, -80px) scale(.9);

    }

}

@keyframes gridMove {

    from {

        transform: translateY(0);

    }

    to {

        transform: translateY(60px);

    }

}



/* =====================================================
   BACKGROUND MÉDICO
===================================================== */

.medical-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    isolation: isolate;

    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #f6fcff 25%,
            #eefcff 55%,
            #f9fffd 80%,
            #ffffff 100%);

    background-size: 300% 300%;

    animation:
        gradientMove 25s ease infinite;
}

.medical-bg::before {

    content: "";

    position: absolute;
    inset: -20%;

    background:

        radial-gradient(circle at 15% 20%, rgba(59, 130, 246, .22), transparent 30%),

        radial-gradient(circle at 80% 15%, rgba(6, 182, 212, .18), transparent 28%),

        radial-gradient(circle at 55% 75%, rgba(45, 212, 191, .18), transparent 35%),

        radial-gradient(circle at 20% 90%, rgba(96, 165, 250, .15), transparent 30%);

    filter: blur(80px);

    animation: aurora 18s ease-in-out infinite alternate;

}

.particles {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;

    z-index: 1;

}


.particles span {

    position: absolute;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #7dd3fc;

    opacity: .35;

    animation: particle 12s linear infinite;

}

.particles span:nth-child(1) {
    left: 12%;
    top: 20%;
    animation-delay: 0s;
}

.particles span:nth-child(2) {
    left: 24%;
    top: 60%;
    animation-delay: 2s;
}

.particles span:nth-child(3) {
    left: 42%;
    top: 30%;
    animation-delay: 5s;
}

.particles span:nth-child(4) {
    left: 58%;
    top: 80%;
    animation-delay: 1s;
}

.particles span:nth-child(5) {
    left: 70%;
    top: 25%;
    animation-delay: 4s;
}

.particles span:nth-child(6) {
    left: 82%;
    top: 55%;
    animation-delay: 8s;
}

.particles span:nth-child(7) {
    left: 90%;
    top: 12%;
    animation-delay: 6s;
}

.particles span:nth-child(8) {
    left: 35%;
    top: 85%;
    animation-delay: 3s;
}

#mouseGlow {

    position: fixed;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    pointer-events: none;

    z-index: 1;

    background:

        radial-gradient(circle,
            rgba(125, 211, 252, .20),
            transparent 70%);

    filter: blur(40px);

    transform: translate(-50%, -50%);

    transition:
        left .15s linear,
        top .15s linear;

}







@keyframes gradientMove {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}

@keyframes blobMove {

    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(60px, -40px) scale(1.15);
    }

    50% {
        transform: translate(-40px, 60px) scale(.92);
    }

    75% {
        transform: translate(20px, -30px) scale(1.08);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }

}

@keyframes aurora {

    0% {
        transform: rotate(0deg) scale(1);
    }

    100% {
        transform: rotate(18deg) scale(1.1);
    }

}

@keyframes gridAnimation {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(70px);
    }

}

@keyframes particle {

    0% {
        transform: translateY(0) scale(1);
        opacity: .15;
    }

    50% {
        opacity: .55;
    }

    100% {
        transform: translateY(-80px) scale(1.8);
        opacity: 0;
    }

}




.medical-icon {

    position: absolute;
    pointer-events: none;

    background: linear-gradient(135deg,
            #2563eb,
            #06b6d4);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    opacity: .05;

    filter: blur(.4px);

    animation:
        medicalFloat 16s ease-in-out infinite,
        iconGlow 6s ease-in-out infinite;

}

@keyframes iconGlow {

    0%,
    100% {

        filter:
            drop-shadow(0 0 0 rgba(14, 165, 233, 0));

    }

    50% {

        filter:
            drop-shadow(0 0 18px rgba(14, 165, 233, .20));

    }

}

.medical-icon svg {
    width: 100%;
    height: 100%;
}

.medical-grid {

    position: absolute;
    inset: 0;

    background:

        linear-gradient(rgba(14, 165, 233, .04) 1px, transparent 1px),

        linear-gradient(90deg, rgba(14, 165, 233, .04) 1px, transparent 1px);

    background-size: 70px 70px;

    mask-image: radial-gradient(circle, #000 20%, transparent 95%);
    -webkit-mask-image: radial-gradient(circle, #000 20%, transparent 95%);

    opacity: .45;

    animation:
        gridMove 50s linear infinite,
        gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {

    0%,
    100% {

        opacity: .18;

    }

    50% {

        opacity: .32;

    }

}

.medical-blob {

    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    opacity: .25;

    mix-blend-mode: multiply;

    animation: blobMove 18s ease-in-out infinite alternate;

}

.medical-blob.blue {

    background: radial-gradient(circle, #7dd3fc, #3b82f6);

}

.medical-blob.cyan {

    background: radial-gradient(circle, #99f6e4, #06b6d4);

}

.medical-blob.green {

    background: radial-gradient(circle, #bbf7d0, #34d399);

}

@keyframes blobFloat {

    0% {

        transform:
            translate(0, 0) scale(1);

    }

    25% {

        transform:
            translate(60px, -40px) scale(1.12);

    }

    50% {

        transform:
            translate(-40px, 50px) scale(.92);

    }

    75% {

        transform:
            translate(30px, -20px) scale(1.08);

    }

    100% {

        transform:
            translate(-20px, 20px) scale(1);

    }

}

@keyframes medicalFloat {

    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }

}

/* Seção Header */
/* Desktop */
.medical-heart {
    left: 3%;
    top: 11%;
    font-size: 250px;
}

.medical-laptop {
    left: 87%;
    top: 15%;
    font-size: 100px;
    animation-delay: 2s;
}

/* Tablet */
@media (max-width:1024px) {

    .medical-heart {
        left: -4%;
        top: 18%;
        font-size: 180px;
    }

    .medical-laptop {
        left: 82%;
        top: 8%;
        font-size: 110px;
    }

}

/* Mobile */
@media (max-width:768px) {

    .medical-heart {
        left: -9%;
        top: 8%;
        font-size: 150px;
        opacity: .05;
    }

    .medical-laptop {
        right: 4%;
        left: auto;
        top: 26%;
        font-size: 75px;
        opacity: .035;
    }

    .medical-blob.blue {
        width: 220px !important;
        height: 220px !important;
        left: -120px;
        top: -40px;
    }

    .medical-blob.cyan {
        width: 260px !important;
        height: 260px !important;
        right: -120px;
        bottom: -60px;
    }

    .medical-grid {
        opacity: .12;
        background-size: 24px 24px;
    }

}


/* Seção Benfícios */
/* Desktop */
.medical-shield {
    left: 9%;
    top: 4%;
    font-size: 180px;
}

.medical-heart-benefits {
    right: 5%;
    top: 18%;
    font-size: 200px;
    animation-delay: 2s;
}

/* Tablet */
@media (max-width:1024px) {

    .medical-shield {
        left: 4%;
        top: 6%;
        font-size: 130px;
    }

    .medical-heart-benefits {
        right: -2%;
        top: 10%;
        font-size: 200px;
    }

}

/* Mobile */
@media (max-width:768px) {

    .medical-shield {
        left: -5%;
        top: 0%;
        font-size: 120px;
        opacity: .035;
    }

    .medical-heart-benefits {
        right: -10%;
        top: 19%;
        font-size: 150px;
        opacity: .035;
    }

    .medical-blob.green {
        width: 220px !important;
        height: 220px !important;
        left: -120px;
        bottom: -70px;
    }

}



/* Seção Cases */
/* Desktop */
.medical-activity {
    left: 4%;
    top: 4%;
    font-size: 240px;
}

.medical-hand {
    right: 12%;
    top: 3%;
    font-size: 130px;
    animation-delay: 2s;
}

/* Tablet */
@media (max-width:1024px) {

    .medical-activity {
        left: 2%;
        top: 8%;
        font-size: 140px;
    }

    .medical-hand {
        right: 2%;
        top: 4%;
        font-size: 120px;
    }

}

/* Mobile */
@media (max-width:768px) {

    .medical-activity {
        left: -12%;
        top: 10%;
        font-size: 100px;
        opacity: .035;
    }

    .medical-hand {
        right: -10%;
        top: 12%;
        font-size: 90px;
        opacity: .035;
    }

    .medical-blob.cyan {
        width: 240px !important;
        height: 240px !important;
        right: -120px;
        top: -80px;
    }

}




/* Seção Solução Completa */
/* Desktop */
.medical-journal {
    left: 5%;
    top: 4%;
    font-size: 130px;
}

.medical-heart-solution {
    right: -2%;
    top: 10%;
    font-size: 240px;
    animation-delay: 2s;
}

/* Tablet */
@media (max-width:1024px) {

    .medical-journal {
        left: 4%;
        top: 5%;
        font-size: 120px;
    }

    .medical-heart-solution {
        right: 4%;
        top: 10%;
        font-size: 95px;
    }

}

/* Mobile */
@media (max-width:768px) {

    .medical-journal {
        left: -10%;
        top: 10%;
        font-size: 90px;
        opacity: .035;
    }

    .medical-heart-solution {
        right: -8%;
        top: 12%;
        font-size: 75px;
        opacity: .035;
    }

    .medical-blob.blue {
        width: 230px !important;
        height: 230px !important;
        left: -120px;
        top: 40px;
    }

}