/* LISTA CONSULTATION
================================================== */

.consultation ul{

    margin-top: 30px;

    padding: 0;
}

.consultation ul li{

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 18px;

    color: #555555;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.6;

    transition: all .3s ease;
}

.consultation ul li i{

    width: 34px;
    height: 34px;

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

    border-radius: 50%;

    background: rgba(233, 30, 99, .12);

    color: #E91E63;

    font-size: 14px;

    flex-shrink: 0;
}

.consultation ul li:hover{

    color: #1F2937;

    transform: translateX(5px);
}

.consultation ul li:hover i{

    background: #E91E63;

    color: #ffffff;
}


.footer--bar .container{
    width: 100%;
    margin: 0;
    padding: 0;
}

/* FOOTER TITLES ================================= */

.footer--widget-title h5{

    position: relative;

    color: #FFFFFF;

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 35px;
}

.footer--widget-title h5::after{

    content: '';

    position: absolute;

    left: 0;
    bottom: -12px;

    width: 50px;
    height: 3px;

    background: #E91E63;
}
/* SOCIAL ICONS ================================= */

.social-icons{

    display: flex;

    gap: 12px;

    margin-top: 25px;
}

.social-icons a{

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.15);

    color: #FFFFFF;

    transition: .3s;
}

.social-icons a:hover{

    background: #E91E63;

    border-color: #E91E63;

    transform: translateY(-3px);
}
/* FOOTER LINKS ================================= */

.footer--widget-content ul{

    list-style: none;

    padding: 0;

    margin: 0;
}

.footer--widget-content ul li{

    margin-bottom: 12px;
}

.footer--widget-content ul li a{

    color: rgba(255,255,255,.70);

    transition: .3s;
}

.footer--widget-content ul li a:hover{

    color: #E91E63;

    padding-left: 6px;
}
/* CONTACTS ================================= */

.widget-contact p{

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: rgba(255,255,255,.80);
}

.widget-contact i{

    color: #E91E63;

    width: 18px;

    text-align: center;
}

/* FOOTER ================================= */

.footer-widget{

    background:
        linear-gradient(
            135deg,
            #16213E 0%,
            #1F2937 100%
        );

    padding: 90px 0 70px;
}
.footer--bar{

    background: #111827;

    border-top: 1px solid rgba(255,255,255,.08);

    padding: 25px 0;
}

.footer--copyright{

    color: rgba(255,255,255,.65);

    font-size: 14px;
}

.footer-logo{

    max-height: 80px;

    margin-bottom: 25px;
}

/* SERVICE ACTIONS
======================================= */

.service-actions{

    display:flex;

    gap:10px;

    margin-top:20px;

    flex-wrap:wrap;
}

.service-whatsapp{

    display:flex;

    align-items:center;

    gap:8px;

    padding:8px 16px;

    border-radius:30px;

    background:#25D366;

    color:#fff;

    font-size:13px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;
}

.service-whatsapp:hover{

    color:#fff;

    transform:translateY(-2px);
}

.service-more{

    border:none;

    background:transparent;

    color:#E91E63;

    font-weight:600;

    padding:8px 0;

    cursor:pointer;
}

.service-more:hover{

    text-decoration:underline;
}

/* ==================================================
   SERVICE MODAL
================================================== */

.service-modal{

    position: fixed;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0,0,0,.75);

    backdrop-filter: blur(4px);

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;

    z-index: 99999;
}

.service-modal.active{

    opacity: 1;
    visibility: visible;
}

/* ==================================================
   MODAL BOX
================================================== */

.service-modal-content{

    position: relative;

    width: 100%;
    max-width: 950px;

    max-height: 90vh;

    overflow-y: auto;

    background: #ffffff;

    border-radius: 20px;

    box-shadow: 0 30px 80px rgba(0,0,0,.25);

    transform: scale(.95);

    transition: .3s ease;
}

.service-modal.active .service-modal-content{

    transform: scale(1);
}

/* ==================================================
   CLOSE BUTTON
================================================== */

.modal-close{

    position: absolute;

    top: 20px;
    right: 20px;

    width: 46px;
    height: 46px;

    border: none;

    border-radius: 50%;

    background: #ffffff;

    color: #1F2937;

    cursor: pointer;

    box-shadow: 0 5px 20px rgba(0,0,0,.15);

    transition: .3s ease;

    z-index: 10;
}

.modal-close:hover{

    background: #E91E63;

    color: #ffffff;
}

/* ==================================================
   IMAGE
================================================== */

.service-popup-image{

    position: relative;

    height: 320px;

    overflow: hidden;
}

.service-popup-image img{

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

/* ==================================================
   CONTENT
================================================== */

.service-popup-content{

    padding: 40px;
}

.service-popup-badge{

    display: inline-block;

    padding: 8px 16px;

    margin-bottom: 20px;

    border-radius: 30px;

    background: rgba(233,30,99,.10);

    color: #E91E63;

    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .5px;
}

.service-popup-content h2{

    margin-bottom: 20px;

    color: #1F2937;

    font-size: 34px;

    font-weight: 700;
}

.service-popup-content p{

    color: #6B7280;

    font-size: 16px;

    line-height: 30px;

    margin-bottom: 30px;
}

/* ==================================================
   ACTIONS
================================================== */

.service-popup-actions{

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.btn-whatsapp{

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 25px;

    border-radius: 50px;

    background: #25D366;

    color: #ffffff;

    font-weight: 600;

    transition: .3s ease;
}

.btn-whatsapp:hover{

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(37,211,102,.30);
}

.btn-outline-service{

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 25px;

    border-radius: 50px;

    border: 2px solid #E91E63;

    color: #E91E63;

    font-weight: 600;

    transition: .3s ease;
}

.btn-outline-service:hover{

    background: #E91E63;

    color: #ffffff;
}

/* ==================================================
   LOADING
================================================== */

.service-loading{

    padding: 100px 40px;

    text-align: center;
}

.service-loading p{

    margin-top: 20px;

    color: #6B7280;
}

.spinner{

    width: 50px;
    height: 50px;

    margin: 0 auto;

    border: 4px solid #f3f4f6;

    border-top: 4px solid #E91E63;

    border-radius: 50%;

    animation: serviceSpin 1s linear infinite;
}

@keyframes serviceSpin{

    from{

        transform: rotate(0deg);
    }

    to{

        transform: rotate(360deg);
    }
}

/* ==================================================
   ERROR
================================================== */

.service-error{

    padding: 100px 40px;

    text-align: center;
}

.service-error i{

    font-size: 60px;

    color: #E91E63;

    margin-bottom: 20px;
}

.service-error h3{

    color: #1F2937;

    margin-bottom: 10px;
}

.service-error p{

    color: #6B7280;
}

/* ==================================================
   SCROLLBAR
================================================== */

.service-modal-content::-webkit-scrollbar{

    width: 8px;
}

.service-modal-content::-webkit-scrollbar-thumb{

    background: #E91E63;

    border-radius: 20px;
}

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

@media (max-width: 767px){

    .service-modal{

        padding: 15px;
    }

    .service-popup-image{

        height: 220px;
    }

    .service-popup-content{

        padding: 25px;
    }

    .service-popup-content h2{

        font-size: 26px;
    }

    .service-popup-content p{

        font-size: 15px;

        line-height: 28px;
    }

    .service-popup-actions{

        flex-direction: column;
    }

    .btn-whatsapp,
    .btn-outline-service{

        width: 100%;

        justify-content: center;
    }

}

.footer--copyright a{

    color: #E91E63;

    font-weight: 600;

    transition: .3s;
}

.footer--copyright a:hover{

    color: #ffffff;

    text-decoration: none;
}

/* ==================================================
BLOG DETAILS
================================================== */

.blog-single{

padding: 100px 0;

}

.blog-single .blog-entry{

background: #ffffff;

padding: 50px;

border-radius: 10px;

box-shadow: 0 10px 40px rgba(0,0,0,.05);

}

/* ==================================================
META
================================================== */

.blog-single .entry--meta{

margin-bottom: 25px;

}

.blog-single .entry--meta span{

display: inline-block;

margin-right: 25px;

color: #999999;

font-size: 14px;

}

.blog-single .entry--meta i{

color: #E91E63;

margin-right: 8px;

}

/* ==================================================
TITLE
================================================== */

.blog-single .entry--title{

margin-bottom: 35px;

}

.blog-single .entry--title h2{

color: #222222;

font-size: 42px;

line-height: 1.3;

margin: 0;

}

/* ==================================================
CONTENT
================================================== */

.blog-single .entry--content p{

color: #666666;

font-size: 17px;

line-height: 32px;

margin-bottom: 25px;

}

.blog-single .entry--content h3,
.blog-single .entry--content h4{

color: #222222;

margin-top: 40px;
margin-bottom: 20px;

}

.blog-single .entry--content h4{

font-size: 26px;

}

/* ==================================================
LISTS
================================================== */

.blog-single .entry--content ul{

    margin: 30px 0;

    padding: 0;

    list-style: none;
}

.blog-single .entry--content ul li{

    position: relative;

    padding-left: 35px;

    margin-bottom: 18px;

    color: #555555;

    font-size: 17px;

    line-height: 28px;
}

.blog-single .entry--content ul li:before{

    content: "\f058";

    font-family: "Font Awesome 6 Pro";

    font-weight: 900;

    position: absolute;

    left: 0;

    top: 2px;

    color: #E91E63;

    font-size: 18px;
}

/* ==================================================
BLOCKQUOTE
================================================== */

.blog-single blockquote{

position: relative;

margin: 40px 0;

padding: 35px 40px;

border-left: 4px solid #E91E63;

background: #fafafa;

color: #333333;

font-size: 22px;

font-style: italic;

line-height: 38px;

}

.blog-single blockquote{

content: "\f10d";

font-family: "Font Awesome 6 Pro";

font-weight: 900;

display: block;

margin-bottom: 15px;

color: #E91E63;

font-size: 28px;

}

/* ==================================================
IMAGE
================================================== */

.blog-single .entry--image{

margin-bottom: 40px;

}

.blog-single .entry--image img{

width: 100%;

border-radius: 10px;

}

/* ==================================================
SHARE
================================================== */

.blog-share{

margin-top: 50px;

padding-top: 30px;

border-top: 1px solid #eeeeee;

}

.blog-share span{

font-weight: 700;

color: #222222;

margin-right: 15px;

}

.blog-share a{

display: inline-flex;

align-items: center;
justify-content: center;

width: 40px;
height: 40px;

margin-right: 8px;

border-radius: 50%;

background: #f5f5f5;

color: #666666;

transition: .3s;

}

.blog-share a{

background: #E91E63;

color: #ffffff;

}

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

@media(max-width:767px){

.blog-single{

    padding: 60px 0;
}

.blog-single .blog-entry{

    padding: 30px 25px;
}

.blog-single .entry--title h2{

    font-size: 30px;
}

.blog-single .entry--content p{

    font-size: 16px;

    line-height: 30px;
}

.blog-single blockquote{

    padding: 25px;

    font-size: 18px;

    line-height: 32px;
}

}

/* ==================================================
   PAGE TITLE
================================================== */

.page-title{

    position: relative;

    min-height: 450px;

    display: flex;

    align-items: center;

    overflow: hidden;
}

/* ==================================================
   BACKGROUND IMAGE
================================================== */

.page-title .bg-section{

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 1;
}

.page-title .bg-section img{

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

/* ==================================================
   OVERLAY
================================================== */

.page-title:before{

    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(17, 24, 39, .75);

    z-index: 2;
}

/* ==================================================
   CONTENT
================================================== */

.page-title .container{

    position: relative;

    z-index: 3;
}

.page-title .title--heading h1{

    color: #ffffff;

    font-size: 56px;

    line-height: 1.2;

    font-weight: 700;

    margin-bottom: 20px;
}

.page-title .breadcrumb{

    background: transparent;

    margin: 0;

    padding: 0;
}

.page-title .breadcrumb li,
.page-title .breadcrumb li a{

    color: rgba(255,255,255,.85);
}

.page-title .breadcrumb>.active{

    color: #E91E63;
}

.page-title .breadcrumb>li+li:before{

    color: rgba(255,255,255,.5);
}

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

@media(max-width:767px){

    .page-title{

        min-height: 320px;
    }

    .page-title .title--heading h1{

        font-size: 34px;
    }

}
