/* Reset e Variáveis */
:root {
    --primary-color: #2993D6;
    --secondary-color: #1B5A8A;
    --text-color: #333;
    --background-color: #fff;
    --section-padding: 5rem;
    --card-bg: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    --primary-color: #3A94D5;
    --background-color: #1a1a1a;
    --text-color: #ffffff;
    --card-bg: #1a1a1a;
}

[data-theme="dark"] body,
[data-theme="dark"] section,
[data-theme="dark"] .contact-info,
[data-theme="dark"] .team-member,
[data-theme="dark"] .card,
[data-theme="dark"] .objective-card,
[data-theme="dark"] .solution-card,
[data-theme="dark"] .mvv-card {
    background-color: #1a1a1a !important;
    box-shadow: none !important;
}

[data-theme="dark"] * {
    background-color: #1a1a1a !important;
}

[data-theme="dark"] img {
    background-color: transparent !important;
}

[data-theme="dark"] .nav-logo-link img,
[data-theme="dark"] .contact-logo img {
    filter: brightness(0) invert(1);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] p,
[data-theme="dark"] span,
[data-theme="dark"] a,
[data-theme="dark"] div {
    color: #ffffff !important;
}

[data-theme="dark"] .nav-logo-link,
[data-theme="dark"] .nav-logo {
    filter: brightness(0) invert(1);
}

[data-theme="dark"] header {
    background-color: #1a1a1a !important;
}

[data-theme="dark"] nav {
    background-color: #1a1a1a !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .nav-logo-link {
    filter: brightness(0) invert(1);
}

[data-theme="dark"] .team-member h3,
[data-theme="dark"] .team-member p,
[data-theme="dark"] .contact-info a,
[data-theme="dark"] .contact-info .static-contact,
[data-theme="dark"] .social-media-text,
[data-theme="dark"] .social-media a {
    color: #ffffff !important;
}

[data-theme="dark"] .contact-info a:hover,
[data-theme="dark"] .social-media a:hover {
    color: var(--primary-color) !important;
}

[data-theme="dark"] .team-member {
    background: var(--card-bg);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .contact-info {
    background-color: #1a1a1a;
    box-shadow: none;
}

[data-theme="dark"] .contact-info a,
[data-theme="dark"] .contact-info .static-contact,
[data-theme="dark"] .social-media-text,
[data-theme="dark"] .social-media a {
    color: #ffffff !important;
}

[data-theme="dark"] .contact-info hr {
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .team-member {
    background-color: #1a1a1a;
    box-shadow: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: url('/cursors/health-cursor.png'), auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Proteção contra cópia */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

img:not([src$='.gif']), video {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

::selection {
    background: transparent;
    color: inherit;
}

::-moz-selection {
    background: transparent;
    color: inherit;
}

section {
    padding: 3rem 2rem;
}

section h2 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Cores base */
.hero,
header,
footer {
    background-color: #0092D7;
}

/* Modo escuro */
[data-theme="dark"] .hero,
[data-theme="dark"] header,
[data-theme="dark"] footer {
    background-color: #1a1a1a !important;
}

/* Header e Navegação */
header {
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

[data-theme="dark"] nav {
    background-color: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-logo-link {
    display: flex;
    align-items: center;
    background: transparent !important;
}

.nav-logo {
    height: 40px;
    width: auto;
    background: transparent !important;
}

[data-theme="dark"] .nav-logo-link,
[data-theme="dark"] .nav-logo-link img,
[data-theme="dark"] .nav-logo {
    background: transparent !important;
}

[data-theme="dark"] .nav-logo-link img {
    filter: brightness(0) invert(1);
}

[data-theme="dark"] .nav-logo-link {
    background: transparent !important;
}

[data-theme="dark"] header {
    background-color: #1a1a1a !important;
}

[data-theme="dark"] .hero {
    background-color: #1a1a1a !important;
}

/* Espaço para compensar a navbar fixa */
main {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 2rem;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    max-width: 400px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.mascote {
    max-width: 200px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsividade para a mascote */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }
    
    .mascote {
        max-width: 150px;
        margin-top: 2rem;
    }
}

/* Efeito de hover na mascote */
.mascote {
    transition: transform 0.3s ease;
}

.mascote:hover {
    transform: scale(1.1) rotate(5deg);
}

.hero * {
    color: white !important;
}

.hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
}

.hero-mascot {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-mascot {
    width: 400px;
    height: auto;
    object-fit: contain;
    margin-right: 20px;
}

/* Ajuste responsivo para a mascote */
@media (max-width: 768px) {
    .doctor-mascot {
        width: 300px;
    }
}

/* Grid de Objetivos */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.objective-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-color);
    text-align: left;
}

.objective-card i {
    color: #3A94D5;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.objective-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.objective-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Equipe */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    margin: 1rem;
    transition: all 0.3s ease;
    background: var(--card-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .team-member {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .team-member:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.team-member h3 {
    color: var(--text-color);
    margin: 1rem 0;
    font-size: 1.5rem;
}

.team-member p {
    color: var(--text-color);
    margin: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

.team-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
}

/* Contato */
#contato {
    text-align: center;
    padding: 3rem 2rem;
}

#contato h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 800px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #0092D7;
    position: relative;
}

.contact-info::before {
    content: '💉 🏥 ⚕️ 🩺 💊';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    padding: 0 15px;
    font-size: 20px;
    white-space: nowrap;
    border: 2px solid #0092D7;
    border-radius: 20px;
}

.contact-info::after {
    content: '💉 🏥 ⚕️ 🩺 💊';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    padding: 0 15px;
    font-size: 20px;
    white-space: nowrap;
    border: 2px solid #0092D7;
    border-radius: 20px;
}

[data-theme="dark"] .contact-info {
    background-color: var(--background-color);
    border: 2px solid #0092D7;
}

[data-theme="dark"] .contact-info::before,
[data-theme="dark"] .contact-info::after {
    border-color: #0092D7;
}

.contact-info a,
.contact-info .static-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    margin: 1rem 0;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-info hr {
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
}

[data-theme="dark"] .contact-info hr {
    background: rgba(255, 255, 255, 0.1);
}

.contact-logo {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 1rem;
}

.contact-logo {
    height: 60px;
}

.contact-logo img {
    height: 100%;
    width: auto;
}

[data-theme="dark"] .contact-logo img {
    filter: brightness(0) invert(1);
}

.social-media-text {
    color: var(--text-color);
    margin: 1rem 0;
}

.social-media a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: var(--primary-color);
}

/* Quem Somos */
#quem-somos {
    padding-top: 6rem;
}

#quem-somos .content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

#quem-somos p {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 80%;
    margin-right: 200px;
}

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

.mvv-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.mvv-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mvv-card p, .mvv-card ul {
    color: var(--text-color);
    line-height: 1.6;
}

.mvv-card ul {
    list-style: none;
    padding: 0;
}

.mvv-card li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.mvv-card li:before {
    content: "•";
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

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

.card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px var(--shadow-color);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card ul {
    list-style-position: inside;
}

/* Objetivos */
.objetivos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    padding: 2rem 0;
}

.objetivo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease;
    height: 100%;
}

.objetivo-item i {
    font-size: 2rem;
    color: #3A94D5;
    margin-bottom: 1rem;
}

.objetivo-item h3 {
    font-size: 1.1rem;
    margin: 1rem 0;
    color: #333;
}

/* Team Section */
.team {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.team-member {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
    position: relative;
}

.member-photo {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.member-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0060B4;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,96,180,0.2);
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.leader-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #0060B4;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,96,180,0.3);
    z-index: 1;
}

.leader-badge i {
    font-size: 1rem;
    color: #FFD700;
}

.crown-icon {
    color: #FFD700;
}

.team-member h3 {
    color: #333;
    margin: 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.team-member p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: white;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-left, .contact-right {
    text-align: left;
}

.contact-left p, .contact-right p {
    margin-bottom: 1rem;
    color: #333;
}

.contact-left i, .contact-right i {
    color: #2993D6;
    margin-right: 10px;
    font-size: 1.1rem;
}

.contact-left a, .contact-right a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.contact-left a:hover, .contact-right a:hover {
    color: #2993D6;
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-details {
    text-align: center;
}

.contact-details p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-details i {
    color: #2993D6;
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-details a {
    color: #2993D6;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #3A94D5;
}

.contact-item a {
    color: #3A94D5;
    text-decoration: none;
}

/* Contact Info Bar */
.contact-info-bar {
    background-color: #0092D7;
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.contact-info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-group {
    display: flex;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item i {
    color: white;
}

/* Soluções Sections */
.solutions h2 {
    color: #0092D7;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.solutions h2::after {
    content: "←";
    color: #0092D7;
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.solution-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.solution-content p {
    text-align: left;
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.solution-content ul {
    list-style: none;
    padding: 0;
}

.solution-content li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.solution-content li i {
    color: #3A94D5;
    margin-right: 1rem;
    font-size: 1.25rem;
    width: 25px;
    text-align: center;
}

/* Contato */
#contato {
    padding-top: 100px;
    margin-bottom: 0;
    background-color: #fff;
}

/* Header e Footer mantendo a cor azul em ambos os modos */
header,
footer,
.header-content,
.footer {
    background-color: #0092D7;
}

[data-theme="dark"] header,
[data-theme="dark"] footer,
[data-theme="dark"] .header-content,
[data-theme="dark"] .footer {
    background-color: #1a1a1a;
}

/* Texto branco no header e footer */
header *,
footer * {
    color: white !important;
}

[data-theme="dark"] header *,
[data-theme="dark"] footer *,
[data-theme="dark"] .hero * {
    color: white !important;
}

/* Footer */
footer {
    background-color: #0092D7;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

footer .credits {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

footer .credits a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

footer .credits a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

footer p {
    margin: 0;
}

.credits {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.credits-text {
    color: white;
    font-size: 0.75rem;
    opacity: 0.9;
}

.credits-text a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.credits-text a:hover {
    opacity: 0.8;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 2px;
}

.year-text {
    color: white;
    font-size: 0.7rem;
    opacity: 0.9;
    margin-top: -2px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.thank-you-message {
    font-style: italic;
    color: var(--text-color);
    margin-right: 1rem;
}

.contact-logo {
    height: 40px;
}

.contact-logo img {
    height: 100%;
    width: auto;
}

[data-theme="dark"] .contact-logo img {
    filter: brightness(0) invert(1);
}

/* Header e Footer no modo escuro */
[data-theme="dark"] header,
[data-theme="dark"] footer {
    background-color: #1a1a1a;
}

[data-theme="dark"] .header-content {
    background-color: #1a1a1a;
}

[data-theme="dark"] .footer {
    background-color: #1a1a1a;
}

/* Cor dos ícones consistente */
.contact-info i,
.social-media i {
    color: var(--primary-color);
}

[data-theme="dark"] .contact-info i,
[data-theme="dark"] .social-media i {
    color: var(--primary-color);
}

/* Micro-interações */
.service-card,
.mvv-card,
.team-member {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.mvv-card:hover,
.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Links e botões */
.nav-links a,
.cta-button {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after,
.cta-button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.cta-button:hover::after {
    width: 100%;
}

/* Floating CTA com Mascote */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button-container {
    display: flex;
    align-items: center;
}

.chat-mascot {
    width: 210px;
    height: auto;
}

.chat-button {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    background-color: #0092D7;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 1;
    margin-top: -20px;
}

.chat-button:hover {
    transform: scale(1.05);
}

[data-theme="dark"] .chat-button {
    background-color: #0092D7;
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .chat-button:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    padding: 8px;
    background: #0092D7;
    color: white;
    z-index: 1001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Feedback visual para interações */
button:active,
.cta-button:active {
    transform: scale(0.98);
}

/* Melhorias de acessibilidade */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Transições suaves */
* {
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        display: none;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        width: 100%;
    }

    nav ul.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-logo img {
        width: 150px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Hero Logo */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-logo img {
    width: 300px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 2rem;
}

.hero-text {
    text-align: left;
    flex: 1;
    min-width: 300px;
}

/* WhatsApp Icon */
.whatsapp-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-icon {
    color: #25D366;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

/* Designer Credit */
.designer-credit {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Agradecimento */

.creator-signature {
    width: 70px;
    height: auto;
    vertical-align: middle;
    margin-top: 10px;
    display: block;
    margin: 0 auto;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: var(--background-color);
}

footer p {
    margin: 5px 0;
    color: var(--text-color);
}

/* Mascote ao lado do texto de agradecimento */
.contact-mascot {
    width: 210px;
    height: auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: block;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.static-mascot, .animated-mascot {
    opacity: 1 !important;
    transition: none !important;
}

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button-container {
    position: relative;
    display: inline-block;
}

.chat-mascot {
    position: absolute;
    width: 180px;
    height: auto;
    left: 50%;
    top: -280%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.chat-button {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    background-color: #0092D7;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s ease;
    z-index: 1;
    margin-top: -20px;
}

.chat-button:hover {
    transform: scale(1.05);
}

[data-theme="dark"] .chat-button {
    background-color: #0092D7;
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .chat-button:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Ajuste para o modo escuro */
[data-theme="dark"] .contact-info::before,
[data-theme="dark"] .contact-info::after {
    background: #1a1a1a;
    border: 2px solid #0092D7;
    border-radius: 20px;
}

/* Aplicando FXAA apenas nas mascotes GIF */
.static-mascot,
.animated-mascot {
    image-rendering: optimizeQuality;
    -ms-interpolation-mode: bicubic;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    filter: url(#fxaa);
}

img:not(.static-mascot):not(.animated-mascot) {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    content-visibility: auto;
    loading: lazy;
}

.team-member img,
.hero-logo,
.nav-logo {
    filter: brightness(1.01) contrast(1.01);
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Ajustes da mascote e balão */
.mascot-container {
    position: relative;
    display: inline-block;
    margin-top: 30px;
    margin-right: 50px;
    width: 210px;
    height: 210px;
}

.contact-mascot {
    width: 210px;
    height: auto;
    cursor: pointer;
    display: block;
    object-fit: contain;
}

.speech-bubble {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 15px;
    min-width: 200px;
    text-align: center;
    top: 20%;
    left: 80%;
    transform: translateY(-50%);
    border: 2px solid #0092D7;
    color: #333;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s;
    z-index: 100;
}

/* Setinha do balão */
.speech-bubble::after {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 12px 12px 12px 0;
    border-style: solid;
    border-color: transparent #0092D7 transparent transparent;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent white transparent transparent;
    z-index: 1;
}

/* Animação do balão */
.mascot-container:hover .speech-bubble {
    opacity: 1;
    visibility: visible;
}

/* Logo branca */
.hero-logo {
    max-width: 400px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

[data-theme="dark"] .hero-logo {
    filter: brightness(0) invert(1);
}

/* Cursor personalizado */
* {
    cursor: url('/cursors/health-cursor.png'), auto !important;
}

/* Cursor pointer para elementos clicáveis */
a, button, .chat-button, .team-member.leader {
    cursor: pointer !important;
}

.icon-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border: 2px solid #0092D7;
    border-radius: 20px;
    background-color: white;
    margin: 20px 0;
}

[data-theme="dark"] .icon-container {
    border: 2px solid #0092D7;
    background-color: var(--background-color);
}

.icon-container img {
    width: 30px;
    height: 30px;
}

/* Títulos das seções */
.section-title,
.contact-title,
.objectives-title,
.team-title,
.solutions-title,
section h2 {
    color: #2C64AB !important;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Modo escuro - títulos das seções */
[data-theme="dark"] .section-title,
[data-theme="dark"] .contact-title,
[data-theme="dark"] .objectives-title,
[data-theme="dark"] .team-title,
[data-theme="dark"] .solutions-title,
[data-theme="dark"] section h2 {
    color: white !important;
}

/* Navegação */
.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

/* Cores base */
.hero,
header,
footer {
    background-color: #0092D7 !important;
}

/* Modo escuro - header, hero, footer */
[data-theme="dark"] .hero,
[data-theme="dark"] header,
[data-theme="dark"] footer {
    background-color: #1a1a1a !important;
}

/* Garantir texto branco em áreas coloridas */
header *,
footer *,
.hero * {
    color: white !important;
}

/* Transições suaves */
.hero,
header,
footer,
nav,
* {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Reset de cores para elementos específicos */
.nav-links a,
.section-title,
.contact-title,
.objectives-title,
.team-title,
.solutions-title {
    color: var(--text-color) !important;
}

[data-theme="dark"] .nav-links a,
[data-theme="dark"] .section-title,
[data-theme="dark"] .contact-title,
[data-theme="dark"] .objectives-title,
[data-theme="dark"] .team-title,
[data-theme="dark"] .solutions-title {
    color: var(--text-color) !important;
}

.theme-switch {
    position: fixed;
    top: 80px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 2px 5px var(--shadow-color);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9999;
    border: 1px solid rgba(58, 148, 213, 0.2);
}

.theme-switch:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-color);
    border-color: var(--primary-color);
}

.theme-switch i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.theme-switch span {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}
