@font-face {
    font-family: 'Ample Soft Pro Medium';
    src: url('../fonts/AmpleSoftProMedium.ttf') format('truetype');
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}


body {
    background-color: #0b0b0b;
}



/* Scroll bar */
::-webkit-scrollbar {
    width: 15px;
    height: 10px;
    background-color: #0b0b0b;
}
  
::-webkit-scrollbar-track {
    background: #0b0b0b;
}
  
::-webkit-scrollbar-thumb {
    background: #0b0b0b;
}
  
::-webkit-scrollbar-thumb:vertical {
    background: #68686e;
    border-radius: 0px;
}


::-webkit-scrollbar-thumb:horizontal{
    background: #68686e;
    border-radius: 10px;
}




/* HEADER MODERNIZADO - FLUTUANTE E ARREDONDADO */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 100%;
    max-width: 1200px;
    padding: 0 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 12px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    user-select: none;
}

.logo img {
    max-width: 50px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

header nav li {
    display: flex;
    cursor: pointer;
    user-select: none;
    padding: 12px 22px;
    color: #b8b8b8;
    font-weight: 500;
    font-size: 15px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

header nav li::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(13, 78, 218, 0.15), rgba(0, 163, 239, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
}

header nav li:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

header nav li:hover::before {
    opacity: 1;
}

header nav li:active {
    transform: scale(0.95);
}


main {
    padding: 0 30px;
    overflow-x: clip;
}



.main-details {
    display: flex;
    justify-content: center;
    max-width: 1280px;
    padding: 0 20px;
}



@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .absolute-left {
        width: 300px;
        position: absolute;
        left: -10vw;
        opacity: 0.3;
        user-select: none;
    }
    .absolute-right {
        width: 360px;
        position: absolute;
        right: -14vw;
        top: 283px;
        opacity: 0.4;
        user-select: none;
    }
}





.background-blue-filter-blur {
    position: absolute;
    background-color: rgb(18, 104, 218);
    filter: blur(127px);
}
.background-purple-filter-blur {
    position: absolute;
    background-color: rgb(0 163 239 / 46%);
    filter: blur(140px);
}
.background-blue-filter-blur, .background-purple-filter-blur {
    opacity: 0.5 !important;
} 


.main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1024px;
    width: 100%;
    margin-top: 200px;
}


.details {
    color: #ffffff;
    z-index: 10;
    margin-right: 82px;
}
.details h1 {
    font-size: 55px;
}
.details p {
    font-size: 25px;
}
.details span {
    color: #c1c1c1;
}


/* animated text */
.bubble-animated {
  position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    left: 5%;
    top: 45%;
    pointer-events: none;
    mix-blend-mode: lighten;
    background: #2b50ed;
    animation: bubble-animated 5s ease-in-out infinite;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}


@keyframes bubble-animated {
    0% {
        transform: matrix(1, 0, 0, 1, -45, -45);  /* translateX(-45px), translateY(-45px) */
        border-radius: 50%;
    }
    33% {
        transform: matrix(1, 0, 0, 1, -95, -38);  /* translateY(7px) */
        background-color: rgb(4, 205, 255);
        border-radius: 10%;
    }
    66% {
        transform: matrix(1, 0, 0, 1, -99, -95);  /* translateX(6px) */
        background-color: rgb(0, 132, 255);
        border-radius: 50%;
    }
    100% {
        transform: matrix(1, 0, 0, 1, -45, -45);
        border-radius: 50%;
    }
}



.parallax-illustration img {
    display: flex;
    width: 450px;
    height: 370px;
    animation: float 10s ease-in-out infinite;
    user-select: none;
}


@keyframes float {
    0% {
        transform: translateY(-14px);
    }
    50% {
        transform: translateY(6px);
    }
    100% {
        transform: translateY(-14px);
    }
}


.contacts-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 73px;
}

.contact-me {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, #0d4eda 0%, #1f6eff 100%);
    border: none;
    box-shadow: 0 14px 30px 0 rgb(43 80 237 / 25%),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 14px 42px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-me::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-me:hover::before {
    left: 100%;
}

.contact-me:hover {
    background: linear-gradient(135deg, #1f6eff 0%, #3a84ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px 0 rgb(43 80 237 / 35%),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-me:active {
    transform: translateY(0px);
}

.social-media {
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
}

.social-media a {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.social-media a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 78, 218, 0.3), rgba(0, 163, 239, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-media a:hover {
    background: rgba(31, 110, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(31, 110, 255, 0.3);
}

.social-media a:hover::before {
    opacity: 1;
}

.social-media img {
    height: 21px;
    width: 21px;
    user-select: none;
    position: relative;
    z-index: 1;
    filter: invert(99%) sepia(0%) saturate(7500%) hue-rotate(206deg) brightness(101%) contrast(102%);
}




/* About me */
.about-me-container {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 160px;
}


.about-me-box {
    display: flex;
    color: #ffffff;
    max-width: 1024px;
    width: 100%;
    z-index: 10;
}


.profile img {
    display: none;
    max-height: 290px;
    border-radius: 6px;
    margin-right: 27px;
}


.description-title {
    font-size: 28px;
    font-weight: 900;
}
.description-title span {
    color: #0077ff;
}
.description-text {
    color: #b7b7b7;
    margin-top: 14px;
    margin-bottom: 18px;
    line-height: 1.8;
}
/* End About me */


.swiper {
    padding: 10px 0 !important;
}


.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, -18px) !important;
    left: auto;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, -18px) !important;
    right: auto;
}


/* Stacks */
.stacks-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 67px;
}
.stacks-content {
    max-width: 1087px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}
.stacks-box {
    color: #ffffff;
    max-width: 1024px;
    width: 100%;
}
.stacks-box h2 {
    font-size: 20px;
    position: absolute;
    top: -46px;
}


.stacks {
    background: linear-gradient(342deg, rgb(255 255 255 / 4%), rgba(255, 255, 255, 0));
    border: 1px solid hsla(0, 0%, 100%, .12);
    border-radius: 1.2rem;
    backdrop-filter: blur(15px) saturate(150%); 
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.1); 
    padding: 30px 40px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stacks:hover {
    background: linear-gradient(342deg, rgb(255 255 255 / 6%), rgba(255, 255, 255, 0));
    border-color: hsla(0, 0%, 100%, .18);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stacks h3 {
    margin-top: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.stacks img {
    height: 80px;
    width: 100%;
    user-select: none;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.stacks:hover img {
    transform: scale(1.1);
}

.stacks-swiper-button-prev::after, .stacks-swiper-button-next::after {
    font-size: 31px !important;
}
/* End Stacks */


/* Services */
.services-container {
    display: flex;
    justify-content: center;
    margin-top: 67px;
}
.services-content {
    max-width: 1087px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}
.services-box {
    color: #ffffff;
    max-width: 1024px;
    width: 100%;
    z-index: 10;
}


.services-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 20px;
}
.services-title {
    font-size: 20px;
    font-weight: 700;
}
.services-title span {
    color: #0077ff;
}
.services-subtitle {
    font-size: 30px;
    font-weight: 900;
}
.services-subtitle span {
    color: #0077ff;
}


.services-swiper {
    max-width: 1024px;
    width: 100%;
    margin-top: 20px;
    color: #ffffff;
}

.s-item {
    background: linear-gradient(342deg, rgb(255 255 255 / 4%), rgba(255, 255, 255, 0));
    border: 1px solid hsla(0, 0%, 100%, .12);
    border-radius: 1.2rem;
    width: 100%;
    padding: 45px;
    backdrop-filter: blur(15px) saturate(150%); 
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.s-item:hover {
    background: linear-gradient(342deg, rgb(255 255 255 / 6%), rgba(255, 255, 255, 0));
    border-color: hsla(0, 0%, 100%, .18);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.s-item img {
    user-select: none;
    height: 80px;
    transition: transform 0.3s ease;
    filter: invert(29%) sepia(92%) saturate(2579%) hue-rotate(201deg) brightness(101%) contrast(107%);
}

.s-item h1 {
    display: block;
    margin: 18px 0 12px 0;
    font-size: 24px;
}
.s-item span {
    color: #b7b7b7;
    line-height: 1.7;
}
.services-swiper-button-prev::after, .services-swiper-button-next::after {
    font-size: 31px !important;
}
/* End Services */



/* Projects */
.projects-container {
    display: flex;
    justify-content: center;
}
.projects-content {
    max-width: 1087px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}
.projects-box {
    color: #ffffff;
    width: 100%;
    max-width: 1024px;
    z-index: 10;
}


.projects-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 20px;
}
.projects-title {
    font-size: 15px;
    font-weight: 700;
}
.projects-title span {
    color: #0077ff;
}
.projects-subtitle {
    font-size: 30px;
    font-weight: 900;
}
.projects-subtitle span {
    color: #0077ff;
}


.projects-swiper {
    max-width: 1024px;
    margin-top: 20px;
    color: #ffffff;
}

.projects-link {
    display: flex;
    text-decoration: none;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s;
}

.p-item {
    background: linear-gradient(342deg, rgb(255 255 255 / 4%), rgba(255, 255, 255, 0));
    border: 1px solid hsla(0, 0%, 100%, .12);
    border-radius: 1.2rem;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(15px) saturate(150%); 
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.projects-link:hover .p-item {
    background: linear-gradient(342deg, rgb(255 255 255 / 6%), rgba(255, 255, 255, 0));
    border-color: hsla(0, 0%, 100%, .18);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.p-item img {
    user-select: none;
    height: 100%;
    width: 100%;
    border-radius: 1.2rem 1.2rem 0 0;
    object-fit: cover;
    max-height: 240px;
    transition: transform 0.5s ease;
}

.projects-link:hover .p-item img {
    transform: scale(1.05);
}

.p-item h1 {
    display: block;
    font-size: 22px;
    margin: 0px 0 8px 0;
}
.p-item span {
    color: #b7b7b7;
    line-height: 1.6;
}
.p-item h3 {
    font-size: 15px;
    color: #629ada;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.projects-link:hover .p-item h3 {
    color: #7eb4ff;
}

.project-details {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 22px 35px 35px 35px;
}
.project-stacks {
    display: flex;
    position: absolute;
    right: 0;
    bottom: 0;
}
.project-stacks img {
    display: flex;
    border-radius: 6px;
    height: 26px;
    width: auto;
    margin: 11px 8px;
    transition: transform 0.3s ease;
}

.projects-link:hover .project-stacks img {
    transform: scale(1.1);
}

.project-stacks img:last-child {
    margin-right: 11px;
}
.projects-swiper-button-prev::after, .projects-swiper-button-next::after {
    font-size: 31px !important;
}
/* End Projects */



/* Contacts */
.contacts {
    background: linear-gradient(342deg, rgb(255 255 255 / 3%), rgba(255, 255, 255, 0));
    border: 1px solid hsla(0, 0%, 100%, .12);
    border-radius: 1.2rem;
    width: 100%;
    padding: 45px;
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.contacts-container {
    display: flex;
    justify-content: center;
}
.contacts-box {
    color: #ffffff;
    max-width: 1024px;
    width: 100%;
    z-index: 10;
}


.contacts-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 20px;
}
.contacts-title {
    font-size: 15px;
    font-weight: 700;
}
.contacts-title span {
    color: #0077ff;
}
.contacts-subtitle {
    font-size: 30px;
    font-weight: 900;
}
.contacts-subtitle span {
    color: #0077ff;
}


.conf {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.conf:hover {
    background: rgba(255, 255, 255, 0.05);
}

.conf a {
    display: flex;
    align-items: center;
    text-decoration: none;
    user-select: text;
    margin: 10px;
    transition: transform 0.3s ease;
}

.conf a:hover {
    transform: translateX(5px);
}

.conf img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
    height: 35px;
    width: 35px;
    user-select: none;
}
.conf span {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
    word-break: break-word;
    overflow-wrap: break-word;
}
/* End Contacts */



/* Mobile devices */  
@media (max-width: 1110px) {
    .bubble-animated {
        height: 60px;
        width: 60px;
        left: 9%;
        top: 50%;
    }
    .details {
        margin-right: 0;
    }
}

@media (max-width: 902px) {
    header {
        padding: 0 20px;
        top: 15px;
    }
    
    .header-container {
        padding: 10px 20px;
    }
    
    .parallax-illustration {
        display: none;
    }
    @media screen and (-webkit-min-device-pixel-ratio: 0) {
        .absolute-left {
            width: 148px;
            position: absolute;
            left: -20px;
            top: 311px;
            opacity: 0.3;
            user-select: none;
        }
        .absolute-right {
            width: 120px;
            position: absolute;
            right: -5vw;
            top: 50px;
            opacity: 0.2;
            user-select: none;
        }
    }
}

@media (max-width: 850px) {
    .background-blue-filter-blur {
        width: 100% !important;
    }
    .first-glow {
        width: 100% !important;
    }
}


@media (max-width: 770px) {
    header {
        padding: 0 15px;
        top: 12px;
    }
    
    .header-container {
        padding: 8px 16px;
        border-radius: 40px;
    }
    
    .logo img {
        max-width: 40px;
    }
    
    header nav {
        display: none;
    }

    .bubble-animated {
        left: 17%;
        top: 42%;
    }

    .details {
        display: flex;
        flex-direction: column;
    }
    .details h1 {
        font-size: 44px;
        line-height: 46px;
        margin-bottom: 7px;
    }
    .details p {
        font-size: 21px;
    }
    .details span {
        font-size: 15px;
    }
    .contacts-links {
        justify-content: center;
    }
    .contact-me {
        font-size: 16px;
        margin: 45px 0;
        padding: 12px 36px;
    }


    .profile img {
        display: none;
        max-height: 200px;
        margin: 0;
    }
    .description-title {
        font-size: 24px;
    }
    .description-text {
        font-size: 14px;
    }


    .stacks-box h2 {
        font-size: 16px;
    }



    .services-title {
        font-size: 16px;
    }


    .s-item h1 {
        font-size: 20px;
    }
    .s-item span {
        font-size: 15px;
    }



    .p-item h1 {
        font-size: 20px;
    }
    .p-item span {
        font-size: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.5;  
    }
    .p-item h3 {
        font-size: 14px;
    }


    .footer-box img {
        max-width: 30px;
    }
    .footer-box span {
        font-size: 12px;
    }
}


@media (max-width: 520px) {
    .main-container {
        justify-content: center;
    }
    .main-details {
        padding: 0;
    }
    .details {
        align-items: center;
    }
    .details h1 {
        text-align: center;
        text-align: -webkit-center;
        margin-bottom: 18px;
    }


    .bubble-animated {
        left: 30%;
        top: 34%;
    }
}


@media (max-width: 500px) {
    .about-me-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .description {
        margin-top: 26px;
    }
}


@media (max-width: 468px) {
    .contacts {
        padding: 20px;
    }

    .contacts-links {
        gap: 15px;
    }
}
/* End Mobile devices */ 



/* Footer */
footer {
    display: flex;
    justify-content: center;
    background-color: #000;
    color: #fff;
    padding: 15px;
    margin-top: 100px;
}
.footer-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1024px;
    width: 100%;
}
.footer-box img {
    max-width: 32px;
    opacity: 0.25;
    user-select: none;
}
.footer-box span {
    font-size: 13px;
    color: #606060;
}
/* End Footer */



.financial-banner {
    margin-top: 110px;
    padding: 50px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0b0b0b;
}

.banner-glass-container {
    max-width: 1024px;
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(45, 139, 123, 0.08) 0%, 
        rgba(91, 192, 174, 0.12) 50%, 
        rgba(45, 139, 123, 0.08) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(91, 192, 174, 0.2);
    border-radius: 24px;
    padding: 45px 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(91, 192, 174, 0.15),
                0 0 80px rgba(45, 139, 123, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-glass-container:hover {
    background: linear-gradient(135deg, 
        rgba(45, 139, 123, 0.12) 0%, 
        rgba(91, 192, 174, 0.16) 50%, 
        rgba(45, 139, 123, 0.12) 100%);
    border-color: rgba(91, 192, 174, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(91, 192, 174, 0.2),
                0 0 100px rgba(45, 139, 123, 0.15);
}

/* Geometric decorations */
.banner-glass-container::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(91, 192, 174, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.banner-glass-container::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(45, 139, 123, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.banner-text {
    flex: 1;
}

.banner-label {
    display: inline-block;
    color: #5bc0ae;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.banner-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.banner-subtitle {
    color: #b8b8b8;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2d8b7b 0%, #45a89a 100%);
    color: #ffffff;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(45, 139, 123, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.banner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.banner-cta:hover {
    background: linear-gradient(135deg, #45a89a 0%, #5bc0ae 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(45, 139, 123, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.banner-cta:hover::before {
    left: 100%;
}

.banner-cta:active {
    transform: translateY(0px);
}

.banner-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.banner-cta:hover .banner-icon {
    transform: translateX(4px);
}

/* Product preview container */
.banner-preview {
    position: relative;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.preview-glass {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(91, 192, 174, 0.15) 0%, 
        rgba(45, 139, 123, 0.08) 100%);
    backdrop-filter: blur(15px) saturate(160%);
    -webkit-backdrop-filter: blur(15px) saturate(160%);
    border: 1.5px solid rgba(91, 192, 174, 0.25);
    border-radius: 16px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(91, 192, 174, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(91, 192, 174, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.banner-preview:hover .preview-glass {
    background: linear-gradient(135deg, 
        rgba(91, 192, 174, 0.2) 0%, 
        rgba(45, 139, 123, 0.12) 100%);
    border-color: rgba(91, 192, 174, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(91, 192, 174, 0.25);
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-preview:hover .preview-image {
    transform: scale(1.05);
}

/* Accent line */
.accent-line {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(91, 192, 174, 0.5) 50%, 
        transparent 100%);
    border-radius: 0 0 24px 24px;
}

@media (max-width: 1000px) {
    .banner-actions {
        flex-direction: column;
        gap: 20px;
    }

    .banner-preview {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .financial-banner {
        padding: 40px 20px;
    }

    .banner-glass-container {
        padding: 35px 30px;
    }

    .banner-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .banner-subtitle {
        font-size: 0.9rem;
    }

    .banner-cta {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .banner-preview {
        width: 130px;
        height: 130px;
    }

    .banner-actions {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .banner-glass-container {
        padding: 30px 20px;
    }

    .banner-title {
        font-size: 1.3rem;
    }

    .banner-preview {
        width: 110px;
        height: 110px;
    }
}