/* ===================================
    Crafto - Medical
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
/* variable */
:root {
    --base-color: #18bcc7;
    --alt-font: 'Manrope', sans-serif;
    --primary-font: 'Manrope', sans-serif;
    --dark-gray: #1d1d1b;
    --red: #f45959;
    --medium-light-gray:#b4b4b4;
    --medium-gray:#848587;
}

/* Cores Bluefisa */
.bg-bluefisa-light {
    background-color: #f9f9f9;
}
.bg-bluefisa-dark {
    background-color: var(--dark-gray);
}
.text-bluefisa-dark {
    color: var(--dark-gray);
}
.border-bluefisa-dark {
    border-color: var(--dark-gray) !important;
}

.bg-hero {
        background: linear-gradient(rgb(249, 249, 249) 90%, rgb(29, 29, 28) 10%);
}

/* Animation for WhatsApp button */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Z-index for fixed elements */
.z-index-999 {
    z-index: 999;
}
/* box layout */
.box-layout {
    padding: 0 100px;
}
body{
    font-size: 17px;
    line-height: 30px;
}
/* header */
.navbar .navbar-nav .nav-link {
    font-weight: 700;
    font-size: 18px;
    padding: 10px 22px;
}
header .container-fluid {
    padding-left: 85px;
    padding-right: 85px;
}
.sticky-wrap.shadow-in {
    left: 31px;
}
header .navbar-brand img {
    max-height:40px;
    width: 190px !important;
}
/* bg color */
.bg-light-turquoise-blue {
    background-color: #edf9fa;
}
.bg-light-sea-green-transparent {
    background-color: rgba(22, 193, 204,0.8);
}
.bg-light-sea-green-transparent-light {
    background-color: rgba(22, 193, 204,0.15);
}
/* border color */
.border-color-transparent-dark-gray {
    border-color: rgba(39, 47, 48, 0.1) !important;
}
.border-color-red {
    border-color: var(--red) !important;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 25px;
}
/* btn */
.btn {
    text-transform: inherit;
    font-weight: 900;
    letter-spacing: 0px;
}
.btn.btn-extra-large {
    font-size: 18px;
}
.btn.btn-large {
    font-size:17px;
}
.btn.btn-medium {
    font-size: 16px;
}
.btn.btn-small {
    font-size: 15px;
}
.btn.btn-very-small {
    font-size: 14px;
}
.btn.btn-dark-gray:hover,
.btn.btn-dark-gray:active,
.btn.btn-transparent-light-gray:hover,
.btn.btn-transparent-light-gray:active,
.btn.btn-box-shadow.btn-base-color:hover,
.btn.btn-box-shadow.btn-base-color:active{
    background-color: var(--base-color);
    border-color: var(--base-color);
    color: var(--white);
}
.btn.btn-base-color:hover {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
    color: var(--white);
}
/* page title */
.page-title-extra-large h2 {
    font-size: 17px;
    line-height: 20px;
    letter-spacing: 0px;
}
/* social media icon */
.social-icon-style-02 .small-icon li {
    margin: 0;
}
/* outside box right */ 
.outside-box-right-2 {
    margin-right: -2vw;
}
/* tab style 01 */
.tab-style-01 .nav-tabs .nav-link.show,
.tab-style-01 .nav-tabs .nav-link.active,
.tab-style-01 .nav-tabs .nav-link:hover {
    background-color: var(--base-color);
    color: var(--white);
}
.tab-style-01 .nav-tabs .nav-link {
    padding: 7px 29px;
    color: var(--dark-gray);
}
.tab-style-01 .nav-tabs > li.nav-item {
    padding: 0 13px;
}
/* time table */ 
.time-table-box .hover-detail {
    padding: 25px 30px;
}
/* accordion style 05 */
.accordion-style-05 .accordion-item {
    padding: 25px 35px 27px 75px;
}
/* footer */
footer .nav-link {
    color: var(--white);
}
.elements-social .light li a:hover {
    color: var(--base-color) !important;
}
footer .footer-logo img {
    width: 240px;
}
footer .elements-social ul li:last-child {
    margin-right: 0;
}
/* media query responsive */
@media (min-width: 768px){
    .page-title-extra-large h1 {
        font-size: 3.8rem;
        line-height: 3.8rem;
    }
}
@media (max-width: 1600px){
    .box-layout {
        padding: 0 60px;
    }
    .sticky-wrap.shadow-in {
        left: 10px;
    }
    header .container-fluid {
        padding-left: 45px;
        padding-right: 45px;
    }
}
@media (max-width: 1400px){
    footer .nav-link {
        padding-left: .75rem;
        padding-right: .75rem;
    }
}
@media (max-width: 1199px){
    .box-layout {
        padding: 0 0;
    }
    .navbar .navbar-nav .nav-link {
        padding-left: 18px;
        padding-right: 18px;
    }
    header .btn.btn-switch-text.btn-small > span {
        padding: 8px 10px;
    }

    .tab-style-01 .nav-tabs > li.nav-item {
        padding: 0 8px;
    }
    header .navbar [class*=col-] {
        padding: 0px;
    }
    .time-table-box {
        padding-left: 5px;
        padding-right: 5px;
    }
}
@media (max-width: 991px){
    .tab-style-01 .nav-tabs .nav-link {
        padding: 5px 25px;
    }

    .time-schedule-scroll {
        overflow-x: auto;
        overflow-y: hidden;
    }

    .time-schedule-scroll .time-schedule-min-width {
        min-width: 1050px;
    }
    .tab-style-01 .nav-tabs > li.nav-item {
        padding: 0 4px;
    }
    header .navbar [class*=col-] {
        padding: 0 15px;
    }
}
@media (max-width: 767px){
    .accordion-style-05 .accordion-item .number {
        top: 13px;
    }
}


.policy-content h2 { color: var(--dark-gray); font-size: 24px; margin-top: 24px; margin-bottom: 20px; line-height: 1.3; font-weight: 700;  }
.policy-content h3 { color: var(--dark-gray); font-size: 20px;  margin-top: 24px; margin-bottom: 15px; line-height: 1.3; font-weight: 700; }
.policy-content p {color: var(--medium-gray);}  
.policy-content table { border-collapse: collapse; width: 100%; margin: 20px 0; }
.policy-content table th, .policy-content table  td {  color: var(--dark-gray); border: 1px solid #ddd; padding: 12px; text-align: left; }
.policy-content table th {  color: var(--dark-gray); background-color: #f8f9fa; font-weight: 600; color: #0ca0aa !important; }
.policy-content table tr:nth-child(even) {  color: var(--dark-gray); background-color: #f8f9fa; }

/* ===================================
    Hero Carousel Styles
====================================== */
.hero-carousel {
    height: 100vh;
    min-height: 600px;
}

.carousel-wrapper {
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.carousel-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.carousel-nav {
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.1);
}

.carousel-nav:focus {
    outline: none;
    box-shadow: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-carousel {
        height: 80vh;
        min-height: 500px;
    }
    
    .carousel-nav {
        width: 40px !important;
        height: 40px !important;
    }
    
    .carousel-nav i {
        font-size: 16px !important;
    }
}

@media (max-width: 767px) {
    .hero-carousel {
        height: 70vh;
        min-height: 450px;
    }
    
    .carousel-nav {
        width: 35px !important;
        height: 35px !important;
    }
    
    .carousel-nav i {
        font-size: 14px !important;
    }
}

/* ===================================
    Process Section Styles
====================================== */
#processo {
    min-height: 700px;
}

#processo .process-icon-wrapper {
    position: relative;
}

#processo .process-steps > div:not(:last-child) .process-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Ensure image touches bottom */
#processo .col-lg-5 img {
    margin-bottom: -1px;
}

@media (max-width: 991px) {
    #processo {
        min-height: auto;
    }
    
    #processo .col-lg-7,
    #processo .col-lg-5 {
        padding: 40px 15px !important;
        padding-bottom: 0 !important;
    }
    
    #processo h1.fs-55 {
        font-size: 35px !important;
    }
    
    #processo h2.fs-28 {
        font-size: 24px !important;
    }
    
    #processo h3.fs-24 {
        font-size: 20px !important;
    }
    
    #processo .process-icon-wrapper div {
        width: 50px !important;
        height: 50px !important;
    }
    
    #processo .process-icon-wrapper i {
        font-size: 20px !important;
    }
    
    /* Stack image below content on mobile */
    #processo .row {
        flex-direction: column-reverse;
    }
}

.btn.with-rounded>span {
    right: 16px;
}

/* ===================================
    Map Placeholder Styles
====================================== */
.map-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.map-placeholder:hover i {
    transform: scale(1.1);
    color: var(--base-color) !important;
}

.map-placeholder i {
    transition: all 0.3s ease;
}

.cursor-pointer {
    cursor: pointer;
}


/* ***** Footer Credit Styles ***** */
.footer-credit {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-top: 1rem;
}

.footer-credit-link {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 700;
}

.footer-credit-link:hover {
    color: #7B00F6;
    text-decoration: none;
}

.footer-credit-link:hover .footer-credit-logo path {
    fill: #ffffff;
}

.footer-credit-text {
    white-space: nowrap;
    position: relative;
}

.footer-credit-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #7B00F6;
    transition: width 0.3s ease;
}

.footer-credit-link:hover .footer-credit-text::after {
    width: 100%;
}

.footer-credit-logo {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.footer-credit-link:hover .footer-credit-logo {
    transform: scale(1.025);
}

/* Responsive adjustments for footer */
@media (max-width: 767px) {
    
    .footer-credit {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-credit-text {
        font-size: 18px;
    }
}

.bg-dark {
    background-color: rgb(20 20 19) !important;
}
