.feature {
    position: relative;
}

.grad-overlay {
    position: relative;
    overflow: hidden;
    padding: 40px;
    max-width: 580px;
    text-align: left;
    border-radius: 20px;
    background-color: #ffffff;
    border: 2px solid #d5d5d5;
    transition: all .8s ease;
}

@media (max-width: 960px) {
    .grad-overlay {
        padding: 20px;
    }
}

.visa-contour-container {
    position: relative;
}

.visa-curva-container {
    position: relative;
}

.grad-overlay:hover {
    background-color: #0c1a2c;
}

/* The Gradient Blobs */
.gradient-blob {
    position: absolute;
    display: none;
    width: 80%;
    height: 50%;
    border-radius: 50%;
    mix-blend-mode: screen;
    filter: blur(100px);
    z-index: 0;
}

/* Positioning and coloring each blob */
.gradient-blob:nth-child(1) {
    top: -50px;
    right: -80px;
    border-radius: 0 50% 50% 0;
    background-color: #00e1ff;
    opacity: 1;
}

.gradient-blob:nth-child(2) {
    top: 30%;
    left: -25%;
    border-radius: 15% 45% 15% 0%;
    background-color: #b8edec;
    opacity: 0.4;
}

.gradient-blob:nth-child(3) {
    bottom: -10%;
    right: -25%;
    border-radius: 0% 50% 0 0;
    background-color: #74f7e9;
    opacity: 0.8;
}

.grad-overlay:hover .gradient-blob {
    display: block;
}

.visa-card {
    margin-bottom: 20px;
    transform-style: preserve-3d;
}

.visa-card img {
    width: 100%;
    border-radius: 12px;
}

.card-details h1 {
    font-size: 28px;
    margin: 0 0 10px;
    color: var(--deepblue);
}

.card-details p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--midblue);
}

.card-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    color: var(--slate);
}

.card-details ul li {
    font-size: 16px;
    margin-bottom: 12px;
}

.shine-overlay {
    position: relative;
    overflow: hidden;
}

.shine-overlay:hover .shine {
    display: block;
}

.grad-overlay:hover .card-details h1,
.grad-overlay:hover .card-details p,
.grad-overlay:hover .card-details ul {
    color: var(--white);
}

.shine {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transform: skew(30deg);
    animation: shine 0.75s linear 1;
}

@keyframes shine {
    0% {
        left: -50%;
        opacity: 0;
    }

    50% {
        left: 25%;
        opacity: 0.5;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.popular {
    position: absolute;
    top: -35px;
    right: -30px;
    width: 100px;
    z-index: 2;
}

@media (max-width: 960px) {
    .popular {
        top: 55%;
        right: 20px;
        width: 90px;
    }
}

.parallax-promo-section {
    position: relative;
    padding: 100px 20px;

    background-image: linear-gradient(120deg, rgba(0, 25, 51, 0.25) 0%, rgba(13, 88, 101, 0.35) 100%), url("../images/november2025/ecu_visa_parallax_D_bg.webp");
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}



@media (max-width: 960px) {
    .parallax-promo-section {
        padding: 20px;
        background-image: linear-gradient(120deg, rgba(0, 25, 51, 0.25) 0%, rgba(13, 88, 101, 0.35) 100%), url("../images/november2025/ecu_visa_parallax_M_bg.webp");
        background-position: center;
        background-size: cover;
    }
}

@supports (-webkit-touch-callout: none) {
    .parallax-promo-section {
        background-attachment: scroll;
    }
}

.promo-content-wrapper {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.fineprint h1 {
    white-space: normal !important;
}

.fineprint h1 .word {
    display: inline-block;
    margin-right: 0.25em;
}

.fineprint h1 .word span {
    opacity: 0.1;
}