/*==============================================
    Banner One
===============================================*/
.banner-one {
    position: relative;
    display: block;
    background: linear-gradient(180deg, #265f9f 0%, #3a6682 100%);
    padding: 120px 0 0;
    overflow: hidden;
    z-index: 1;
}

.banner-one__left {
    position: relative;
    display: block;
    margin-top: 124px;
    margin-bottom: 70px;
}

.banner-one__sub-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    border: 1px solid var(--careon-base);
    padding: 3px 12px 2px;
    border-radius: 18px;
    color: var(--careon-white);
    margin-bottom: 20px;
}

.banner-one__title {
    font-size: 60px;
    font-weight: 800;
   color: var(--color2);
    line-height: 1.1em;
    margin-top: 23px;
    margin-bottom: 19px;
}

.banner-one__title span {
    color: rgba(var(--careon-black-rgb), .50);
}

.banner-one__title .split-line {
    text-transform: none;
}

.banner-one__text {
    margin-bottom: 31px;
    color: var(--careon-white);
}

.banner-one__call {
    position: relative;
    display: flex;
    align-items: center;
}

.banner-one__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    color: var(--careon-base);
    font-size: 24px;
    border: 1px solid var(--color2);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-one__call-icon:hover {
    background-color: var(--careon-base);
    color: var(--careon-white);
    border: 1px solid var(--careon-base);
}

.banner-one__call-content {
    position: relative;
    display: block;
    margin-left: 15px;
}

.banner-one__call-sub-title {
    font-size: 16px;
    color: var(--careon-white);
    line-height: 16px;
    text-transform: capitalize;
}

.banner-one__call-number {
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    margin-top: 10px;
}

.banner-one__call-number a {
    color: var(--color2);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-one__call-number a:hover {
    color: var(--careon-base);
}

.banner-one__right {
    position: relative;
    display: block;
    margin-left: 90px;
    margin-top: 70px;
}

.banner-one__img-box {
    position: relative;
    display: block;
}

.banner-one__img {
    position: relative;
    display: block;
    z-index: 1;
}

.banner-one__img img {
    width: 100%;
    animation: topBottom 3s ease-in-out infinite;
}

.banner-one__img-shape-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.banner-one__img-shape-1 img {
    width: auto;
}

.banner-one__find-doctor {
    position: absolute;
    bottom: 35px;
    left: -240px;
    background-color: var(--careon-white);
    padding: 36px 30px 30px;
    border-radius: var(--careon-bdr-radius);
    border: 1px solid var(--careon-bdr-color);
    max-width: 292px;
    width: 100%;
    z-index: 2;
}

.banner-one__find-doctor-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 35px;
}

.banner-one__find-doctor-list {
    position: relative;
    display: block;
}

.banner-one__find-doctor-list li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.banner-one__find-doctor-list li+li {
    margin-top: 20px;
}

.banner-one__find-doctor-img {
    position: relative;
    display: block;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.banner-one__find-doctor-img img {
    width: 100%;
    border-radius: 50%;
}

.banner-one__find-doctor-name {
    position: relative;
    display: block;
    flex: 1;
}

.banner-one__find-doctor-name h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.banner-one__find-doctor-name h4 a {
    color: var(--careon-black);
}

.banner-one__find-doctor-name h4 a:hover {
    color: var(--careon-base);
}


/*==============================================
    Banner Two
===============================================*/

.banner-two {
    position: relative;
    display: block;
    margin: 0 20px;
    padding: 148px 0 56px;
    overflow: hidden;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 1;
    /* Capa oscura a la izquierda mejora lectura del texto; gradiente alineado a la marca */
    background:
        linear-gradient(100deg, rgba(5, 35, 62, 0.78) 0%, rgba(5, 35, 62, 0.42) 38%, transparent 62%),
        linear-gradient(135deg, #082f55 0%, #1a5080 32%, #265f9f 58%, #0f7a87 88%, #0d9dac 100%);
    box-shadow: 0 24px 48px rgba(11, 61, 110, 0.22);
}

/* Círculos decorativos de fondo */
.banner-two::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(13, 157, 172, 0.18);
    z-index: 0;
}

.banner-two::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    z-index: 0;
}

.banner-two > * {
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .banner-two .container {
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media (max-width: 991px) {
    .banner-two__left {
        max-width: none;
        margin-right: 0;
    }
}

.banner-two__shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 58.5%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .08;
    z-index: 1;
}

.banner-two__left {
    position: relative;
    display: block;
    max-width: 36rem;
    margin-right: clamp(12px, 4vw, 56px);
    margin-top: 60px;
    margin-bottom: 40px;
    color: #fff;
}

.banner-two__review-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.banner-two__review-img-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.banner-two__review-img-box li {
    position: relative;
    display: block;
}

.banner-two__review-img-box li+li {
    margin-left: -25px;
}

.banner-two__review-img-box li:last-child {
    z-index: 1;
}

.banner-two__review-img {
    position: relative;
    display: block;
    overflow: hidden;
    width: 50px;
    border-radius: 50%;
    z-index: 1;
}

.banner-two__review-img img {
    width: 100%;
    border: 2px solid var(--careon-white);
    border-radius: 50%;
}

.banner-two__review-count-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--careon-black);
    border: 2px solid var(--careon-white);
    border-radius: 50%;
    height: 50px;
    width: 50px;
}

.banner-two__review-count {
    position: relative;
    display: flex;
    align-items: center;
}

.banner-two__review-count h3 {
    font-size: 18px;
    color: var(--careon-white);
    font-weight: 700;
    line-height: 18px !important;
    font-family: var(--careon-font) !important;
}

.banner-two__review-count span {
    font-size: 18px;
    color: var(--careon-white);
    font-weight: 700;
    line-height: 18px;
    font-family: var(--careon-font);
}

.banner-two__review-content-box {
    position: relative;
    display: block;
}

.banner-two__review-content-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 23px;
}

.banner-two__review-rating-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.banner-two__review-rating-box p {
    font-size: 18px;
    color: var(--careon-black);
    font-weight: 700;
    line-height: 18px;
}

.banner-two__review-start {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.banner-two__review-start span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--careon-primary);
}

.banner-two__title {
    font-size: clamp(2rem, 2.8vw + 1.1rem, 3.35rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    margin-top: 18px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}

.banner-two__title span {
    font-weight: 300;
}

.banner-two__title .split-line {
    text-transform: none;
}

.banner-two__text {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(15px, 1.1vw + 14px, 18px);
    line-height: 1.72;
    font-weight: 400;
}

.banner-two__btn-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.banner-two__btn-box .thm-btn {
    background-color: #ffffff;
    color: var(--color1) !important;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    border-radius: 999px;
    padding: 15px 28px;
}

.banner-two__btn-box .thm-btn::before,
.banner-two__btn-box .thm-btn::after {
    background-color: var(--color2);
}

.banner-two__btn-box .thm-btn:hover {
    color: #fff !important;
}

/* WhatsApp: estilo secundario “cristal”, coherente con el hero */
.banner-two__btn-box .thm-btn2 {
    background:var(--careon-bdr-color-waap);
    color: #ffffff !important;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 2px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    padding: 15px 28px;
    backdrop-filter: blur(8px);
}

.banner-two__btn-box .thm-btn2 .fa-whatsapp {
    color: #b8f5d0;
}

.banner-two__btn-box .thm-btn2::before,
.banner-two__btn-box .thm-btn2::after {
    background-color: rgba(13, 157, 172, 0.9);
}

.banner-two__btn-box .thm-btn2:hover {
    border-color: rgba(255, 255, 255, 0.75);
    color: #ffffff !important;
}

.banner-two__counter-box {
    position: relative;
    display: block;
    border-top: 1px solid rgba(var(--careon-black-rgb), .20);
    padding-top: 20px;
    margin-top: 25px;
}

.banner-two__counter {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.banner-two__counter li {
    position: relative;
    display: block;
}

.banner-two__counter-single {
    position: relative;
    display: block;
}

.banner-two__counter-count {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1px;
}

.banner-two__counter-count h3 {
    font-size: 32px;
    color: var(--careon-black);
    font-weight: 800;
    line-height: 32px !important;
    font-family: var(--careon-font) !important;
}

.banner-two__counter-count span {
    font-size: 32px;
    color: var(--careon-black);
    font-weight: 800;
    line-height: 32px;
    font-family: var(--careon-font);
}

.banner-two__counter-text {
    font-size: 15px;
    color: var(--careon-gray);
    font-weight: 400;
}

.banner-two__right {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-left: 4px;
    padding-top: 30px;
}

.banner-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    animation: topBottom 5s ease-in-out infinite;
    z-index: 1;
    border-radius: 20px 20px 0 0;
    filter: drop-shadow(0 18px 48px rgba(13, 157, 172, 0.28));
}

.banner-two__img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 61, 110, 0.35) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
}

.banner-two__img > img {
    width: 100%;
    max-width: 480px;
    display: block;
    object-fit: cover;
    object-position: top center;
}
.banner-two__sub-title {
    font-size: clamp(14px, 0.8vw + 13px, 16px);
    font-weight: 600;
    line-height: 1.45;
    padding: 8px 18px 8px 16px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 14px;
    display: inline-block;
    max-width: 100%;
    backdrop-filter: blur(6px);
    letter-spacing: 0.02em;
}

.banner-two__sub-title .fa-eye {
    opacity: 0.9;
    margin-right: 2px;
}

.banner-two__call {
    position: absolute;
    display: flex;
    align-items: center;
    padding: 15px 22px 15px;
    background-color: var(--careon-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    bottom: 10px;
    right: 10px;
}

.banner-two__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}

.banner-two__call-icon img {
    width: auto;
}

.banner-two__call-number {
    margin-left: 20px;
}

.banner-two__call-number p {
    font-size: 16px;
    margin: 0;
    line-height: 16px;
    color: var(--careon-gray);
    font-weight: 400;
    margin-bottom: 11px;
}

.banner-two__call-number h5 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
}

.banner-two__call-number h5 a {
    color: var(--careon-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-two__call-number a:hover {
    color: var(--careon-base);
}

























/*==============================================
    End
===============================================*/