﻿/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg-page: #ebebeb;
    --surface: #ffffff;
    --surface-alt: #f4f6f8;
    --text: #1c252e;
    --muted: #5e6873;
    --brand: #0077b6;
    --brand-dark: #005f8f;
    --line: #d8dee6;
    --radius-sm: 3px;
    --radius-md: 8px;
    --shadow-soft: 0 6px 18px rgba(18, 30, 41, 0.06);
}

body {
    font-family: 'Source Sans 3', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background-color: var(--bg-page);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
}

/* Evita vazamento de texto em qualquer bloco com strings longas */
h1, h2, h3, h4, p, li, label, .section-subtitle {
    overflow-wrap: anywhere;
}

img,
svg,
iframe,
video {
    max-width: 100%;
}

a {
    color: var(--brand);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--brand-dark);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.25rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Header - Edwards-inspired: limpo e profissional */
.header {
    background-color: rgba(235, 235, 235, 0.96);
    border-bottom: 1px solid rgba(0, 95, 143, 0.14);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .header-container {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header-content {
    display: grid;
    grid-template-columns: minmax(180px, 300px) minmax(0, 1fr) auto;
    grid-template-areas: "logo nav actions";
    align-items: center;
    column-gap: 1.4rem;
    row-gap: 0;
    padding: 0.42rem 0;
}

.logo {
    grid-area: logo;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 72px;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-img {
    width: 280px;
    height: 102px;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
    margin: -14px 0 -12px;
}

.nav {
    grid-area: nav;
    display: flex;
    justify-self: center;
    align-self: center;
    width: 100%;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    justify-content: center;
}

@media (min-width: 1200px) {
    .nav-list {
        gap: 1.2rem;
    }
}

.nav-link {
    color: #24313d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background-color: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link:hover {
    color: var(--brand-dark);
    background-color: transparent;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--brand-dark);
    font-weight: 600;
}

.nav-list li:last-child .nav-link {
    background-color: var(--brand);
    color: #fff;
    border: 1px solid var(--brand);
    border-radius: var(--radius-sm);
    padding: 0.55rem 1rem;
    letter-spacing: 0.06em;
}

.nav-list li:last-child .nav-link::after {
    display: none;
}

.nav-list li:last-child .nav-link:hover,
.nav-list li:last-child .nav-link.active {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}

.header-actions {
    grid-area: actions;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    justify-self: end;
    align-self: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    width: auto;
    min-width: fit-content;
    padding-bottom: 0;
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    background: var(--surface);
    border: 1px solid rgba(0, 119, 182, 0.35);
    border-radius: var(--radius-sm);
    color: var(--brand-dark);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.lang-btn:hover {
    background: rgba(0, 119, 182, 0.08);
    border-color: var(--brand);
}

.lang-icon {
    font-size: 1.1rem;
}

.lang-text {
    display: none;
}

@media (min-width: 1400px) {
    .lang-text {
        display: inline;
    }
}

.lang-modal {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1100;
}

.lang-modal.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.lang-modal-header span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
}

.lang-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0 0.25rem;
    line-height: 1;
    transition: color 0.2s;
}

.lang-modal-close:hover {
    color: #1a1a1a;
}

.lang-options {
    max-height: 280px;
    overflow-y: auto;
}

.lang-options .goog-te-combo,
.lang-options select {
    width: 100%;
    padding: 0.6rem 2rem 0.6rem 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #fafafa;
    color: #333;
}

.lang-options .goog-te-combo:focus,
.lang-options select:focus {
    outline: none;
    border-color: var(--brand);
}

/* Esconder barra padrÃ£o do Google Translate */
.skiptranslate,
body > .skiptranslate,
iframe.goog-te-banner-frame {
    display: none !important;
}

.header-contacts {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: nowrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #33414d;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    text-transform: none;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.contact-text {
    display: none;
}

@media (min-width: 1260px) {
    .contact-text {
        display: inline;
    }
}

/* Botão Toggle de Tema */
.theme-toggle {
    --toggle-accent: rgba(0, 119, 182, 0.4);
    --toggle-glow: rgba(0, 119, 182, 0.26);
    background: linear-gradient(145deg, #ffffff 0%, #eef5fb 100%);
    border: 1px solid rgba(0, 119, 182, 0.45);
    color: var(--brand-dark);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background-color 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.24s ease;
    font-size: 1.2rem;
    margin-left: 0;
    box-shadow:
        0 4px 12px rgba(8, 55, 86, 0.14),
        inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.theme-toggle:hover {
    border-color: rgba(0, 119, 182, 0.62);
    box-shadow:
        0 8px 18px var(--toggle-glow),
        inset 0 0 0 1px rgba(255, 255, 255, 0.78);
    transform: translateY(-1px);
}

.theme-toggle::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from 90deg, transparent 0 34%, var(--toggle-accent) 48%, transparent 66% 100%);
    transform: rotate(-40deg) scale(0.84);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.theme-toggle::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: inherit;
    border: 1px solid var(--toggle-accent);
    transform: scale(0.45);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.theme-icon {
    position: relative;
    z-index: 1;
    width: 1em;
    height: 1em;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-toggle.is-animating {
    animation: themeTogglePress 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-toggle.is-animating::before {
    animation: themeToggleSweep 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle.is-animating::after {
    animation: themeToggleRing 760ms ease-out;
}

.theme-toggle.is-animating .theme-icon {
    animation: themeToggleGlyph 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes themeTogglePress {
    0% { transform: scale(1); }
    18% { transform: scale(0.9); }
    55% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

@keyframes themeToggleSweep {
    0% {
        opacity: 0;
        transform: rotate(-40deg) scale(0.84);
    }
    35% {
        opacity: 0.72;
        transform: rotate(66deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: rotate(150deg) scale(1.08);
    }
}

@keyframes themeToggleRing {
    0% {
        opacity: 0;
        transform: scale(0.45);
    }
    30% { opacity: 0.45; }
    100% {
        opacity: 0;
        transform: scale(1.9);
    }
}

@keyframes themeToggleGlyph {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
    }
    32% {
        transform: translateY(-4px) rotate(-16deg) scale(0.82);
        opacity: 0.32;
    }
    56% {
        transform: translateY(4px) rotate(16deg) scale(0.82);
        opacity: 0.32;
    }
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
    }
}

.contact-link:hover {
    color: var(--brand-dark);
}

.contact-link .icon {
    font-size: 1.2rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.menu-toggle:hover span {
    background-color: #0077b6;
}

@media (max-width: 768px) {
    .header .header-container {
        padding: 0 1rem;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.45rem 0;
        gap: 1rem;
        flex-wrap: nowrap;
        position: relative;
    }

    .header-actions {
        margin-left: auto;
    }

    .logo {
        height: 52px;
    }

    .logo-img {
        height: 72px;
        max-width: 200px;
        margin: -10px 0 -10px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #efefef;
        border-top: 1px solid rgba(0, 95, 143, 0.12);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        justify-content: flex-start;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Hero / Slider - Edwards: foco no paciente, mensagem forte */
.hero {
    position: relative;
    height: clamp(560px, 72vh, 760px);
    min-height: 560px;
    background: linear-gradient(112deg, rgba(0, 95, 143, 0.96) 0%, rgba(0, 119, 182, 0.9) 52%, rgba(0, 119, 182, 0.76) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.22) 0, rgba(255, 255, 255, 0) 48%),
        radial-gradient(circle at 65% 78%, rgba(255, 255, 255, 0.14) 0, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    right: -8%;
    top: -20%;
    width: 56%;
    height: 160%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
    transform: rotate(16deg);
    pointer-events: none;
    z-index: 0;
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity 0.9s ease, transform 1.1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
}

.slide-content {
    text-align: left;
    color: #fff;
    z-index: 10;
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 6.2rem 2.25rem 6.8rem;
}

.slide-content h2 {
    font-size: clamp(2.2rem, 4.8vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.028em;
    max-width: 13ch;
    line-height: 1.08;
}

.slide-content p {
    font-size: 1.16rem;
    margin-bottom: 2rem;
    max-width: 620px;
    margin-left: 0;
    margin-right: 0;
    color: rgba(255, 255, 255, 0.94);
}

.slide-medical {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(108deg, #b8d0e4 0%, #d9e6f2 100%);
}

.slide-medical::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(240, 248, 255, 0.08) 0%, rgba(240, 248, 255, 0.2) 100%),
        var(--hero-slide-image, url('assets/img1.jpg')) 64% center / cover no-repeat;
    clip-path: polygon(52% 0, 100% 0, 100% 100%, 41% 100%);
    z-index: 1;
}

.slide-medical::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(104deg, rgba(18, 118, 185, 0.88) 0%, rgba(84, 173, 226, 0.8) 56%, rgba(132, 199, 240, 0.62) 78%),
        radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 44%);
    clip-path: polygon(0 0, 66% 0, 45% 100%, 0 100%);
    z-index: 2;
}

.slide-medical .slide-content {
    position: relative;
    z-index: 3;
}

.slide-medical .slide-content h2 {
    color: #ffffff;
    text-shadow: 0 2px 14px rgba(0, 45, 78, 0.42);
    max-width: 11ch;
}

.slide-medical .slide-content p {
    max-width: 26ch;
    color: rgba(245, 251, 255, 0.97);
}

.slide-medical .btn.btn-primary {
    background-color: #1f80c4;
    border-radius: 3px;
    box-shadow: none;
}

.slide-medical .btn.btn-primary:hover {
    background-color: #186ea9;
}

.slider-controls {
    position: absolute;
    top: auto;
    bottom: 1.8rem;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 0.7rem;
    padding: 0 2.25rem;
    z-index: 20;
}

@media (min-width: 768px) {
    .slider-controls {
        padding: 0 2rem;
    }
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 95, 143, 0.2);
    color: var(--brand-dark);
    font-size: 1.35rem;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .slider-btn {
        width: 46px;
        height: 46px;
    }
}

.slider-btn:hover {
    background-color: #fff;
    transform: translateY(-1px);
}

.slider-dots {
    position: absolute;
    bottom: 2.75rem;
    left: 2.25rem;
    transform: none;
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Sections */
section {
    padding: 5.5rem 0;
}

.section-header {
    text-align: left;
    margin-bottom: 2.75rem;
    max-width: 760px;
}

.section-title {
    font-size: clamp(2rem, 3.3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 0.85rem;
    letter-spacing: -0.018em;
}

.section-subtitle {
    font-size: 1.06rem;
    color: var(--muted);
    max-width: 640px;
    margin: 0;
}

/* Sobre NÃ³s */
.sobre {
    background-color: var(--surface-alt);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sobre-text {
    padding: 2rem 0;
}

.sobre-text p {
    margin-bottom: 1.5rem;
    line-height: 1.85;
    color: var(--muted);
}

.sobre-image {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--line);
    background-color: var(--surface);
}

.sobre-image img {
    width: 100%;
    height: auto;
    display: block;
}

.sobre-video {
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: 320px;
}

.sobre-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.sobre-video.sobre-video-no-embed {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.sobre-video.sobre-video-no-embed iframe {
    display: none;
}

.sobre-video.sobre-video-no-embed .sobre-video-help {
    border-top: 0;
    background: transparent;
    text-align: center;
    padding: 1.2rem;
}

.sobre-video-help {
    margin: 0;
    padding: 0.7rem 0.95rem;
    font-size: 0.86rem;
    color: var(--muted);
    border-top: 1px solid var(--line);
    background-color: rgba(0, 119, 182, 0.04);
}

.sobre-video-help a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}

.sobre-video-help a:hover {
    color: var(--brand-dark);
    text-decoration: underline;
}

/* Placeholder de figura (atÃ© inserir imagens reais) */
.figure-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.08) 0%, rgba(0, 95, 143, 0.12) 100%);
    border: 2px dashed rgba(0, 119, 182, 0.3);
    color: var(--brand);
    min-height: 200px;
    border-radius: var(--radius-sm);
}

.sobre-image.figure-placeholder {
    min-height: 400px;
}

.produtos-image.figure-placeholder {
    min-height: 400px;
}

.figure-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.6;
    margin-bottom: 0.75rem;
}

.profissional-image.figure-placeholder svg {
    width: 60px;
    height: 60px;
}

.figure-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Profissionais */
.profissionais {
    background-color: var(--surface);
}

.profissionais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.profissional-card {
    background-color: var(--surface);
    border-radius: var(--radius-sm);
    padding: 2.25rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.profissional-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 95, 143, 0.11);
    border-color: rgba(0, 119, 182, 0.15);
}

.profissional-card:hover .profissional-image img {
    transform: scale(1.05);
}

.profissional-image.figure-placeholder {
    display: flex;
}

.profissional-image {
    width: 100%;
    height: 210px;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.profissional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.profissional-image::before {
    content: '';
    display: none;
}

.profissional-info {
    position: relative;
}

.profissional-info h3 {
    margin-bottom: 0.5rem;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.profissional-title {
    color: var(--brand);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.profissional-desc {
    color: var(--muted);
    line-height: 1.6;
}

.profissional-link {
    color: #0077b6;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.profissional-link:hover {
    gap: 1rem;
}

/* Produtos */
.produtos {
    background-color: #f3f6fa;
}

.produto-hero,
.produto-block {
    margin-bottom: 3.25rem;
}

.produto-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
    gap: 1.3rem 2rem;
    align-items: start;
}

.produto-hero-content {
    min-width: 0;
    max-width: 760px;
}

.produto-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.95rem;
    background: #0ab980;
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    margin-bottom: 1.25rem;
}

.produto-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    color: #0552a0;
    margin-bottom: 1rem;
    max-width: 18ch;
}

.produto-hero-text {
    font-size: clamp(1.03rem, 1.25vw, 1.35rem);
    line-height: 1.6;
    max-width: 60ch;
    color: #5a6e84;
    margin-bottom: 1.5rem;
}

.produto-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 0;
}

.produto-hero-actions .btn {
    min-width: 205px;
    font-size: 0.98rem;
    letter-spacing: 0.03em;
    font-weight: 700;
}

.produto-hero-actions .btn-secondary {
    background-color: transparent;
    border: 1px solid #cfd6df;
    color: #12233d;
}

.produto-hero-actions .btn-secondary:hover {
    background-color: #e7edf4;
    border-color: #bec8d3;
}

.produto-figure {
    margin: 0;
    border-radius: 12px;
    background: #eef2f6;
    border: 1px solid #d7dde5;
    box-shadow: 0 10px 26px rgba(16, 38, 61, 0.08);
    overflow: hidden;
}

.produto-figure img {
    width: 100%;
    height: clamp(220px, 35vw, 380px);
    object-fit: contain;
    display: block;
    padding: 1rem;
}

.produto-figure-hero {
    width: 100%;
    max-width: 360px;
    margin-top: 0.2rem;
    padding: 0.48rem;
    border-radius: 14px;
    background: linear-gradient(160deg, #edf2f8 0%, #e3ebf5 100%);
    border: 1px solid #c7d3e0;
    box-shadow: 0 10px 24px rgba(20, 40, 63, 0.1);
    justify-self: end;
}

.produto-figure-hero img {
    height: auto;
    max-height: 460px;
    width: 100%;
    object-fit: contain;
    padding: 0;
    border-radius: 10px;
    background: #e8edf5;
    box-shadow: none;
}

.produto-block-soft {
    background: #dfe6ee;
    border-radius: 14px;
    padding: 2rem 1.9rem;
}

.produto-header {
    text-align: left;
    margin: 0 0 1.35rem;
    max-width: 100%;
}

.produto-header .section-title {
    color: #0552a0;
    font-size: clamp(1.75rem, 2.8vw, 2.65rem);
    margin-bottom: 0.45rem;
    line-height: 1.2;
}

.produto-header .section-subtitle {
    color: #7b8ea5;
    font-size: clamp(0.9rem, 1.02vw, 1.05rem);
    line-height: 1.55;
}

.produto-grid-three {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

.produto-grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
}

.produto-card {
    background: linear-gradient(180deg, #f7f9fc 0%, #f3f7fb 100%);
    border: 1px solid #cfd6df;
    border-radius: 14px;
    padding: 1.55rem 1.45rem;
    box-shadow: 0 6px 18px rgba(15, 44, 67, 0.06);
}

.produto-card h4 {
    font-size: clamp(1.18rem, 1.45vw, 1.55rem);
    color: #0552a0;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.produto-card p {
    color: #10233d;
    font-size: clamp(0.95rem, 1.02vw, 1.08rem);
    line-height: 1.6;
    margin-bottom: 0.55rem;
}

.produto-card-tall {
    min-height: 320px;
    text-align: left;
}

.produto-card-tall p {
    color: #10233d;
}

.produto-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 0.85rem;
}

.produto-card-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.produto-benefit-card {
    background: linear-gradient(180deg, #f5f7fb 0%, #f1f4f8 100%);
    border: 1px solid #ccd4de;
    border-radius: 14px;
    min-height: 205px;
    padding: 1.45rem 1.35rem;
    text-align: left;
    box-shadow: 0 6px 18px rgba(15, 44, 67, 0.06);
}

.produto-check {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #0ab980;
    color: #0ab980;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.65rem;
}

.produto-benefit-card h4 {
    font-size: clamp(1.1rem, 1.35vw, 1.35rem);
    color: #0552a0;
    margin-bottom: 0.45rem;
    line-height: 1.35;
}

.produto-benefit-card p {
    margin: 0;
    color: #5a6e84;
    font-size: clamp(0.93rem, 0.98vw, 1.04rem);
    line-height: 1.55;
}

.produto-grid-validation .produto-card {
    min-height: 285px;
}

.produto-model-list {
    display: grid;
    gap: 1.8rem;
}

.produto-model-card {
    background: linear-gradient(180deg, #f5f7fb 0%, #f1f4f8 100%);
    border: 1px solid #ccd4de;
    border-radius: 14px;
    padding: 1.7rem 1.55rem;
}

.produto-model-card h4 {
    font-size: clamp(1.45rem, 1.8vw, 1.9rem);
    color: #0552a0;
    margin-bottom: 0.55rem;
    line-height: 1.3;
}

.produto-model-card p {
    color: #5a6e84;
    font-size: clamp(0.95rem, 1.02vw, 1.1rem);
    line-height: 1.6;
}

.produto-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.produto-list li {
    position: relative;
    padding-left: 1.45rem;
    margin-bottom: 0.35rem;
    font-size: clamp(0.95rem, 1vw, 1.04rem);
    color: #10233d;
    line-height: 1.55;
}

.produto-list li::before {
    content: "○";
    position: absolute;
    left: 0;
    top: 0;
    color: #0ab980;
    font-weight: 700;
}

.produto-list-tight li {
    margin-bottom: 0.35rem;
}

.produto-lab-grid .produto-card {
    min-height: 230px;
}

.produto-specs-section {
    padding-top: 1.65rem;
    padding-bottom: 1.8rem;
}

.produto-specs-section .produto-header {
    margin-bottom: 1rem;
}

.produto-spec-grid {
    margin-top: 0.35rem;
}

.produto-spec-grid .produto-card {
    padding: 1.35rem 1.3rem;
}

.produto-spec-grid .produto-card h4 {
    margin-bottom: 0.75rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid #cfdae7;
}

.produto-spec-grid .produto-list {
    margin-top: 0.35rem;
}

.produto-spec-grid + .produto-lab-grid {
    margin-top: 1rem;
}

.produto-lab-grid .produto-card h4 {
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq {
    background-color: var(--surface);
}

.faq-list {
    max-width: 980px;
    margin: 0;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    background: var(--surface);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.4rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #0077b6;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #0077b6;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.4rem;
    color: var(--muted);
    line-height: 1.8;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-top: 1rem;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* NotÃ­cias */
.noticias {
    background-color: var(--surface-alt);
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.noticias-grid > * {
    min-width: 0;
}

.noticia-card {
    background-color: var(--surface);
    border-radius: var(--radius-sm);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.noticia-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 95, 143, 0.1);
}

.noticia-card-clickable {
    cursor: pointer;
}

.noticia-card-clickable:focus-visible {
    outline: 3px solid rgba(0, 119, 182, 0.35);
    outline-offset: 2px;
}

.noticia-date {
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.noticia-title {
    margin-bottom: 1rem;
    overflow-wrap: anywhere;
}

.noticia-excerpt {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    overflow-wrap: anywhere;
    word-break: break-word;
    flex: 1;
}

.noticia-link {
    color: #0077b6;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.noticia-link:hover {
    gap: 1rem;
}

.noticias-loading,
.noticias-empty,
.noticias-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    background-color: var(--surface);
    border: 1px solid var(--line);
}

.noticias-error {
    color: #b22a2a;
}

.news-page-main {
    background-color: var(--surface-alt);
    min-height: 100vh;
    padding-top: 110px;
    padding-bottom: 4rem;
}

.news-page-section {
    padding: 1rem 0 2rem;
}

.news-page-header {
    margin-bottom: 2rem;
}

.news-back {
    margin: 0 0 1rem;
}

.noticia-detalhe-wrapper {
    max-width: 900px;
}

.noticia-detalhe-card {
    background-color: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    padding: 2.5rem;
    min-width: 0;
    overflow: hidden;
}

.noticia-detalhe-title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.noticia-detalhe-content p {
    margin: 0 0 1rem;
    line-height: 1.75;
    color: var(--muted);
    font-size: 1.04rem;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.noticia-detalhe-content h1,
.noticia-detalhe-content h2,
.noticia-detalhe-content h3,
.noticia-detalhe-content h4 {
    margin: 1.4rem 0 0.8rem;
    line-height: 1.3;
}

.noticia-detalhe-content ul,
.noticia-detalhe-content ol {
    margin: 0 0 1rem 1.2rem;
    padding: 0;
}

.noticia-detalhe-content li {
    margin-bottom: 0.4rem;
    line-height: 1.65;
}

.noticia-detalhe-content blockquote {
    margin: 1.1rem 0;
    padding: 0.8rem 1rem;
    border-left: 3px solid rgba(0, 119, 182, 0.45);
    background: rgba(0, 119, 182, 0.07);
    border-radius: 0 8px 8px 0;
    color: #2b4c66;
}

.noticia-detalhe-content a {
    color: #0066cc;
    text-decoration: underline;
}

.noticia-detalhe-content figure.noticia-media {
    margin: 1.35rem 0;
}

.noticia-detalhe-content img,
.noticia-detalhe-content video,
.noticia-detalhe-content iframe {
    width: 100%;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(0, 119, 182, 0.15);
    box-shadow: 0 8px 24px rgba(0, 95, 143, 0.12);
    background: #f3f7fb;
}

.noticia-detalhe-content iframe {
    min-height: 360px;
}

.painel-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.painel-card {
    background-color: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
}

.painel-card h2 {
    margin-bottom: 0.8rem;
}

.painel-help {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1rem;
    overflow-wrap: anywhere;
}

.painel-help code {
    font-size: 0.85rem;
}

.painel-form .form-group {
    margin-bottom: 1rem;
}

.painel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.painel-form textarea,
.painel-form input[type="text"],
.painel-form input[type="date"] {
    width: 100%;
    border: 1px solid #d3dce4;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 1rem;
}

.painel-form textarea {
    resize: vertical;
}

.painel-editor {
    border: 1px solid #d3dce4;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0.7rem;
    border-bottom: 1px solid #dce5ed;
    background: #f6f9fc;
}

.editor-btn {
    border: 1px solid #cbd8e4;
    background: #fff;
    color: #1d3e58;
    border-radius: 8px;
    padding: 0.35rem 0.55rem;
    font-size: 0.83rem;
    font-weight: 600;
    cursor: pointer;
    line-height: 1;
}

.editor-btn:hover:not(:disabled) {
    border-color: #8db8d7;
    color: #0b5f95;
    background: #f0f8ff;
}

.editor-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.editor-area {
    min-height: 290px;
    max-height: 680px;
    overflow-y: auto;
    padding: 1rem;
    outline: none;
    line-height: 1.7;
}

.editor-area:empty::before {
    content: attr(data-placeholder);
    color: #8499ab;
}

.editor-area p {
    margin: 0 0 0.9rem;
}

.editor-area ul,
.editor-area ol {
    margin: 0 0 1rem 1.2rem;
    padding: 0;
}

.editor-area blockquote {
    margin: 1rem 0;
    border-left: 3px solid rgba(0, 119, 182, 0.45);
    background: rgba(0, 119, 182, 0.07);
    padding: 0.75rem 0.9rem;
    border-radius: 0 8px 8px 0;
}

.editor-area img,
.editor-area video,
.editor-area iframe {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(0, 119, 182, 0.15);
    background: #eef5fb;
    margin: 0.9rem 0;
}

.editor-area iframe {
    min-height: 320px;
}

.painel-status {
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    margin: 0 0 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    overflow-wrap: anywhere;
}

.painel-status.info {
    background-color: #edf6fb;
    color: #1c5d85;
    border: 1px solid #bfddee;
}

.painel-status.success {
    background-color: #edf9f1;
    color: #1f6f3b;
    border: 1px solid #bfe8cc;
}

.painel-status.error {
    background-color: #fef1f1;
    color: #8a1f1f;
    border: 1px solid #f4c8c8;
}

.painel-recentes-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.painel-recentes-list li {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.painel-recentes-list span {
    color: var(--muted);
    font-size: 0.9rem;
}

.painel-recentes-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.painel-recentes-actions {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
}

.painel-recentes-link {
    color: #0066cc;
    font-size: 0.9rem;
    text-decoration: none;
}

.painel-recentes-link:hover {
    text-decoration: underline;
}

.painel-delete-btn {
    border: 1px solid #e3b6b6;
    color: #872e2e;
    background: #fff5f5;
    border-radius: 8px;
    padding: 0.2rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.painel-delete-btn:hover {
    background: #ffe7e7;
    border-color: #d48787;
}

.painel-edit-btn {
    border: 1px solid #b8d3ea;
    color: #14507a;
    background: #eef7ff;
    border-radius: 8px;
    padding: 0.2rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.painel-edit-btn:hover {
    background: #e2f1ff;
    border-color: #8db8d7;
}

/* Sala de Imprensa */
.imprensa {
    background-color: var(--surface);
}

.imprensa-list {
    max-width: 980px;
    margin: 0;
}

.imprensa-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    background: var(--surface);
}

.imprensa-item:last-child {
    margin-bottom: 0;
}

.imprensa-item h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
}

.imprensa-item-file {
    display: block;
    padding: 1.25rem;
    border-radius: 12px;
}

.imprensa-item-header {
    margin-bottom: 0.85rem;
}

.imprensa-item-file h3 {
    margin-bottom: 0.25rem;
}

.imprensa-item-desc {
    margin: 0;
    color: #5f738b;
    font-size: 0.97rem;
}

.imprensa-item-summary {
    margin: 0.5rem 0 1rem;
    color: #5f738b;
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 70ch;
}

.imprensa-download {
    min-width: 220px;
}

.imprensa-link {
    color: #0077b6;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.imprensa-link:hover {
    color: #005f8f;
}

/* Contato */
.contato {
    background-color: var(--surface-alt);
    position: relative;
    overflow: hidden;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0077b6, #005f8f);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .contato-content {
        gap: 2rem;
    }

    .painel-grid {
        grid-template-columns: 1fr;
    }
}

.contato-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .contato-info {
        grid-template-columns: 1fr;
    }
}

.contato-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--surface);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
    animation: none;
}

.contato-item-map {
    grid-column: 1 / -1;
}

.contato-item:nth-child(1) {
    animation-delay: 0.1s;
}

.contato-item:nth-child(2) {
    animation-delay: 0.2s;
}

.contato-item:nth-child(3) {
    animation-delay: 0.3s;
}

.contato-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contato-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0077b6, #005f8f);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contato-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 95, 143, 0.11);
    border-color: rgba(0, 119, 182, 0.2);
}

.contato-item:hover::before {
    transform: scaleX(1);
}

.contato-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.1), rgba(0, 95, 143, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contato-item:hover .contato-icon-wrapper {
    background: linear-gradient(135deg, #0077b6, #005f8f);
    transform: scale(1.1);
}

.contato-icon {
    font-size: 2rem;
    display: block;
    transition: transform 0.3s ease;
}

.contato-item:hover .contato-icon {
    transform: scale(1.2);
}

.contato-details {
    width: 100%;
}

.contato-item h4 {
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
}

.contato-item-action {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.contato-item-action:focus-visible {
    outline: 2px solid rgba(0, 119, 182, 0.55);
    outline-offset: 2px;
}

.contato-action-label {
    margin: 0;
    color: var(--brand);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    display: inline-block;
    transition: all 0.3s ease;
}

.contato-item-action:hover .contato-action-label {
    color: var(--brand-dark);
    transform: translateX(3px);
}

.contato-link-item {
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    word-break: break-word;
    line-height: 1.5;
}

.whatsapp-number {
    white-space: nowrap;
}

.contato-link-item:hover {
    color: var(--brand-dark);
    transform: translateX(3px);
}

.contato-address {
    color: var(--muted);
    line-height: 1.6;
    margin: 0.75rem 0 0;
    font-size: 0.95rem;
}

.contato-map-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 95, 143, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    background-color: #e8f0f5;
}

.contato-map-embed {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    pointer-events: none;
}

.contato-map-link {
    position: absolute;
    inset: 0;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0.8rem;
    background: linear-gradient(to top, rgba(12, 28, 40, 0.35), rgba(12, 28, 40, 0));
}

.contato-map-link span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.92);
    color: #0d3f5a;
    border: 1px solid rgba(0, 95, 143, 0.2);
    border-radius: 999px;
    padding: 0.32rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.25s ease;
}

.contato-map-link:hover span {
    background-color: #fff;
    color: #005f8f;
    transform: translateY(-1px);
}

.contato-whatsapp {
    margin-top: 1rem;
    width: 100%;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c85);
    color: #fff;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c85, #25d366);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 1.3rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.contato-form {
    background-color: var(--surface);
    border-radius: var(--radius-sm);
    padding: 2.5rem;
    box-shadow: 0 10px 24px rgba(18, 30, 41, 0.08);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0, 119, 182, 0.1);
}

.contato-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0077b6, #005f8f);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.form-group {
    margin-bottom: 1.75rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0077b6;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #b0b0b0;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230077b6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    opacity: 0.7;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.5;
}

/* Mensagens de feedback do formulÃ¡rio */
.form-message {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
}

.form-group.error label {
    color: #dc3545;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #28a745;
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #0077b6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

/* BotÃ£o Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #0077b6;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #005f8f;
    transform: translateY(-3px);
}

.back-to-top span:first-child {
    font-size: 1.2rem;
}

.back-to-top span:last-child {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #0f2a3a;
    color: #cfdae6;
    padding: 3.5rem 0;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section p {
    overflow-wrap: anywhere;
}

.footer-section a {
    color: #cfdae6;
    text-decoration: none;
    transition: color 0.3s ease;
    overflow-wrap: anywhere;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 2rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.86rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    white-space: normal;
}

.btn-primary {
    background-color: #0077b6;
    color: #fff;
}

.btn-primary:hover {
    background-color: #005f8f;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 95, 143, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: #0077b6;
    border: 2px solid #0077b6;
}

.btn-secondary:hover {
    background-color: #0077b6;
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: #0077b6;
    border: 2px solid #0077b6;
}

.btn-outline:hover {
    background-color: #0077b6;
    color: #fff;
    transform: translateY(-1px);
}

.text-center {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin-top: 2.35rem;
}

/* AnimaÃ§Ãµes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsivo */
@media (max-width: 1024px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        min-height: 540px;
        padding: 6rem 0 4.5rem;
    }

    .section-title {
        font-size: 2.1rem;
    }
    
    .sobre-content {
        gap: 3rem;
    }

    .produto-hero {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .produto-hero-content {
        max-width: 100%;
    }

    .produto-figure-hero {
        justify-self: start;
        max-width: 340px;
    }

    .produto-grid-three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .produto-grid-three.produto-lab-grid {
        grid-template-columns: 1fr;
    }
    
    .profissionais-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 1024px) {
    .header-contacts {
        gap: 0.5rem;
    }
    
    .nav-list {
        gap: 1rem;
    }
    
    .contato-content {
        gap: 2rem;
    }

    .hero {
        height: 620px;
        min-height: 620px;
    }

    .slide-medical::before {
        clip-path: polygon(58% 0, 100% 0, 100% 100%, 46% 100%);
        background-position: 62% center;
    }

    .slide-medical::after {
        clip-path: polygon(0 0, 70% 0, 50% 100%, 0 100%);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header-content {
        padding: 0.6rem 0;
    }
    
    .header-contacts {
        display: none;
    }

    .hero {
        height: 520px;
        min-height: 520px;
        padding: 0;
    }

    .slide-content {
        padding: 4.8rem 1.5rem 5.4rem;
    }
    
    .slide-content h2 {
        font-size: 1.95rem;
        max-width: 16ch;
    }
    
    .slide-content p {
        font-size: 1rem;
    }

    .slide-medical::before {
        clip-path: polygon(66% 0, 100% 0, 100% 100%, 56% 100%);
        background-position: 58% center;
    }

    .slide-medical::after {
        clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    }

    .section-title {
        font-size: 1.9rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }

    .profissionais-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .profissional-card {
        padding: 1.5rem;
    }

    .noticias-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .noticia-card {
        padding: 1.5rem;
    }

    .news-page-main {
        padding-top: 95px;
        padding-bottom: 2.5rem;
    }

    .noticia-detalhe-card {
        padding: 1.5rem;
    }

    .noticia-detalhe-title {
        font-size: 1.6rem;
    }

    .text-center {
        gap: 0.75rem;
    }

    .text-center .btn {
        width: 100%;
        max-width: 320px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top span:last-child {
        display: none;
    }
    
    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sobre-text {
        padding: 1rem 0;
    }

    .editor-toolbar {
        gap: 0.35rem;
        padding: 0.55rem;
    }

    .editor-btn {
        font-size: 0.74rem;
        padding: 0.32rem 0.5rem;
    }

    .editor-area {
        min-height: 220px;
        padding: 0.85rem;
    }

    .noticia-detalhe-content iframe,
    .editor-area iframe {
        min-height: 220px;
    }

    .sobre-video {
        min-height: 220px;
    }
    
    .contato-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contato-item {
        padding: 1.5rem 1rem;
    }
    
    .contato-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .contato-icon {
        font-size: 1.5rem;
    }
    
    .contato-form {
        padding: 1.5rem;
        margin-top: 0;
        position: static;
    }
    
    .btn-whatsapp {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .produto-badge {
        font-size: 0.82rem;
        padding: 0.32rem 0.78rem;
    }

    .produto-hero-title {
        font-size: 1.95rem;
        line-height: 1.18;
        margin-bottom: 0.8rem;
    }

    .produto-hero-text {
        font-size: 1.02rem;
        line-height: 1.58;
        margin-bottom: 1.1rem;
    }

    .produto-hero-actions .btn {
        width: 100%;
        min-width: 0;
        font-size: 0.9rem;
    }

    .produto-figure-hero {
        width: min(100%, 320px);
        margin: 0;
        padding: 0.58rem;
    }

    .produto-figure-hero img {
        max-height: 410px;
    }

    .produto-block-soft {
        padding: 1.2rem 0.95rem;
    }

    .produto-specs-section {
        padding-top: 1.2rem;
        padding-bottom: 1.35rem;
    }

    .produto-spec-grid .produto-card {
        padding: 1.15rem 1rem;
    }

    .produto-spec-grid + .produto-lab-grid {
        margin-top: 0.8rem;
    }

    .produto-header {
        text-align: left;
        margin-bottom: 1.35rem;
    }

    .produto-header .section-title {
        font-size: 1.6rem;
    }

    .produto-header .section-subtitle {
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .produto-grid-two,
    .produto-grid-three {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .produto-card,
    .produto-benefit-card,
    .produto-model-card {
        padding: 1.2rem 1rem;
        min-height: 0;
    }

    .produto-card h4,
    .produto-benefit-card h4,
    .produto-model-card h4 {
        font-size: 1.14rem;
        margin-bottom: 0.45rem;
    }

    .produto-card p,
    .produto-benefit-card p,
    .produto-model-card p,
    .produto-list li {
        font-size: 0.95rem;
    }

    .produto-list li {
        padding-left: 1.4rem;
    }
    
    .slider-dots {
        left: 1.5rem;
        bottom: 1.25rem;
    }
    
    .slider-controls {
        justify-content: center;
        bottom: 1rem;
        padding: 0 1.5rem;
    }
    
    .imprensa-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }

    .imprensa-download {
        width: 100%;
        max-width: 320px;
    }
    
    .imprensa-item h3 {
        font-size: 1rem;
    }
    
    .theme-toggle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Modo Escuro */
body.dark-mode {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
    color: #fff;
}

body.dark-mode .header {
    background-color: #2a2a2a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .logo-img {
    filter:
        brightness(1.16)
        contrast(1.14)
        drop-shadow(0 0 1px rgba(255, 255, 255, 0.52))
        drop-shadow(0 0 10px rgba(143, 211, 255, 0.34));
}

body.dark-mode .nav-link {
    color: #e0e0e0;
}

body.dark-mode .nav-link:hover {
    color: #5fb0de;
    background-color: rgba(95, 176, 222, 0.1);
}

body.dark-mode .nav-link.active {
    color: #5fb0de;
}

body.dark-mode .contact-link {
    color: #e0e0e0;
}

body.dark-mode .contact-link:hover {
    color: #5fb0de;
}

body.dark-mode .theme-toggle {
    --toggle-accent: rgba(155, 219, 255, 0.64);
    --toggle-glow: rgba(95, 176, 222, 0.38);
    background: linear-gradient(145deg, #293845 0%, #1f2c37 100%);
    border-color: rgba(143, 211, 255, 0.55);
    color: #bce7ff;
    box-shadow:
        0 6px 14px rgba(2, 10, 18, 0.48),
        inset 0 0 0 1px rgba(176, 227, 255, 0.1);
}

body.dark-mode .theme-toggle:hover {
    border-color: #8fd3ff;
    box-shadow:
        0 10px 22px rgba(95, 176, 222, 0.34),
        inset 0 0 0 1px rgba(198, 237, 255, 0.18);
    color: #d6f1ff;
}

@media (prefers-reduced-motion: reduce) {
    .theme-toggle,
    .theme-icon {
        transition: none;
    }

    .theme-toggle.is-animating,
    .theme-toggle.is-animating::before,
    .theme-toggle.is-animating::after,
    .theme-toggle.is-animating .theme-icon {
        animation: none;
    }
}

body.dark-mode .lang-btn {
    background: rgba(95, 176, 222, 0.15);
    border-color: rgba(95, 176, 222, 0.4);
    color: #5fb0de;
}

body.dark-mode .lang-btn:hover {
    background: rgba(95, 176, 222, 0.25);
}

body.dark-mode .lang-modal {
    background: #2a2a2a;
    border-color: #444;
}

body.dark-mode .lang-modal-header {
    border-bottom-color: #444;
}

body.dark-mode .lang-modal-header span {
    color: #fff;
}

body.dark-mode .lang-modal-close {
    color: #b0b0b0;
}

body.dark-mode .lang-modal-close:hover {
    color: #fff;
}

body.dark-mode .hero {
    background: linear-gradient(135deg, #1a3a5a 0%, #0d1f33 100%);
}

body.dark-mode .slide-medical {
    background: linear-gradient(112deg, #1a2a3a 0%, #21374c 100%);
}

body.dark-mode .slide-medical::before {
    background:
        linear-gradient(180deg, rgba(18, 34, 49, 0.38) 0%, rgba(18, 34, 49, 0.52) 100%),
        var(--hero-slide-image, url('assets/img1.jpg')) 64% center / cover no-repeat;
}

body.dark-mode .slide-medical::after {
    background:
        linear-gradient(104deg, rgba(9, 52, 84, 0.9) 0%, rgba(20, 91, 136, 0.86) 56%, rgba(40, 125, 177, 0.74) 78%),
        radial-gradient(circle at 20% 24%, rgba(195, 230, 255, 0.12) 0%, rgba(195, 230, 255, 0) 44%);
}

body.dark-mode .sobre {
    background-color: #222;
}

body.dark-mode .profissionais {
    background-color: #1a1a1a;
}

body.dark-mode .profissional-card {
    background-color: #2a2a2a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .profissional-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

body.dark-mode .profissional-title {
    color: #5fb0de;
}

body.dark-mode .profissional-desc {
    color: #b0b0b0;
}

body.dark-mode .profissional-link {
    color: #5fb0de;
}

body.dark-mode .produtos {
    background-color: #1f2329;
}

body.dark-mode .produto-badge {
    background: #0f9f70;
}

body.dark-mode .produto-hero-title,
body.dark-mode .produto-header .section-title,
body.dark-mode .produto-card h4,
body.dark-mode .produto-benefit-card h4,
body.dark-mode .produto-model-card h4 {
    color: #8fcdff;
}

body.dark-mode .produto-hero-text,
body.dark-mode .produto-header .section-subtitle,
body.dark-mode .produto-benefit-card p,
body.dark-mode .produto-model-card p {
    color: #a7bacd;
}

body.dark-mode .produto-figure,
body.dark-mode .produto-block-soft,
body.dark-mode .produto-card,
body.dark-mode .produto-benefit-card,
body.dark-mode .produto-model-card {
    background: linear-gradient(180deg, #2b3340 0%, #252d39 100%);
    border-color: #3a4654;
}

body.dark-mode .produto-block-soft {
    background: linear-gradient(180deg, #2c3544 0%, #252d39 100%);
}

body.dark-mode .produto-figure {
    background: #252d39;
}

body.dark-mode .produto-figure-hero {
    background: linear-gradient(160deg, #2a3443 0%, #222b37 100%);
    border-color: #3b4a5d;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
}

body.dark-mode .produto-figure-hero img {
    background: #253040;
    box-shadow: none;
}

body.dark-mode .produto-list li,
body.dark-mode .produto-card p {
    color: #d9e6f0;
}

body.dark-mode .produto-list li::before,
body.dark-mode .produto-check {
    color: #25c891;
    border-color: #25c891;
}

body.dark-mode .produto-hero-actions .btn-secondary {
    border-color: #4f6174;
    color: #d9e6f0;
    background: transparent;
}

body.dark-mode .produto-hero-actions .btn-secondary:hover {
    background: rgba(159, 196, 224, 0.12);
}

body.dark-mode .produto-spec-grid .produto-card h4 {
    border-bottom-color: #3f4f63;
}

body.dark-mode .figure-placeholder {
    background: linear-gradient(135deg, rgba(95, 176, 222, 0.1) 0%, rgba(74, 159, 208, 0.15) 100%);
    border-color: rgba(95, 176, 222, 0.3);
    color: #5fb0de;
}

body.dark-mode .sobre-video-help {
    color: #b8c9d8;
    border-top-color: rgba(95, 176, 222, 0.25);
    background-color: rgba(95, 176, 222, 0.08);
}

body.dark-mode .sobre-video-help a {
    color: #8fcdff;
}

body.dark-mode .sobre-video-help a:hover {
    color: #b4dfff;
}

body.dark-mode .produtos-card,
body.dark-mode .noticia-card {
    background-color: #2a2a2a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .noticias {
    background-color: #1a1a1a;
}

body.dark-mode .noticia-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

body.dark-mode .noticia-date {
    color: #5fb0de;
}

body.dark-mode .noticia-excerpt {
    color: #b0b0b0;
}

body.dark-mode .noticias-loading,
body.dark-mode .noticias-empty,
body.dark-mode .noticias-error,
body.dark-mode .noticia-detalhe-card,
body.dark-mode .painel-card {
    background-color: #2a2a2a;
    border-color: #3a3a3a;
}

body.dark-mode .noticias-error {
    color: #ff9e9e;
}

body.dark-mode .news-page-main {
    background-color: #1a1a1a;
}

body.dark-mode .noticia-detalhe-content p,
body.dark-mode .painel-help,
body.dark-mode .painel-recentes-list span {
    color: #b8c9d8;
}

body.dark-mode .painel-form textarea,
body.dark-mode .painel-form input[type="text"],
body.dark-mode .painel-form input[type="date"] {
    background-color: #1f1f1f;
    border-color: #3a3a3a;
    color: #e9f1f8;
}

body.dark-mode .painel-editor {
    background-color: #1f1f1f;
    border-color: #3a3a3a;
}

body.dark-mode .editor-toolbar {
    background-color: #232b33;
    border-color: #3a4651;
}

body.dark-mode .editor-btn {
    background-color: #1d252d;
    border-color: #42525e;
    color: #d6e6f3;
}

body.dark-mode .editor-btn:hover:not(:disabled) {
    background-color: #253341;
    border-color: #567288;
    color: #a6d8ff;
}

body.dark-mode .editor-area:empty::before {
    color: #7f94a6;
}

body.dark-mode .noticia-detalhe-content blockquote,
body.dark-mode .editor-area blockquote {
    background: rgba(95, 176, 222, 0.15);
    border-left-color: rgba(95, 176, 222, 0.5);
    color: #cae3f5;
}

body.dark-mode .noticia-detalhe-content a,
body.dark-mode .painel-recentes-link {
    color: #8fc5ef;
}

body.dark-mode .noticia-detalhe-content img,
body.dark-mode .noticia-detalhe-content video,
body.dark-mode .noticia-detalhe-content iframe,
body.dark-mode .editor-area img,
body.dark-mode .editor-area video,
body.dark-mode .editor-area iframe {
    background: #202a34;
    border-color: #355067;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

body.dark-mode .painel-delete-btn {
    background: rgba(226, 109, 109, 0.14);
    border-color: rgba(226, 109, 109, 0.34);
    color: #ffc3c3;
}

body.dark-mode .painel-edit-btn {
    background: rgba(95, 176, 222, 0.14);
    border-color: rgba(95, 176, 222, 0.34);
    color: #b8e2ff;
}

body.dark-mode .painel-status.info {
    background-color: rgba(95, 176, 222, 0.14);
    border-color: rgba(95, 176, 222, 0.32);
    color: #a6dbff;
}

body.dark-mode .painel-status.success {
    background-color: rgba(83, 191, 123, 0.14);
    border-color: rgba(83, 191, 123, 0.35);
    color: #9fe0b8;
}

body.dark-mode .painel-status.error {
    background-color: rgba(226, 109, 109, 0.13);
    border-color: rgba(226, 109, 109, 0.35);
    color: #ffaaaa;
}

body.dark-mode .faq {
    background-color: #1a1a1a;
}

body.dark-mode .faq-item {
    background: #232a31;
    border-color: #3a4652;
}

body.dark-mode .faq-question {
    color: #eaf3fb;
}

body.dark-mode .faq-icon {
    color: #8fcdf3;
}

body.dark-mode .faq-question:hover {
    color: #9ddcff;
}

body.dark-mode .faq-answer {
    color: #c8d8e6;
}

body.dark-mode .imprensa {
    background-color: #1a1a1a;
}

body.dark-mode .imprensa-item {
    background: #232a31;
    border-color: #3a4652;
}

body.dark-mode .imprensa-item h3 {
    color: #eaf3fb;
}

body.dark-mode .imprensa-link {
    color: #8fcdf3;
}

body.dark-mode .imprensa-item-desc,
body.dark-mode .imprensa-item-summary {
    color: #a7bacd;
}

body.dark-mode .imprensa-download {
    border-color: #2f7fb8;
}

body.dark-mode .feature-item {
    background-color: #232a31;
    border-color: #3a4652;
    color: #eaf3fb;
}

body.dark-mode .feature-item span {
    color: #eaf3fb;
}

body.dark-mode .contato {
    background-color: #222;
}

body.dark-mode .contato-item {
    background-color: #2a2a2a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: #333;
}

body.dark-mode .contato-item:hover {
    border-color: rgba(95, 176, 222, 0.3);
    box-shadow: 0 8px 20px rgba(95, 176, 222, 0.2);
}

body.dark-mode .contato-icon-wrapper {
    background: linear-gradient(135deg, rgba(95, 176, 222, 0.2), rgba(74, 159, 208, 0.2));
}

body.dark-mode .contato-item:hover .contato-icon-wrapper {
    background: linear-gradient(135deg, #5fb0de, #4a9fd0);
}

body.dark-mode .contato-item h4 {
    color: #fff;
}

body.dark-mode .contato-action-label {
    color: #5fb0de;
}

body.dark-mode .contato-item-action:hover .contato-action-label {
    color: #6bb0ff;
}

body.dark-mode .contato-link-item {
    color: #5fb0de;
}

body.dark-mode .contato-link-item:hover {
    color: #6bb0ff;
}

body.dark-mode .contato-address {
    color: #b0b0b0;
}

body.dark-mode .contato-map-wrapper {
    border-color: rgba(95, 176, 222, 0.28);
    box-shadow: inset 0 0 0 1px rgba(95, 176, 222, 0.15);
    background-color: #253542;
}

body.dark-mode .contato-map-link span {
    background-color: rgba(28, 41, 53, 0.9);
    color: #b8def7;
    border-color: rgba(95, 176, 222, 0.35);
}

body.dark-mode .contato-map-link:hover span {
    background-color: #334758;
    color: #d5ecff;
}

body.dark-mode .contato-form {
    background-color: #2a2a2a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .form-group label {
    color: #e0e0e0;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background-color: #333;
    border-color: #444;
    color: #e0e0e0;
}

body.dark-mode .form-group input:hover,
body.dark-mode .form-group select:hover,
body.dark-mode .form-group textarea:hover {
    border-color: #555;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group select:focus,
body.dark-mode .form-group textarea:focus {
    border-color: #5fb0de;
    background-color: #3a3a3a;
    box-shadow: 0 0 0 3px rgba(95, 176, 222, 0.15);
}

body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder {
    color: #888;
}

body.dark-mode .btn-primary {
    background-color: #5fb0de;
    color: #fff;
}

body.dark-mode .btn-primary:hover {
    background-color: #4a9fd0;
}

body.dark-mode .btn-secondary {
    color: #5fb0de;
    border-color: #5fb0de;
}

body.dark-mode .btn-secondary:hover {
    background-color: #5fb0de;
    color: #1a1a1a;
}

body.dark-mode .btn-outline {
    color: #5fb0de;
    border-color: #5fb0de;
}

body.dark-mode .btn-outline:hover {
    background-color: #5fb0de;
    color: #1a1a1a;
}

body.dark-mode .section-subtitle {
    color: #b0b0b0;
}

body.dark-mode .feature-icon {
    color: #5fb0de;
}

body.dark-mode .back-to-top {
    background-color: #5fb0de;
    color: #1a1a1a;
}

body.dark-mode .back-to-top:hover {
    background-color: #4a9fd0;
}

body.dark-mode .footer {
    background-color: #111;
}

body.dark-mode .footer-section h3,
body.dark-mode .footer-section h4 {
    color: #fff;
}

body.dark-mode .footer-section a {
    color: #b0b0b0;
}

body.dark-mode .footer-section a:hover {
    color: #fff;
}

body.dark-mode .footer-section p {
    color: #b0b0b0;
}

body.dark-mode .slider-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

body.dark-mode .slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

body.dark-mode .dot {
    background-color: rgba(255, 255, 255, 0.3);
}

body.dark-mode .dot.active {
    background-color: #fff;
}

body.dark-mode .form-message.success {
    background-color: #1e4d2e;
    color: #90ee90;
    border-color: #2d5a3d;
}

body.dark-mode .form-message.error {
    background-color: #4d1e1e;
    color: #ff6b6b;
    border-color: #5a2d2d;
}

body.dark-mode .form-group.error input,
body.dark-mode .form-group.error select,
body.dark-mode .form-group.error textarea {
    border-color: #ff6b6b;
}

body.dark-mode .form-group.success input,
body.dark-mode .form-group.success select,
body.dark-mode .form-group.success textarea {
    border-color: #90ee90;
}
