.elementor-59 .elementor-element.elementor-element-7c644bc{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-5a4d600 */<code_block_to_apply_changes_from>
```
</code_block_to_apply_changes_from>

```css
:root {
    --primary-color: #7995a1;
    --secondary-color: #ffd194;
    --neutral-light: #eff0f1;
    --text-color: #4b4b4b;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fallback para browsers antigos */
@supports not (border-radius: 12px) {
    .service-card, .credential-item, .testimonial-card, 
    .differential-item, .quote, .why-choose-image, 
    .doctor-image, .btn, .nav-link {
        -webkit-border-radius: 12px !important;
        -moz-border-radius: 12px !important;
        border-radius: 12px !important;
    }
}

/* Força border-radius em elementos críticos para compatibilidade */
.service-card, .credential-item, .testimonial-card, 
.differential-item, .quote, .btn, .nav-link {
    -webkit-border-radius: 12px !important;
    -moz-border-radius: 12px !important;
    border-radius: 12px !important;
}

.why-choose-image, .doctor-image {
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
}

/* Força dropdown a aparecer corretamente */
.nav-item:hover .dropdown,
.nav-item.dropdown-open .dropdown {
    pointer-events: auto;
    z-index: 9999 !important;
}

/* Previne conflitos de overflow */
.nav-container {
    overflow: visible !important;
}

.header {
    overflow: visible !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px; /* Compensa altura do header fixo */
}

/* Melhora performance de scroll */
* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    /* Otimizações para smooth scrolling */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

html {
    overflow-x: hidden;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    isolation: isolate;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(121, 149, 161, 0.3);
    border-radius: 12px !important;
}

.btn-primary:hover {
    background: #6b8591;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 149, 161, 0.4);
    border-radius: 12px !important;
}

// ... (continua, todo o CSS do bloco <style> do varizes.html) ...
```/* End custom CSS */