/* ============================================
   VARIABLES
   ============================================ */
   :root {
    --primary-blue: #0039A6;
    --secondary-blue: #1E5BC6;
    --light-blue: #E8F0FF;
    --accent-blue: #003AFF;
    --dark-blue: #002B7F;
    --gray: #515874;
    --font-headings: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
body {
    font-family: var(--font-body);
    overflow-x: hidden;
    color: var(--gray);
}

h1, h2, h3, h4, h5, h6,
.btn,
.navbar-nav .nav-link {
    font-family: var(--font-headings);
}
.text-primary {
    color: var(--accent-blue) !important;
}
.banner-2__shape{
    position: absolute;
    content: "";
    width: 1522.97px;
    height: 1356.07px;
    background: #004de5a3;
    bottom: -1047px;
    left: -0px;
    z-index: -1;
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
    border-radius: 500px;
    -webkit-filter: blur(217px);
    filter: blur(217px);
}
.banner-2-hero {
    background: #0c1a37;
    color: white;
    padding: 120px 0 120px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.banner-2-hero h1 {
    font-size: 42px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 12px;
}
.banner-2-hero .lead {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.banner-2-hero-content h1 {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}
.alt-link {
    font-weight: 600;
    color: #003aff;
    text-decoration: none;
    opacity: .65;
}
.alt-link:hover {
    opacity: 1;
    text-decoration: none;
}
/* ============================================
   ACTIVE NAV STATES
   ============================================ */
   .nav-link.active {
    color: var(--accent-blue) !important;
}

.nav-dropdown-item.active {
    /* background-color: var(--light-blue); */
    color: var(--accent-blue);
    font-weight: 700;
}
/* CLASSES REUTILIZÃVEIS CONSOLIDADAS */

/* Section Tags - Usado em qi-section, about-text, solutions-section, compliance-section, partners-text */
.section-tag {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 15px;
    color: var(--accent-blue);
}

/* TÃ­tulos H2 das seÃ§Ãµes - Usado em qi-section, about-text, solutions-section, compliance-section, partners-text, cta-text */
.section-title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--dark-blue);
}

/* ParÃ¡grafos das seÃ§Ãµes - Usado em qi-section, about-text, solutions-section, compliance-section, cta-text */
.section-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray);
}

/* Wrappers de imagens com cÃ­rculos - Usado em about, partners, cta */
.image-wrapper-with-circles {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-top: -122px;
}

/* CÃ­rculos de fundo - Usado em about, partners, cta */
.circles-bg-common {
    position: absolute;
    width: 100%;
    height: auto;
    top: 15%;
    left: 0;
    z-index: 1;
}

/* Imagens de mÃ©dicos - Usado em about, partners, cta */
.doctor-img-common {
    position: relative;
    max-width: 100%;
    height: auto;
    z-index: 2;
    display: block;
}

/* Layout de conteÃºdo com imagem - Usado em about, partners, cta */
.content-with-image {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    position: relative;
    padding: 80px 0 0;
}

/* SeÃ§Ãµes com background - Usado em about, partners, cta */
.section-with-background {
    position: relative;
    padding-top: 0;
}

/* Cards simples - Usado em solutions e compliance */
.card-simple {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-simple h3,
.card-simple h4 {
    color: var(--primary-blue);
    font-weight: 600;
}

.card-simple p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-blue {
    background-color: var(--accent-blue);
    color: white;
    border-radius: 30px;
    padding: 17px 35px;
    font-weight: 600;
    border: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-primary-blue:hover {
    background-color: #1E5BC6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(43, 111, 237, 0.3);
}

.btn-hero-white {
    background-color: white;
    color: var(--primary-blue);
    border-radius: 30px;
    padding: 14px 40px;
    font-weight: 600;
    border: none;
    font-size: 16px;
    letter-spacing: 0;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-hero-white:hover {
    background-color: #f0f0f0;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    border: 2px solid white;
    background-color: transparent;
    color: white;
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary-blue);
}
.btn-hero-blue {
    background-color: var(--accent-blue);
    color: white;
    border-radius: 30px;
    padding: 14px 40px;
    font-weight: 600;
    border: none;
    font-size: 16px;
    letter-spacing: 0;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}
.btn-hero-blue:hover {
    background-color: #1E5BC6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(43, 111, 237, 0.3);
}
.btn-outline-blue {
    border: 2px solid var(--accent-blue);
    background-color: transparent;
    color: var(--accent-blue);
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}
.btn-outline-blue:hover {
    background-color: var(--accent-blue);
    color: white;
}
/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background-color: var(--dark-blue);
    color: white;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* Language Selector */
.language-selector {
    position: relative;
    display: inline-block;
}

.language-selector .current-language {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.language-selector .current-language:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-selector .flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.language-selector .language-name {
    font-weight: 600;
    font-size: 12px;
}

.language-selector .dropdown-icon {
    font-size: 10px;
    transition: transform 0.3s;
}

.language-selector:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Language Dropdown */
.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--primary-blue);
    text-decoration: none;
    margin: 0;
    transition: background-color 0.3s;
    border-bottom: 1px solid #f0f0f0;
}

.language-dropdown a:last-child {
    border-bottom: none;
}

.language-dropdown a:hover {
    background-color: #f8f9fa;
}

.language-dropdown a.active {
    background-color: var(--light-blue);
    font-weight: 600;
}

.language-dropdown .flag {
    width: 28px;
    height: 20px;
}

.language-dropdown .language-info {
    display: flex;
    flex-direction: column;
}

.language-dropdown .language-primary {
    font-weight: 600;
    font-size: 13px;
    color: var(--primary-blue);
}

.language-dropdown .language-native {
    font-size: 11px;
    color: var(--gray);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-brand {
    margin: 0;
    padding: 0;
}

.navbar-brand img {
    height: 75px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 60px;
}

.navbar-toggler {
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    padding: 8px 12px;
    order: 3;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--accent-blue);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230039A6' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--primary-blue);
    font-weight: 600;
    margin: 0 8px;
    font-size: 15px;
    letter-spacing: 0;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-blue);
}

/* ============================================
   DROPDOWN MENU - PRODUTOS
   ============================================ */
.navbar-nav .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

.navbar-nav .dropdown-menu {
    background-color: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 57, 166, 0.15);
    padding: 8px 0;
    margin-top: 8px;
    min-width: 200px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.navbar-nav .dropdown:hover .dropdown-menu,
.navbar-nav .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.navbar-nav .dropdown-item {
    color: var(--primary-blue);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    letter-spacing: 0;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--light-blue);
    color: var(--accent-blue);
    padding-left: 25px;
}

.navbar-nav .dropdown-item:active {
    background-color: var(--accent-blue);
    color: white;
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar .container {
        flex-wrap: wrap;
        position: relative;
    }
    
    .navbar-brand {
        order: 1;
    }
    
    .navbar-toggler {
        order: 2;
        margin-left: auto;
    }
    
    .navbar-collapse {
        order: 3;
        width: 100%;
        margin-top: 20px;
    }
    
    .navbar-collapse.collapsing,
    .navbar-collapse.show {
        background-color: white;
        padding: 20px 0;
        border-top: 1px solid #e0e0e0;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        margin: 5px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 0;
        padding: 12px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: #f8f9fa;
        padding-left: 10px;
    }
    
    .navbar-nav .btn-primary-blue {
        width: 100%;
        text-align: center;
        margin: 15px 0 0 0;
        border-bottom: none;
        padding: 14px 40px;
    }
    
    .navbar-brand img {
        height: 60px;
    }
    
    .navbar.scrolled .navbar-brand img {
        height: 50px;
    }
    
    /* Mobile Language Selector */
    .mobile-language-selector {
        width: 100%;
        padding: 15px 0;
        border-top: 2px solid var(--accent-blue);
        margin-top: 15px;
    }
    
    .mobile-language-selector .language-title {
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 15px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mobile-language-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-language-list a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px;
        background-color: #f8f9fa;
        border-radius: 8px;
        color: var(--primary-blue);
        text-decoration: none;
        transition: all 0.3s;
        border: 2px solid transparent;
    }
    
    .mobile-language-list a:hover,
    .mobile-language-list a.active {
        background-color: var(--light-blue);
        border-color: var(--accent-blue);
        transform: translateX(5px);
    }
    
    .mobile-language-list .flag {
        width: 32px;
        height: 22px;
        object-fit: cover;
        border-radius: 3px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-language-list .language-info {
        flex: 1;
    }
    
    .mobile-language-list .language-primary {
        font-weight: 600;
        font-size: 14px;
        color: var(--primary-blue);
        display: block;
    }
    
    .mobile-language-list .language-native {
        font-size: 12px;
        color: var(--gray);
    }
    
    /* Mobile Dropdown */
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: #f8f9fa;
        box-shadow: none;
        border-left: 3px solid var(--accent-blue);
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }
    
    .navbar-nav .dropdown-item {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .navbar-nav .dropdown-item:hover {
        padding-left: 35px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    background-image: url(../images/hero_bg_2.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-section h1 {
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-section p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ============================================
   QI INTELLIGENCE SECTION
   ============================================ */
.qi-section {
    padding: 100px 0;
    background-color: white;
}

/* Video Card */
.video-card-wrapper {
    position: relative;
}

.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-card:hover .play-button-overlay {
    background-color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay i {
    font-size: 40px;
    color: var(--accent-blue);
    margin-left: 0px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    position: relative;
    padding-top: 0;
}

.about-background {
    background-color: #EBF0FF;
    position: relative;
    overflow: visible;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    position: relative;
    padding: 80px 0 0;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-doctor-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-top: -122px;
}

.circles-about-bg {
    position: absolute;
    width: 100%;
    height: auto;
    top: 15%;
    left: 0;
    z-index: 1;
}

.doctor-about-img {
    position: relative;
    max-width: 100%;
    height: auto;
    z-index: 2;
    display: block;
}

.about-text {
    flex: 1;
    max-width: 650px;
}

.about-text h2 .text-primary {
    color: var(--accent-blue) !important;
}

.about-images img {
    width: 100%;
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.check-list li {
    display: flex;
    align-items: self-end;
    gap: 15px;
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--gray);
    line-height: 35px;
}

.check-list li i {
    color: var(--accent-blue);
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions-section {
    background-color: white;
    padding: 100px 0;
}

.solutions-section .subtitle {
    color: var(--gray);
    margin-bottom: 60px;
    font-size: 16px;
}

/* Solution Cards Simples */
.solution-card-simple {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.solution-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.solution-card-simple .solution-icon {
    margin-bottom: 25px;
}

.solution-card-simple .solution-icon i {
    font-size: 50px;
    color: var(--accent-blue);
}

.solution-card-simple h3 {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.solution-card-simple p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section {
    position: relative;
    padding-top: 0;
}

.partners-background {
    background: linear-gradient(135deg, #010D74 0%, #0218DA 100%);
    position: relative;
    overflow: visible;
}

.partners-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    padding: 40px 0 0;
}

.partners-text {
    flex: 1;
    max-width: 600px;
    color: white;
}

.partners-text .section-tag {
    color: rgba(255, 255, 255, 0.9);
}

.partners-text h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
}

.partners-text p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 40px;
    color: white;
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.partner-logos img {
    max-height: 55px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.partners-image {
    flex: 1;
    position: relative;
}

.doctor-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-top: -122px;
}

.circles-bg {
    position: absolute;
    width: 100%;
    height: auto;
    top: 15%;
    left: -35px;
    z-index: 1;
    opacity: 1;
}

.doctor-img {
    position: relative;
    max-width: 100%;
    height: auto;
    z-index: 2;
    display: block;
}

/* ============================================
   COMPLIANCE SECTION
   ============================================ */
.compliance-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.compliance-card-simple {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    border: none;
    height: 100%;
}

.compliance-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.compliance-card-simple h4 {
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding-top: 0px;
}

.cta-background {
    background: linear-gradient(180deg, #d9e5fa 0%, #fafafa 100%);
    position: relative;
    overflow: visible;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    padding: 80px 0 0;
}

.cta-image {
    flex: 1;
    position: relative;
}

.cta-doctor-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin-top: -122px;
}

.circles-cta-bg {
    position: absolute;
    width: 100%;
    height: auto;
    top: 15%;
    left: 0;
    z-index: 1;
}

.doctor-cta-img {
    position: relative;
    max-width: 100%;
    height: auto;
    z-index: 2;
    display: block;
    left: 10%;
}

.cta-text {
    flex: 1;
    max-width: 600px;
}

.cta-text h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--primary-blue);
}

.cta-text h2 strong {
    font-weight: 800;
}

.cta-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--gray);
}

.cta-text p strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--dark-blue);
    color: white;
    position: relative;
    padding: 60px 0 30px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 18px;
    color: #fff;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 20px;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.8;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
html {
    scroll-behavior: smooth;
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}

/* Fade In - de baixo para cima */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll.animated.fade-in {
    animation-name: fadeIn;
}

/* Fade In Left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll.animated.fade-in-left {
    animation-name: fadeInLeft;
}

/* Fade In Right */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll.animated.fade-in-right {
    animation-name: fadeInRight;
}

/* Scale In */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll.animated.scale-in {
    animation-name: scaleIn;
}

/* Animation Delays */
.animate-on-scroll.animated.delay-100 { animation-delay: 0.1s; }
.animate-on-scroll.animated.delay-200 { animation-delay: 0.2s; }
.animate-on-scroll.animated.delay-300 { animation-delay: 0.3s; }
.animate-on-scroll.animated.delay-400 { animation-delay: 0.4s; }
.animate-on-scroll.animated.delay-500 { animation-delay: 0.5s; }

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal .modal-dialog {
    max-width: 900px;
    margin: 1.75rem auto;
}

.video-modal .modal-content {
    background: transparent;
    border: none;
}

.video-modal .modal-body {
    padding: 0;
    position: relative;
}

.video-modal .btn-close {
    position: absolute;
    top: -40px;
    right: 0;
    z-index: 1050;
    background-color: white;
    opacity: 1;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-modal .btn-close:hover {
    transform: scale(1.1);
    background-color: #f0f0f0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal.fade .modal-dialog {
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.video-modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

.video-modal .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.9);
}
/* ============================================
 ACCENT BLUE SECTION LEFT IMG
   ============================================ */
   .accentb-section-left {
    position: relative;
    padding-top: 0;
}

.accentb-section-left-background {
    background: linear-gradient(135deg, #010D74 0%, #0218DA 100%);
    position: relative;
    overflow: visible;
}

.accentb-section-left-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    padding: 80px 0;
}

.accentb-section-left-text {
    flex: 1;
    max-width: 600px;
    color: white;
}

.accentb-section-left-text .section-tag {
    color: rgba(255, 255, 255, 0.9);
}

.accentb-section-left-text h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
}

.accentb-section-left-text p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 40px;
    color: white;
}

.accentb-section-left-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.accentb-section-left-logos img {
    max-height: 55px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.accentb-section-left-image {
    flex: 1;
    position: relative;
}

.accentb-section-left .overlap-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-top: -122px;
}

.accentb-section-left .circles-bg {
    position: absolute;
    width: 100%;
    height: auto;
    top: -45px;
    left: -35px;
    z-index: 1;
    opacity: 1;
}

.accentb-section-left .overlap-img {
    position: relative;.accentb-section-left 
    max-width: 100%;
    height: auto;
    z-index: 2;
    display: block;
}
.accentb-section-left .overlap-img-common {
    position: relative;
    max-width: 100%;
    height: auto;
    z-index: 2;
    display: block;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .hero-section {
        height: 650px;
    }

    .qi-section {
        text-align: center;
    }
    
    .partners-section {
        padding-top: 60px;
    }

    .partners-content {
        flex-direction: column;
        gap: 40px;
        padding: 100px 0 0;
    }

    .partners-text {
        max-width: 100%;
        text-align: center;
    }

    .partner-logos {
        justify-content: center;
    }

    .doctor-image-wrapper {
        margin-top: 0;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .circles-bg {
        left: 0;
    }
    
    .about-section {
        padding-top: 0;
    }
    
    .about-content {
        flex-direction: column-reverse;
        gap: 40px;
        padding: 100px 0 0;
    }
    
    .about-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .about-text {
        max-width: 100%;
        text-align: center;
    }
    
    .about-doctor-wrapper {
        margin-top: 0;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-section {
        padding-top: 0px;
    }
    
    .cta-content {
        flex-direction: column-reverse;
        gap: 40px;
        padding: 100px 0 0;
    }
    
    .cta-text {
        max-width: 100%;
        text-align: center;
    }
    
    .cta-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .cta-doctor-wrapper {
        margin-top: 0;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .doctor-cta-img {
        max-width: 80%;
    }
    .accentb-section-left  {
        padding-top: 60px;
    }

    .accentb-section-left-content {
        flex-direction: column;
        gap: 40px;
        padding: 100px 0 0;
    }

    .accentb-section-left-text {
        max-width: 100%;
        text-align: center;
    }

    .accentb-section-left-logos {
        justify-content: center;
    }

    .accentb-section-left-image-wrapper {
        margin-top: 0;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .accentb-section-left .circles-bg {
        left: 0;
        top: 40px !important;
    }
    .accentb-section-left .cta-doctor-wrapper {
        margin-top: 0;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .accentb-section-left .doctor-cta-img {
        max-width: 80%;
    }

}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        /* height: auto; */
        background-attachment: scroll;
    }
    
    .hero-section h1 {
        font-size: 30px;
    }
    
    .hero-section p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .doctor-image-wrapper,
    .cta-doctor-wrapper {
        max-width: 350px;
    }

    .partner-logos {
        gap: 30px;
    }

    .partner-logos img {
        max-height: 45px;
    }
    
    .check-list li {
        align-items: flex-start;
        gap: 5px;
        font-size: 16px;
        text-align: left;
        line-height: 1.8;
    }
    
    .check-list li i {
        font-size: 16px;
    }
    
    .solution-card-simple {
        padding: 30px 20px;
    }
    
    .video-modal .modal-dialog {
        max-width: 95%;
        margin: 1rem auto;
    }
    
    .video-modal .btn-close {
        top: -35px;
        width: 30px;
        height: 30px;
    }
    .accentb-section-left .doctor-image-wrapper,
    .accentb-section-left .cta-doctor-wrapper {
        max-width: 350px;
    }

    .accentb-section-left-logos {
        gap: 30px;
    }

    .accentb-section-left-logos img {
        max-height: 45px;
    }

}
/* ============================================
 #IRE SECTION LEFT IMG
   ============================================ */
#IRE.accentb-section-left {
    position: relative;
    padding-top: 0;
}

#IRE .accentb-section-left-background {
    background: linear-gradient(135deg, #010D74 0%, #0218DA 100%);
    position: relative;
    overflow: visible; 
    padding:80px 0 0 0 !important;
}

#IRE .accentb-section-left-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    padding: 0 0 80px;
}

#IRE .accentb-section-left-text {
    flex: 1;
    max-width: 750px;
    color: white;
}

#IRE .accentb-section-left-text .section-tag {
    color: rgba(255, 255, 255, 0.9);
}

#IRE .accentb-section-left-text h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
}

#IRE .accentb-section-left-text p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 40px;
    color: white;
}

#IRE .accentb-section-left-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

#IRE .accentb-section-left-logos img {
    max-height: 55px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

#IRE .accentb-section-left-image {
    flex: 1;
    position: relative;
}

#IRE .accentb-section-left .overlap-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-top: 0;
}

#IRE.accentb-section-left .circles-bg {
    position: absolute;
    width: 100%;
    height: auto;
    top: -40%;
    /* left: -36px; */
    z-index: 1;
    opacity: 1;
}

#IRE.accentb-section-left .overlap-img {
    position: relative;.accentb-section-left 
    max-width: 100%;
    height: auto;
    z-index: 2;
    display: block;
}
#IRE.accentb-section-left .overlap-img-common {
    position: relative;
    max-width: 100%;
    left: -6%;
    bottom: 0;
    top: 0;
    height: auto;
    z-index: 2;
    display: block;
}



/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet */
@media (max-width: 991px) {

    #IRE .doctor-image-wrapper {
        margin-top: 0;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    #IRE .circles-bg {
        left: 0;
    }
    
    #IRE .cta-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    #IRE .cta-doctor-wrapper {
        margin-top: 0;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    #IRE .doctor-cta-img {
        max-width: 80%;
    }
    #IRE.accentb-section-left  {
        padding-top: 60px;
    }

    #IRE .accentb-section-left-content {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }

    #IRE .accentb-section-left-text {
        max-width: 100%;
        text-align: center;
    }

    #IRE .accentb-section-left-logos {
        justify-content: center;
    }

    #IRE .accentb-section-left-image-wrapper {
        margin-top: 0;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    #IRE .accentb-section-left .circles-bg {
        left: 0;
    }
    #IRE .accentb-section-left .cta-doctor-wrapper {
        margin-top: 0;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    #IRE .accentb-section-left .doctor-cta-img {
        max-width: 80%;
    }

}

/* Mobile */
@media (max-width: 768px) {
#IRE.accentb-section-left .overlap-img-common {
        max-width: 400px;
        left: 0;
        top: 132px;
    }
#IRE .accentb-section-left-background {
    padding: 80px 0 200px!important;
}
    #IRE .accentb-section-left-logos {
        gap: 30px;
    }

    #IRE .accentb-section-left-logos img {
        max-height: 45px;
    }

}