body {
    position: inherit;
    background: #111122 !important;
}

.gradient-first {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(65, 104, 216, 0.1) 0%, rgba(85, 45, 154, 0.1) 100%);
    z-index: -1;
    pointer-events: none;
}
.hero-product {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 821px;
    background: url('../images/products/bg-hero-product.jpg') no-repeat;
    background-position: center;
    background-size: 100% 100%;
}
.hero-product::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #111122bd, #11112200);
    z-index: 1;
}
.hero-product-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-product-content h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 72px;
    color: #fff;
}
.hero-product-content p {
    font-size: 30px;
    color: #fff;
    font-weight: 400;
    line-height: 38px;
    margin-top: 15px;
}

.hero-product-content .d-flex {
    gap: 30px;
    margin-top: 40px;
}
.sec-products {
    margin-top: 741px;
    background: #111122;
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, #3D3C5D00, #3D3C5D, #3D3C5D00) 1;
}
.main-products {
    position: relative;
}
.products-projects {
    background: #111122;
    padding: 90px 0;
}
.products-projects-title {
    color: #fdfdfd;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
}
.calculator-main--products {
    background-color: #15132C;
    border: 1px solid #26244D;
    margin-top: 70px;
}
.calculator-main--products input[type="text"] {
    background-color: #18172C;
    color: #fdfdfd;
}
.calculator-main--products .calculator-content .input-dropdown .dropdown-cod-trigger {
    color: #FDFDFD;
}
.calculator-main--products .calculator-content .input-dropdown {
    border-color: #282740;
}
.calculator-main--products .calculator-content .input-dropdown .dropdown-cod-trigger {
    border-color:#282740;
}
.calculator-main--products .calculator-content .calculator-operations {
    border-color: #1E1D33;
}
.calculator-main--products .calculator-slider-handle {
    width: 16px;
    height: 16px;
}
.calculator-main--products .calculator-slider-handle,
.calculator-main--products .calculator-slider-fill {
    background-color: #4168D8;
}
.calculator-main--products .calculator-slider-track {
    background-color: #616083;
    height: 1.4px;
    .calculator-slider-final {
        background-color: #616083;
    }
}
.calculator-main--products .calculator-item {
    border: 0.5px solid #3D3C5D;
    color: #FDFDFD;
    background: #0000;
    padding: 6px 40px;
}
.calculator-main--products .calculator-item.calculator-item--active {
    background-color: #4168D8;
}

.dropdown--ahorro {
    background: #171631;
    width: 88px;
    a {
        color: #CCCBEB !important;
    }
}

/* ============= Project Cards (Products) ============= */
.active-projects,
.experience,
.agenda {
    background: #111122;
}
.cards-projects-active {
    margin-top: 58px;
    padding-bottom: 90px;
}
.cards-projects-active .dropdown-cod-trigger {
    padding: 10px 17px 10px 20px !important;
}
.cards-projects-active .dropdown-cod-trigger:hover {
    color: #6C8EF1 !important;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
}

.project-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1/1.2;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    /* border: 1px solid #282740; */
    height: 480px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0C0E1D00, #0C0E1DCC);
}

.project-overlay {
    position: absolute;
    left: 0;
    right: 0;   
    bottom: 0;
    padding: 24px;
    color: #FDFDFD;
    z-index: 2;
    display: flex;
    flex-direction: column;
    
}

.project-location {
    margin: 0 0 8px 0;
    color: #CACBCE;
    font-size: 18px;
    font-weight: 400;
}

.project-title {
    margin: 0 0 16px 0;
    font-size: 30px;
    line-height: 38px;
    font-weight: 500;
    color: #EBEBEB;
}

.project-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
    color: #FDFDFD;
    border: 1px solid rgba(255,255,255,0.25);
}
.project-overlay .arrow-btn-container {
    margin-right: 6px;
}
.project-overlay .arrow-btn-container img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(212deg) brightness(101%) contrast(98%) !important;
}

.project-button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}
.active-projects .dropdown-cod {
    width: fit-content;
    margin-top: 90px;
}
.active-projects .dropdown-cod-menu {
    min-width: 280px !important;
}
.active-projects .dropdown-cod-trigger {
    color: #FDFDFD !important;
    font-weight: 700;
    font-size: 42px;
    background: #111122;
    border-radius: 200px;
    transition: all 0.3s ease;
    padding: 0 !important;
}

.active-projects .dropdown-cod-trigger img {
    transition: transform 0.3s ease;
    width: 26px;
}

.active-projects .dropdown-cod-trigger.active {
    color: #6C8EF1 !important;
}
.active-projects .dropdown-cod-trigger.active img {
    filter: brightness(0) saturate(100%) invert(48%) sepia(92%) saturate(483%) hue-rotate(192deg) brightness(99%) contrast(90%);
}
/* .gradient-first {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid red;
    background: radial-gradient(circle at top right, rgba(198, 211, 249, 1) 0%, rgba(236, 221, 255, 1) 0%, #0000 69%);
    z-index: 3;
} */
.active-projects .dropdown-cod-trigger.active img {
    transform: rotate(180deg);
}

/* Estilos para proyectos terminados */
.finished-projects {
    margin-top: 40px;
    animation: fadeInDown 0.3s ease-out;
}

.finished-project-card {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.finished-project-card:hover {
    opacity: 1;
}
.project-badge--location {
    background: #0E0C3DB2 !important;
    color: #fdfdfd !important;
    border: 1px solid #0000 !important;
    padding-left: 45px !important;
}
.project-badge--es::after {
    content: url(../images/es.png);
    position: absolute;
    left: 11px;
    top: 59%;
    transform: translateY(-50%);
}
.project-badge--ar::after {
    content: url(../images/ar.png);
    position: absolute;
    left: 11px;
    top: 59%;
    transform: translateY(-50%);
}
.project-badge--finished {
    background: #2D5A27CC !important;
    color: #E8F5E8 !important;
    border: 1px solid #4A7C59 !important;
    font-weight: 500;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.crowd {
    background: linear-gradient(to right, #E4EBFF, #E9E9FF);
    padding: 60px 0;
    position: relative;
}
.crowd-img {
    position: absolute;
    right: -70px;
    top: 0;
    height: 100%;
}
.crowd-title {
    color: #552D9A;
    font-size: 60px;
    font-weight: 700;
    line-height: 72px;
}
.crowd p {
    color: #2F1B59;
    font-size: 30px;
    line-height: 38px;
}

.project-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
}
.crowd .d-flex {
    gap: 30px;
    margin-top: 40px;
}
.experience {
    padding: 90px 0;
}
.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.experience-content-text .first-p {
    margin-top: 60px;
}
.experience-content p {
    color: #EBEBFE;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    max-width: 453px;
}
.agenda {
    padding: 50px 0;
}
.agenda .cards-benefits {
    margin-top: 58px;
    padding: 0;
}
.agenda .card-benefit {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
.agenda .card-benefit-title {
    font-size: 24px;
    margin-top: 8px;
}
.agenda .card-benefit-content {
    display: flex;
    flex-direction: column;
}
.agenda .btn-cod-custom {
    height: 44px !important;
}
.agenda .btn-cod-custom .arrow-btn-container {
    height: 28px !important;
    width: 28px !important;
}
.agenda .btn-cod-custom .arrow-btn-container img {
    width: 11.53px !important;
}
.agenda .btn-cod-custom span {
    font-size: 16px;
}
.cite-cta-products {
   background: #111122;
   padding-bottom: 90px;
   padding: 0 20px 90px 20px
}
.project-badge {
    position: absolute;
    top: 20px;
    left: 22px;
    z-index: 3;
    padding: 3px 12px;
    border-radius: 999px;
    background: #552D9ACC;
    color: #FDFDFD;
    font-size: 16px;
    border: 1px solid #552D9A;
}

.project-card--soon {
    background: #D9D9D9
}
.project-overlay .btn-cod-custom span {
    font-size: 16px !important;
}
.project-overlay .btn-cod-custom {
    height: 44px !important;
}
.experience-content img {
    border-radius: 20px;
}
.project-badge--soon {
    background: linear-gradient(to top, #A57DD9, #84A1F3);
    color: #273F82;
    font-weight: 500;
    height: 32px;
    border: none;
    color: #fdfdfd;
}

.project-badge--urgent {
    background: #842D9ACC;
    color: #FFFFFF;
    border: 1px solid #842D9A;
    font-weight: 500;
    position: relative;
    padding-right: 31px;
    display: inline-block;
    height: 32px;
}

.project-badge--urgent::after {
    content: url(../images/products/icon_fire.png);
    position: absolute;
    right: 8px;
    top: 47%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    display: inline-block;
}

/* ============= RESPONSIVE DESIGN ============= */

/* Hero Section Responsive */
@media (max-width: 992px) {
    .hero-product {
        min-height: 600px;
        background-size: cover;
    }
    
    .hero-product-content h1 {
        font-size: 48px;
        line-height: 56px;
        text-align: left;
    }
    
    .hero-product-content p {
        font-size: 24px;
        line-height: 32px;
        text-align: left;
    }
    
    .hero-product-content .d-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-product {
        min-height: 500px;
    }
    
    .hero-product-content h1 {
        font-size: 36px;
        line-height: 44px;
        padding: 0 20px;
        text-align: left;
    }
    
    .hero-product-content p {
        font-size: 20px;
        line-height: 28px;
        padding: 0 20px;
        text-align: left;
    }
    
    .hero-product-content .d-flex {
        gap: 15px;
        margin-top: 30px;
        align-items: flex-start;
        padding: 0 20px;
    }
    
    .sec-products {
        margin-top: 425px;
    }
}

@media (max-width: 576px) {
    .hero-product {
        min-height: 450px;
    }
    
    .hero-product-content h1 {
        font-size: 28px;
        line-height: 36px;
        padding: 0 15px;
        text-align: left;
    }
    
    .hero-product-content p {
        font-size: 18px;
        line-height: 26px;
        padding: 0 15px;
        text-align: left;
    }
    
    .hero-product-content .d-flex {
        gap: 12px;
        margin-top: 25px;
        padding: 0 15px;
        align-items: flex-start;
    }
    
    .sec-products {
        margin-top: 450px;
    }
}

/* Calculator Responsive */
@media (max-width: 992px) {
    .products-projects {
        padding: 60px 0;
    }
    
    .products-projects-title {
        font-size: 36px;
        line-height: 48px;
        text-align: left;
    }
    
    .calculator-main--products {
        margin-top: 50px;
    }
    
    .calculator-main--products .calculator-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .calculator-main--products .calculator-footer {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .products-projects {
        padding: 40px 0;
    }
    
    .products-projects-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .calculator-main--products {
        margin-top: 30px;
        padding: 20px;
    }
    
    .calculator-main--products .calculator-items {
        flex-direction: column;
        gap: 10px;
    }
    
    .calculator-main--products .calculator-item {
        padding: 12px 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .products-projects-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .calculator-main--products {
        padding: 15px;
    }
    
    .calculator-main--products .calculator-item {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Cards Grid Responsive */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .project-card {
        height: 400px;
    }
    
    .project-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .project-location {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .project-card {
        height: 350px;
    }
    
    .project-overlay {
        padding: 20px;
    }
    
    .project-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .project-location {
        font-size: 14px;
    }
    
    .cards-projects-active {
        margin-top: 40px;
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .project-card {
        height: 300px;
    }
    
    .project-overlay {
        padding: 15px;
    }
    
    .project-title {
        font-size: 18px;
        line-height: 24px;
    }
    
    .project-location {
        font-size: 13px;
    }
    
    .cards-projects-active {
        margin-top: 30px;
        padding-bottom: 40px;
    }
}

/* Crowd Section Responsive */
@media (max-width: 992px) {
    .crowd {
        padding: 40px 0;
    }
    
    .crowd-title {
        font-size: 48px;
        line-height: 56px;
        text-align: center;
    }
    
    .crowd p {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }
    
    .crowd .d-flex {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .crowd-img {
        display: none;
    }
}

@media (max-width: 768px) {
    .crowd {
        padding: 30px 0;
    }
    
    .crowd-title {
        font-size: 36px;
        line-height: 44px;
        padding: 0 20px;
    }
    
    .crowd p {
        font-size: 20px;
        line-height: 28px;
        padding: 0 20px;
    }
    
    .crowd .d-flex {
        gap: 15px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .crowd {
        padding: 25px 0;
    }
    
    .crowd-title {
        font-size: 28px;
        line-height: 36px;
        padding: 0 15px;
    }
    
    .crowd p {
        font-size: 18px;
        line-height: 26px;
        padding: 0 15px;
    }
    
    .crowd .d-flex {
        gap: 12px;
        margin-top: 25px;
        padding: 0 15px;
    }
}

/* Experience Section Responsive */
@media (max-width: 992px) {
    .experience {
        padding: 60px 0;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .experience-content-text {
        order: 2;
        text-align: left;
    }
    
    .experience-content img {
        order: 1;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .experience {
        padding: 40px 0;
    }
    
    .experience-content {
        gap: 30px;
        padding: 0 20px;
        text-align: left;
    }
    
    .experience-content-text {
        text-align: left;
    }
    
    .experience-content-text .first-p {
        margin-top: 30px;
    }
    
    .experience-content p {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 576px) {
    .experience {
        padding: 30px 0;
    }
    
    .experience-content {
        gap: 25px;
        padding: 0 15px;
        text-align: left;
    }
    
    .experience-content-text {
        text-align: left;
    }
    
    .experience-content-text .first-p {
        margin-top: 20px;
    }
    
    .experience-content p {
        font-size: 16px;
        line-height: 24px;
    }
}

/* Agenda Section Responsive */
@media (max-width: 992px) {
    .agenda {
        padding: 40px 0;
    }
    
    .agenda .cards-benefits {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .agenda .card-benefit {
        text-align: left;
    }
    .calculator-main--products .calculator-support button {
        margin: auto
    }
}

@media (max-width: 768px) {
    .agenda {
        padding: 30px 0;
    }
    
    .agenda .cards-benefits {
        gap: 25px;
        margin-top: 30px;
        padding: 0 20px;
    }
    
    .agenda .card-benefit {
        text-align: left;
    }
    
    .agenda .card-benefit-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .agenda {
        padding: 25px 0;
    }
    
    .agenda .cards-benefits {
        gap: 20px;
        margin-top: 25px;
        padding: 0 15px;
    }
    
    .agenda .card-benefit {
        text-align: left;
    }
    
    .agenda .card-benefit-title {
        font-size: 18px;
    }
    
    .agenda .btn-cod-custom {
        height: 40px !important;
        font-size: 14px;
    }
}

/* Dropdown Finished Projects Responsive */
@media (max-width: 768px) {
    .active-projects .dropdown-cod-trigger {
        font-size: 20px;
        padding: 8px 15px 8px 18px !important;
    }
    
    .finished-projects {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .active-projects .dropdown-cod-trigger {
        font-size: 18px;
        padding: 6px 12px 6px 15px !important;
    }
    
    .finished-projects {
        margin-top: 25px;
    }
}

/* Additional Responsive Improvements */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .subtitle-span {
        font-size: 14px;
    }
    
    .title-48 {
        font-size: 32px !important;
        line-height: 40px !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .subtitle-span {
        font-size: 13px;
    }
    
    .title-48 {
        font-size: 28px !important;
        line-height: 36px !important;
    }
    
    .btn-cod-custom {
        font-size: 14px !important;
        padding: 12px 16px !important;
    }
    
    .btn-cod-custom span {
        font-size: 14px !important;
    }
}

/* Gradient First Responsive */
@media (max-width: 768px) {
    .gradient-first {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .gradient-first {
        height: 450px;
    }
}

.calculator-main--products .calculator-plazos {
    color: #9593BD;
    margin-top: 20px;
    line-height: 24px;
}
.calculator-main--products .calculator-lists {
    color: #EBEBFE;
}
.calculator-main--products .calculator-shield {
    color: #273F82;
    background: #C6D3F9;
    border-color: #84A1F3;
    font-weight: 700;
    margin-top: 70px;
}
.calculator-main--products .calculator-support {
    justify-content: end;
    margin-top: 0;
}
.calculator-main--products .calculator-support button {
    background: #4168D8 !important;
    color: #FDFDFD;
    padding-right: 20px !important;
    border: 1px solid #4168D8 !important;
    width: fit-content !important;
}
.calculator-main--products .calculator-tasa {
    margin-top: 18px;
    align-items: start;
}

/* ============= Project Modal ============= */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.8); */
    background: #111122;
    z-index: 10;
    justify-content: center;
    /* align-items: center; */
    /* padding: 20px; */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Deshabilitar scroll del body cuando el modal está activo */
body.modal-open {
    overflow: hidden !important;
    /* position: fixed; */
    /* width: 100%; */
}

.project-modal.show {
    opacity: 1;
    visibility: visible;
}

.project-modal-content {
    background: #111122;
    /* border-radius: 20px; */
    /* max-width: 1200px; */
    width: 100%;
    position: relative;
    /* border: 1px solid #282740; */
    /* transform: scale(0.8) translateY(50px); */
    transition: all 0.3s ease;
    margin-top: 96.67px;
    height: fit-content;
}
.rotate-180 {
    transform: rotate(180deg);
}

.project-modal.show .project-modal-content {
    /* transform: scale(1) translateY(0); */
}

.project-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    position: relative;
}
.divider-modal {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #3D3C5D, #3D3C5D00);
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 32px;
}
.project-modal-location {
    color: #CCCBEB;
    font-size: 30px;
    font-weight: 400;
}
.project-modal-title {
    color: #FDFDFD;
    font-size: 30px;
    font-weight: 400;
    margin: 0;
}
.tag-from {
    height: 32px;
    background: #842D9ACC;
    color: #FDFDFD;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    padding: 4px 15px;
    text-align: center;
    border: 1px solid #842D9A;
    display: flex;
    align-items: center;
    gap: 5px;
}
.project-modal-title--main {
    border-bottom: 1px solid #282740;
    padding-bottom: 25px;
}
.shadow-none {
    box-shadow: none;
}
.project-modal-close {
    background: none;
    border: none;
    color: #FDFDFD;
    font-size: 16px !important;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.project-availability {
    position: relative;
    padding-top: 27px;
    border-top: 1px solid #282740;
}
.blur-effect-availability {
    height: 100%;
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: rgb(17 17 33 / 51%);
    backdrop-filter: blur(10px);
    border: 1px solid #282740;
    border-radius: 10px;
}

.project-modal-close:hover {
    /* background: rgba(255, 255, 255, 0.1); */
}

.project-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 32px;
}

.project-gallery {
    display: flex;
    gap: 16px;
}

.project-gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 80px;
    position: relative;
    padding: 4px;
}


.thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Borde animado que se mueve */
.thumbnail-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 68px;
    height: 68px;
    border: 1px solid #9593BD;
    border-radius: 18px;
    transition: transform 0.3s ease;
    pointer-events: none;
    z-index: 2;
}
#modalUnitsAvailable {
    font-size: 20px;
    color: #EBEBFE;
    font-weight: 500;
}
#modalPriceFrom {
    color: #AABEF7;
    font-weight: 700;
    font-size: 20px;
}

/* Posiciones del borde para cada thumbnail */
.thumbnail-border.position-0 { transform: translateY(0px); }
.thumbnail-border.position-1 { transform: translateY(72px); }
.thumbnail-border.position-2 { transform: translateY(144px); }
.thumbnail-border.position-3 { transform: translateY(216px); }
.thumbnail-border.position-4 { transform: translateY(288px); }
.thumbnail-border.position-5 { transform: translateY(360px); }
.thumbnail-border.position-6 { transform: translateY(432px); }

.project-gallery-main {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

.project-gallery-main img {
    width: 100%;
    height: 629px;
    object-fit: cover;
    cursor: zoom-in;
    transition: all 0.3s ease;
}

.project-gallery-main img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.project-modal-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.project-description h3 {
    color: #FDFDFD;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 16px 0;
}

.project-description p {
    color: #EBEBFE;
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 12px 0;
}
.read-more-dots {
    display: block;
    color: #EBEBFE;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.read-more-link {
    color: #AABEF7 !important;
    text-decoration: underline !important;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-top: 12px;
}

.read-more-link:hover {
    color: #4168D8;
}

.project-description-text {
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease;
}

.project-description-text.collapsed {
    max-height: 120px;
}

.project-description-text.expanded {
    max-height: 1000px;
}

.project-description-text .main-content p {
    margin-bottom: 0;
}

.project-description-text .additional-content {
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
}

.project-description-text .additional-content p {
    margin-top: 12px;
    margin-bottom: 0;
}

.project-description-text.expanded .additional-content {
    opacity: 1;
}

.read-more-dots,
.read-more-link {
    display: block;
}

.project-description-text.collapsed .read-more-dots,
.project-description-text.collapsed .read-more-link {
    display: inline;
}

.project-description-text.expanded .read-more-dots {
    display: none;
}
.stadistica #sectSumamosGlobal .contSumarGlobal h4 {
    font-size: 18px !important;
    font-weight: 400;
}
/* #F9F9FF80 */
.availability-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding-top: 20px;
    font-size: 16px;
}

.units-available {
    color: #CCCBEB;
    font-size: 18px;
    font-weight: 700;
}

.units-available--urgent {
    color: #FF4444;
    font-weight: 800;
    position: relative;
    padding-right: 30px;
}

.units-available--urgent::after {
    content: url(../images/products/icon_fire.png);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    display: inline-block;
}

.price-from {
    color: #AABEF7;
    font-size: 16px;
    font-weight: 700;
}

.view-units-btn {
    width: 100%;
    justify-content: center;
}

/* Acordeones de Unidades */
.accordions {
    margin-top: 24px;
}
.accordions.accordions--light {
    .accordion-item {
        background: #FDFDFD;
        border: 1px solid #EBEBFE;
    }
}
.accordions.accordions--light {
    .accordion-type {
        color: #1C1C1C;
        font-weight: 600;
    }
}
.accordions.accordions--light .accordion-content p {
    color: #040404;
    font-size: 16px;
}
.accordion-item {
    background: #18172C;
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 10.5px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-profile-contact {
    background: #FDFDFD;
    color: #040404;
    border: 1px solid #CCCBEB;
    padding: 8px 20px 8px 8px;
    gap: 14px;
    border-radius: 50px;
    .icon-profile {
        width: 28px;
        height: 28px;
        background: #CCCBEB26;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 200px;
    }
}
.icon-profile .icon-profile--x-180 {
    transform: rotateX(180deg);
}

.accordions.accordions--light .accordion-item.expanded .accordion-content {
    border: none;
}

.accordions.accordions--light .accordion-item.expanded .accordion-type {
    color: #552D9A;
}

.text-sumar {
    color: #040404;
}
.text-cod-underline {
    color: #552D9A;
    text-decoration: underline;
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.accordion-item:hover {
    background: #252440;
}

.accordion-type {
    color: #FDFDFD;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.accordion-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-badge {
    background: #3D3C5D;
    color: #AABEF7;
    padding: 4.4px 12px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
}
.accordion-badge.accordion-badge--fire {
    background: #3D3C5D;
    color: #C8ACEE;
}

.accordion-badge.urgent {
    background: #FF6B6B;
}

.accordion-arrow {
    color: #AABEF7;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.accordion-item.expanded .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;   
    width: 100%;
}

.accordion-item.expanded .accordion-content {
    max-height: 500px;
    border-top: 1px solid #282740;
    margin-top: 12px;
}

.accordion-content-inner {
    display: flex;
    flex-direction: column;
}

.accordion-content h5 {
    color: #FDFDFD;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.accordion-content p {
    color: #EBEBFE;
    font-size: 18px;
    line-height: 24px;
    margin: 0;
}

.accordion-content ul {
    color: #EBEBFE;
    font-size: 18px;
    line-height: 24px;
    margin: 0;
    font-weight: 400;
}

.accordion-content li {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.accordion-content .price {
    color: #4168D8;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.accordion-content .details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.accordion-content .detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.accordion-content .detail-label {
    color: #AABEF7;
    font-size: 14px;
    font-weight: 500;
}

.accordion-content .detail-value {
    color: #FDFDFD;
    font-size: 16px;
    font-weight: 600;
}

.accordion-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.accordion-action-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-action-btn.primary {
    background: #4168D8;
    color: #FDFDFD;
}

.accordion-action-btn.primary:hover {
    background: #3556C7;
    transform: translateY(-2px);
}

.accordion-action-btn.secondary {
    background: transparent;
    color: #AABEF7;
    border: 1px solid #282740;
}

.accordion-action-btn.secondary:hover {
    border-color: #4168D8;
    color: #4168D8;
}

/* Efecto Blur para Botones Custom */
.btn-cod-custom.blur-effect {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(126, 125, 156, 0.1) !important;
    border: 1px solid rgba(249, 249, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-cod-custom.blur-effect:hover {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(126, 125, 156, 0.2) !important;
    border: 1px solid rgba(249, 249, 255, 0.3) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-cod-custom.blur-effect .arrow-btn-container {
    background: rgba(204, 203, 235, 0.2) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cod-custom.blur-effect:hover .arrow-btn-container {
    background: rgba(204, 203, 235, 0.3) !important;
}

/* Modal de Imagen Ampliada */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-modal.show {
    opacity: 1;
    visibility: visible;
}

.image-modal-content {
    position: relative;
    width: 90vw;
    height: 90vh;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    /* overflow: hidden; */
}

.image-modal.show .image-modal-content {
    transform: scale(1);
}

.image-modal img {
    max-width: none;
    max-height: none;
    width: auto;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: default;
    user-select: none;
    transition: transform 0.3s ease;
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #FDFDFD;
    font-size: 24px;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.image-modal-zoom-icon {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #FDFDFD;
    font-size: 18px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.image-modal-zoom-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%) translateY(-2px);
}

/* Controles del carousel */
.image-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #FDFDFD;
    font-size: 24px;
    cursor: pointer;
    padding: 16px 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.image-modal-nav.prev {
    left: -70px;
}

.image-modal-nav.next {
    right: -70px;
}

.image-modal-counter {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #FDFDFD;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 500;
}

.image-modal-thumbnails {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    max-width: 540px;
    overflow-x: auto;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.image-modal-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.image-modal-thumbnail:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.image-modal-thumbnail.active {
    border-color: #FDFDFD;
    transform: scale(1.1);
}

.image-modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Responsive para modal de imagen */
@media (max-width: 768px) {
    .image-modal {
        padding: 10px;
    }
    .accordion-header {
        flex-direction: column;
        align-items: start;
    }
    
    .image-modal-content {
        width: 95vw;
        height: 85vh;
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .image-modal-close {
        top: -40px;
        font-size: 20px;
        padding: 10px;
    }
    
    .image-modal-zoom-icon {
        bottom: -50px;
        font-size: 16px;
        padding: 6px 12px;
    }
    
    .image-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
        padding: 12px 8px;
    }
    
    .image-modal-nav.prev {
        left: -55px;
    }
    
    .image-modal-nav.next {
        right: -55px;
    }
    
    .image-modal-counter {
        bottom: -50px;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .image-modal-thumbnails {
        bottom: -31px;
        max-width: 300px;
        gap: 6px;
    }
    
    .image-modal-thumbnail {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .image-modal-nav.prev {
        left: 0;
    }
    
    .image-modal-nav.next {
        right: 0;
    }
    
    .image-modal-thumbnails {
        max-width: 250px;
        bottom: -31px;
    }
    
    .image-modal-thumbnail {
        width: 40px;
        height: 40px;
    }
}

.project-modal-footer {
    align-items: flex-end;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.contact-advisor-btn {
    background: #4168D8;
    color: #FDFDFD;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.contact-advisor-btn:hover {
    background: #3556C7;
    transform: translateY(-2px);
}

.contact-advisor-btn i {
    font-size: 18px;
}

/* Responsive Modal */

/* Project Modal Responsive */
@media (max-width: 1200px) {
    .project-modal-content {
        max-width: 95vw;
        margin: 20px auto;
    }
    
    .project-gallery {
        gap: 20px;
    }
    
    .project-gallery-main img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .project-modal {
        padding: 10px;
    }
    
    .project-modal-content {
        max-width: 100%;
        margin: 10px 0;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .project-modal-header {
        padding: 18px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .project-modal-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .project-modal-location {
        font-size: 18px;
    }
    
    .project-modal-close {
        position: absolute;
        top: 18px;
        right: 18px;
    }
    
    .project-modal-body {
        padding: 15px;
        gap: 20px;
    }
    
    .project-gallery {
        gap: 15px;
    }
    
    .project-gallery-main img {
        height: 350px;
        border-radius: 8px;
    }
    
    .project-gallery-thumbnails {
        max-width: 350px;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .thumbnail {
        width: 55px;
        height: 55px;
        border-radius: 8px;
    }
    
    .thumbnail img {
        border-radius: 8px;
    }
    
    .project-modal-info {
        gap: 18px;
    }
    
    .project-description h3 {
        font-size: 17px;
    }
    
    .project-description p {
        font-size: 15px;
        line-height: 22px;
    }
    
    .availability-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .accordion-item {
        padding: 10px 15px;
    }
    
    .accordion-type {
        font-size: 15px;
    }
    
    .accordion-badge {
        font-size: 13px;
    }
    
    .project-modal-footer {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .btn-cod-custom {
        font-size: 15px !important;
        padding: 14px 18px !important;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .project-modal {
        padding: 15px;
    }
    
    .project-modal-content {
        max-width: 100%;
        margin: 15px 0;
    }
    
    .project-modal-header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .project-modal-title {
        font-size: 26px;
    }
    
    .project-modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .project-gallery {
        flex-direction: column;
        gap: 20px;
    }
    
    .project-gallery-thumbnails {
        flex-direction: row;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        padding: 4px;
        overflow-x: auto;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .project-gallery-thumbnails::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        flex-shrink: 0;
        border: 2px solid transparent;
        transition: border-color 0.3s ease;
    }
    
    .thumbnail.active {
        border-color: #4168D8;
    }
    
    .thumbnail img {
        border-radius: 14px;
    }
    
    .thumbnail-border {
        display: none; /* Ocultamos el borde animado en tablet/mobile */
    }
    
    .project-gallery-main img {
        height: 300px;
    }
    
    .project-modal-info {
        gap: 20px;
    }
    
    .project-description h3 {
        font-size: 18px;
    }
    
    .project-description p {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (max-width: 576px) {
    .project-modal {
        padding: 8px;
    }
    
    .project-modal-content {
        border-radius: 12px;
        margin: 8px 0;
        max-height: 95vh;
        overflow-y: auto;
    }
    
    .project-modal-header {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .project-modal-title {
        font-size: 20px;
        line-height: 26px;
    }
    
    .project-modal-location {
        font-size: 16px;
    }
    
    .project-modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 20px;
        padding: 6px;
    }
    
    .project-modal-body {
        padding: 15px;
        gap: 15px;
    }
    
    .project-gallery {
        gap: 15px;
    }
    
    .project-gallery-thumbnails {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        gap: 6px;
        overflow-x: auto;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        flex-wrap: nowrap;
        padding: 4px;
    }
    
    .project-gallery-thumbnails::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    
    .thumbnail {
        width: 45px;
        height: 45px;
        border-radius: 8px;
        flex-shrink: 0;
        border: 2px solid transparent;
        transition: border-color 0.3s ease;
    }
    
    .thumbnail.active {
        border-color: #4168D8;
    }
    
    .thumbnail img {
        border-radius: 10px;
    }
    
    .thumbnail-border {
        display: none;
    }
    
    .project-gallery-main img {
        height: 200px;
        border-radius: 8px;
    }
    
    .project-modal-info {
        gap: 15px;
    }
    
    .project-description h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .project-description p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .read-more-link {
        font-size: 14px;
    }
    
    .availability-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-top: 15px;
    }
    
    .units-available,
    .price-from {
        font-size: 14px;
    }
    
    .accordion-item {
        padding: 8px 12px;
        margin-bottom: 8px;
    }
    
    .accordion-type {
        font-size: 14px;
    }
    
    .accordion-badge {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .accordion-content-inner li {
        margin-top: 8px;
        font-size: 13px;
    }
    
    .accordion-content-inner img {
        width: 16px;
        height: 16px;
    }
    
    .project-modal-footer {
        padding: 15px;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-cod-custom {
        font-size: 14px !important;
        padding: 12px 16px !important;
        width: 100%;
        justify-content: center;
    }
    
    .btn-cod-custom .arrow-btn-container {
        width: 24px !important;
        height: 24px !important;
    }
    
    .btn-cod-custom .arrow-btn-container img {
        width: 10px !important;
    }
}
.progress-cod-main {
    margin-top: 16px;
    font-size: 16px;
    color: #EBEBEB;
    .progress-value {
        font-weight: 700;
    }
}
.progress-cod {
    position: relative;
    background: #111122;
    border-radius: 50px;
    height: 6px;
    margin-top: 8px;
    span {
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(to left, #4168D8, #6F3BB3);
        display: inline-block;
        height: 100%;
        border-radius: 50px;
    }
}
.title-calculator-private {
    color: #EBEBFE;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
}
.tabs-ambiente {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    margin-bottom: 60px;
}
.tab-ambiente {
    display: flex;
    justify-content: space-between;
    padding: 6px 6px 6px 16px;
    background: #171631;
    border: 1px solid #3D3C5D;
    border-radius: 200px;
    color: #FDFDFD;
    height: 40px;
    width: 100%;
    gap: 10px;
    cursor: pointer;
    .amb {
        text-align: center;
        margin-left: 10px;
    }
}
.tab-ambiente.tab-ambiente--active {
    background: #4168D880;
    border-color: #4168D8;
    .bg-fill--blue {
        background: #4168D8;
        color: #FDFDFD;
    }
}
.bg-fill--blue {
    background: #1E1D33;
    color: #84A1F3;
    border-radius: 200px;
    width: 75px;
    padding: 0 7px;
    font-weight: 700;
}