.custom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #E3E3E3;
    padding: 0;
    height: 400px;
}

.text-card-circle {
    height: 100%;
    width: 50%;
    flex: 1;
    background: #fff;
    padding: 3.5rem;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
    max-width: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.image-side img {
    max-width: 100%;
    object-fit: contain;
    height: auto;
}

.blur-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 500px;
    width: 100%;
    position: relative;
    color: #4B4B4B;
    padding: 2rem;
}

.blur-section .bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    z-index: -1;
}

.blur-section .text-plugin {
    height: 100%;
    width: 50%;
    flex: 1;
    background: #97979786;

    & p, h1, h2, h3, h4, h5, h6 {
        color: #fff !important;
    }

    & hr {
        background-color: #FFFFFF;
    }
}

.blur-section .picture-plugin {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 1;
}


.blur-section .button-plugin {
    position: absolute !important;
    bottom: 0;
    right: 10%;
    padding: 10px 20px;
    background: #078738;
    border: 1px solid #078738;
    border-radius: 8px;
    transition: 0.3s;

    & p {
        color: #FFFFFF !important;
        margin-bottom: 0;
    }
}

.blur-section .button-plugin:hover {
    background: #FFFFFF;

    & p {
        color: #078738 !important;
    }
}

.style-modal {
    max-width: 70%;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 3rem;
    justify-self: center;
    align-content: center;

    & .container-fluid {
        filter: none !important;
    }
}

.two-columns {
    display: flex;
    width: 100%;
    min-height: auto;
}

.col-white {
    flex: 1;
    background-color: #FFFFFF;
    color: #4B4B4B;
    padding: 30px;
}

.col-blue {
    flex: 1;
    background-color: #001265;
    color: #4B4B4B;
    padding: 30px;

    & p, h1, h2, h3, h4, h5, h6 {
        color: #fff !important;
        font-weight: bold;
    }
}

.point-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.circle-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;

    & p {
        margin-bottom: 0;
        color: #001265 !important;
        font-weight: bold;
        font-size: 1.2rem;
    }
}

.point-text {
    & p, h1, h2, h3, h4, h5, h6 {
        color: #ffffff !important;
        font-weight: normal;
        margin-bottom: 0;
    }
}

.section-overlay-img {
    position: relative;
    height: 500px;
    overflow: hidden;
}


.background-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-img {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    gap: 30px;
}

.overlay-text {
    & p, h1, h2, h3, h4, h5, h6 {
        font-size: 1.3rem;
        color: #fff !important;
        font-weight: bold;
    }

}

.cards-container-overlay {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    background: transparent;
}

.section-overlay-card {
    background-color: #fff;
    color: #003399;
    border-radius: 12px;
    width: 220px;
    padding: 35px 35px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.icon-circle-overlay {
    width: 120px;
    height: 120px;
    background-color: #003399;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;

    & i, span {
        font-size: 4rem;
        color: #fff;
    }
}

.section-overlay-card:hover {
    box-shadow: 0 0 8px #fff;
    border: 1px solid #001265;
}

.display-overlay-card {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 25px;
    gap: 30px;
}


/***************************/

.div-custom-overlay-img {
    position: relative;
    overflow: hidden;
}

.div-background-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.div-overlay-img {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #fff;
    gap: 30px;
}

.container-card-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cards-container-transparent {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 25px;
    gap: 20px;
}

.cards-container-transparent-separator {
    background-color: #ffffffc2;
    border-radius: 8px;
    width: 350px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    padding: 20px;

    & h1, h2, h3, h4, h5, h6 {
        line-height: 1.1 !important;
        margin-bottom: 0;
    }

    & p{
        margin-bottom: 0;
    }
}

.div-display-transparent {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.card-info {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #003399;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;

    & span, i {
        color: #fff !important;
        font-size: 1.5rem;
    }
}

.banner-total {
  background-color: #ffffffc2;
  border: 10px double #003399;
  padding: 15px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  font-style: italic;
  color: #003399;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  border-radius: 4px;
  width: fit-content;
  margin: 20px auto;

    & p, h1, h2, h3, h4, h5, h6 {
        margin-bottom:0
    }
}