/* Content Blocks 2026 Styles */
#info-blocks-2026 {
    max-width: 80%;
    margin: 0 auto;
    font-family: Open Sans, sans-serif;
    color: #333;
}

.info-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 100px;
}

.info-block.reverse {
    direction: rtl;
}

/* Text Content Area */
.info-text-content {
    flex: 0 0 42%;
    max-width: 42%;
}

.reverse-text {
    direction: ltr;
}

.reverse-image {
    direction: rtl;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    color: #3BB2FB;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.info-badge svg {
    margin-right: 8px;
}

.info-title {
    font-size: 32px;
    font-weight: 800;
    color: #0A2540;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 14px;
}

.info-title .underline {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.info-title .underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 3px;
    background-color: #007BFF;
    z-index: -1;
}

.info-description {
    font-size: 14px;
    line-height: 1.75;
    color: #5A6B7C;
    margin-bottom: 24px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 14px;
    color: #425466;
    line-height: 1.5;
}

.info-list li .check-circle {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background-color: #3BB2FB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    margin-top: 1px;
}

.info-link {
    display: inline-flex;
    align-items: center;
    color: #3BB2FB;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.info-link:hover {
    color: #2b9ddb;
}

.info-link .arrow {
    margin-left: 6px;
    font-size: 18px;
    transition: transform 0.2s ease;
    height: 15px;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-bottom: 20px;
}

.info-link:hover .arrow {
    transform: translateX(4px);
}

/* Image Area */
.info-image-content {
    flex: 0 0 52%;
    max-width: 52%;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.info-image-wrapper {
    position: relative;
    width: 90%;
    /* Slight size adjustment so it's not overpowering */
    max-width: 100%;
}

.info-main-image {
    width: 100%;
    height: auto;
    /* This prevents the distortion/stretching! */
    border-radius: 8px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Floating Badges over images */
.floating-badge {
    position: absolute;
    background-color: white;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    white-space: nowrap;
    z-index: 5;
    direction: ltr;
}

.floating-badge.bottom-left {
    bottom: -20px;
    left: 30px;
}

.floating-badge.bottom-center {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.floating-badge .green-dot {
    width: 10px;
    height: 10px;
    background-color: #00E676;
    /* Bright green dot */
    border-radius: 50%;
    margin-right: 12px;
}

.text-blue {
    color: #3BB2FB;
}

/* Document Flow Badge Styling */
.badge-flow {
    position: absolute;
    background-color: #FFFFFF;
    border: 1px solid #00AAF8;
    border-radius: 12px;
    padding: 8px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    white-space: nowrap;
    direction: ltr;
    /* Fija la dirección para que no se voltee en modo espejo (RTL) */
}

.badge-flow.bottom-center {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.badge-flow .flow-text {
    font-size: 16px;
    color: #5A6B7C;
    font-weight: 700;
}

.badge-flow .flow-chevron {
    width: 16px;
    height: 16px;
    color: #00AAF8;
}

.badge-flow .flow-icon-box {
    background-color: #EAF6FE;
    border-radius: 8px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1368px) {
    #info-blocks-2026 {
        max-width: 1000px;
    }

    .info-main-image {
        width: 100%;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    #info-blocks-2026 {
        padding: 60px 15%;
    }

    .info-block,
    .info-block.reverse {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
        text-align: left;
    }

    .info-text-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .info-image-wrapper {
        max-width: 420px;
        margin: 0;
    }

    /* If centering is needed on mobile:
  .info-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .info-list li {
    text-align: left;
  }
  */

    .info-title {
        font-size: 32px;
    }

    .floating-badge {
        padding: 10px 18px;
        font-size: 13px;
        white-space: normal;
        text-align: left;
    }

    .floating-badge.bottom-left,
    .floating-badge.bottom-center {
        position: relative;
        left: 0;
        bottom: 0;
        transform: none;
        margin-top: 15px;
        justify-content: flex-start;
        width: fit-content;
    }
}

@media (max-width: 768px) {
    .info-image-content {
        display: none;
    }

    .info-block {
        margin-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .info-title {
        font-size: 28px;
    }

    #info-blocks-2026 {
        padding: 40px 5%;
    }
}