/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2a6a6a;
    background-color: #f8f8fa;
}

/* ===== VARIÁVEIS CSS (cores da clínica) ===== */
:root {
    --primary-green: #2a6a6a;
    --light-blue: #e8f4f8;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --text-dark: #2a6a6a;
    --text-gray: #6b7280;
    --background-white: #ffffff;
    --background-light: #e8f4f8;
    
    /* Layout */
    --container-max-width: 1200px;
    --header-height: 80px;
    --border-radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    /* Transições */
    --transition: all 0.3s ease;
}

/* ===== UTILITÁRIOS ===== */
.container {
    max-width: var(--container-max-width);
    margin: -6rem auto 0 auto;
    padding: 0 1rem;
}

/* ===== HEADER/NAVBAR ===== */
.navbar {
    background: var(--background-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
}

.navbar-container {
    height: 100%;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-logo .logo-link {
    text-decoration: none;
    color: var(--primary-green);
}

.logo-Montreal-nav {
    width: 140px;
    height: auto;
}

/* Menu Desktop */
.desktop-menu {
    display: none;
    flex: 1;
    justify-content: center;
}

.desktop-menu-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.desktop-menu-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.desktop-menu-link:hover {
    color: var(--accent-green);
}

.desktop-menu-link.active {
    color: var(--accent-green);
    border-bottom: 2px solid var(--accent-green);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 0.5rem 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-link:hover {
    background: var(--background-light);
    color: var(--accent-green);
}

/* WhatsApp Button */
.whatsapp-desktop {
    display: none;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: inherit;
    padding: 0.5rem 0;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-button:hover {
    transform: translateY(-1px);
}

.whatsapp-button img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.whatsapp-text {
    font-size: 1rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-right: 2rem;
}

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

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-menu-list {
    list-style: none;
}

.mobile-menu-item {
    margin-bottom: 0.5rem;
}

.mobile-menu-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #e5e7eb;
}

#discauculia{
    padding-bottom: 4%;
    padding-top: 4%;
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    position: relative;
    cursor: pointer;
}

.mobile-dropdown-toggle::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
    content: '−';
    transform: rotate(0deg);
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9fafb;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0;
}

.mobile-dropdown-menu li {
    margin: 0;
    padding: 0;
}

.mobile-dropdown-menu .mobile-menu-link {
    padding-left: 1.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid #e5e7eb;
}

/* ===== MAIN CONTENT ===== */
main {
    margin-top: var(--header-height);
}

/* Hero Section */
.hero-banner {
    background: #e8f4f8;
    padding: 4rem 0rem 2rem 0rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.hero-logo-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-emblem {
    width: 200px;
    height: 200;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-specializations {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Main Content */
.main-content {
    padding-top: - 2rem;
}

.hero-banner + .main-content {
    margin-top: 8rem;
}

.company-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.title-h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.text-content {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.text-content-left {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0 0 1rem 0;
    text-align: left;
}

.areas-list {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
    max-width: 800px;
    margin: 1rem auto 1rem;
}

.areas-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.areas-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.areas-list li strong {
    color: var(--text-dark);
}

/* Services Section */
.services-section {
    margin: 0 0 4rem 0;
    padding: 0;
    border-radius: var(--border-radius);
}

/* ===== HEADER DA PÁGINA COM LOGO ===== */
.page-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: -2rem;
    margin-top: 0rem;
    min-height: 140px;
    overflow: visible;
}

.page-logo {
    width: 120px;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
    margin-left: 2rem;
}

.page-header .section-title,
.page-header .page-title {
    margin: 0 0 0.5rem 0;
    flex: 1;
    align-self: center;
}

/* ===== LAYOUT SOBRE MIM COM IMAGENS ===== */
.sobre-mim-content {
    margin-bottom: 3rem;
    position: relative;
    margin-top: -2rem;
}

.sobre-mim-text {
    text-align: justify;
    line-height: 1.6;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 15px;
    position: relative;
}

.sobre-mim-images {
    display: contents;
}

.sobre-mim-images .sueli-photo-1 {
    float: left;
    margin: 0 2rem 1rem 9rem;
    shape-outside: margin-box;
    clear: left;
}

.sobre-mim-images .sueli-photo-2 {
    float: right;
    margin: 1rem 9rem 0 2rem;
    shape-outside: margin-box;
    clear: right;
}

/* Estilos das fotos da Sueli */
.sueli-photo {
    min-height: 260px;
    max-height: 260px;
    border-radius: 15px;
    object-fit: cover;
    object-position: center;
    border: 4px solid #ffffff;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sueli-photo:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Responsividade para o layout sobre mim */
@media (max-width: 1024px) {
    
    .sobre-mim-text {
        padding: 1.5rem;
    }
    
    .sobre-mim-images .sueli-photo-1 {
        margin: 0 1.5rem 1rem -1.5rem;
    }
    
    .sobre-mim-images .sueli-photo-2 {
        margin: 1rem -1.5rem 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
        margin-bottom: 0;
        margin-top: 0;
    }
    
    .page-header .section-title,
    .page-header .page-title {
        text-align: center;
    }
    
    .page-logo {
        width: 100px;
        margin-left: 0;
        margin-right: auto;
        margin-bottom: 1.5rem;
        display: block;
        position: relative;
        z-index: 1;
    }
    
    /* Centralizar logo acima do h1 nas páginas específicas (exceto index) */
    .main-content > .page-logo {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }
    
    /* Garantir que o container não suba para trás do logo */
    .main-content > .container {
        margin-top: 0 !important;
        padding-top: 0;
    }
    
    /* Quando há logo antes do container, remover margin negativo */
    .main-content .page-logo + .container {
        margin-top: 0 !important;
    }
    
    .sobre-mim-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .sobre-mim-text {
        text-align: left;
        order: 1;
        background: transparent;
        padding: 1rem;
    }
    
    .sobre-mim-images {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        order: 2;
        margin-bottom: 5%;
    }
    
    .sobre-mim-images .sueli-photo-1,
    .sobre-mim-images .sueli-photo-2 {
        float: none;
        margin: 0;
        clear: none;
    }
}

@media (max-width: 480px) {
    .sobre-mim-images {
        margin-bottom: 8%;
    }
    

}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

h2 {
    text-align: center;
}

.section-subtitle {
    margin-bottom: 2rem;
}

.services-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.service-card {
    background: transparent;
    padding: 0;
    text-align: center;
    transition: var(--transition);
    max-width: 250px;
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-image-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f4f8, #f0f9ff);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid #e8f4f8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f9ff, #e8f4f8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-image-text {
    color: #2a6a6a;
    font-size: 2rem;
}

.service-icon-overlay {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 35px;
    height: 35px;
    background: #2a6a6a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.overlay-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.service-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: var(--background-light);
    padding: 3rem 0;
    text-align: center;
    margin: 4rem 0;
    border-radius: var(--border-radius);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Info Cards */
.info-cards-section {
    margin-top: 4rem;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-green);
}

.info-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-card-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.info-card-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.info-card-link:hover {
    color: var(--primary-green);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 0 1rem;
    margin-top: 2rem;
}

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

.social-media {
    text-align: right;
    padding: 0.5rem;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.social-link img {
    width: 32px;
    height: 32px;
}

.social-link img[src*="whatsapp"] {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain;
}

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

.footer-section {
    text-align: center;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-icon {
    font-size: 1.2rem;
}

.footer-text {
    margin-bottom: 0.5rem;
}

.footer-text a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-text a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    padding-top: 0rem;
    color: #9ca3af;
    position: relative;
    margin-top: 1rem;
}

.footer-copyright::before {
    content: '';
    position: absolute;
    top: -0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: #6b7280;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .whatsapp-desktop {
        display: block;
    }
    
    .whatsapp-mobile-nav {
        display: none;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-logo-section {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-logo-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .logo-emblem {
        margin: 0 auto;
    }
    
    .hero-text-section {
        text-align: center;
        min-width: auto;
    }
    
    .logo-image {
        width: 150px;
        margin: 0 auto;
    }
    
    .services-section {
        margin-top: -2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-specializations {
        font-size: 1rem;
    }
    
    .title-h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .service-card {
        max-width: 220px;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
}

/* Symptoms Grid */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.symptom-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.symptom-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.symptom-bullet {
    color: var(--accent-green);
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.symptom-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .symptoms-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .symptom-card {
        padding: 1.25rem;
    }
}

/* ===== CONTATO PAGE STYLES ===== */
.contact-channels-section {
    margin-bottom: 4rem;
    text-align: center;
}

.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-channel-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e5e7eb;
}

.contact-channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.channel-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.channel-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.channel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.channel-info {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.channel-link {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.channel-link:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.contact-info-section {
    margin-top: 2rem;
    text-align: center;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info-simple {
    text-align: left;
}

.info-simple-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-icon {
    font-size: 1.5rem;
    align-self: center;
}

.info-simple-content p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0.25rem 0;
}

.info-simple:last-child .info-simple-title {
    justify-content: center;
}

.info-simple:last-child .info-simple-content p {
    text-align: center;
}

/* Lista de sintomas em duas colunas */
.symptoms-list {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem 4rem;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.symptoms-list li {
    text-align: left;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.symptoms-list li::before {
    content: '✓';
    color: #ff6b35;
    font-weight: bold;
    flex-shrink: 0;
}

/* Lista de áreas de atuação no estilo do print */
.areas-atucao-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.areas-atucao-list li {
    text-align: left;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.areas-atucao-list li::before {
    content: '✓';
    color: #ff6b35;
    font-weight: bold;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .symptoms-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
}

@media (max-width: 768px) {
    .contact-channels-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-channel-card {
        padding: 1.5rem;
    }
    
    .info-simple {
        text-align: center;
    }
}

/* ===== ATENDIMENTO PAGE PROFESSIONAL LAYOUT ===== */

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: -2rem 0 2rem 0;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}



.intro-section {
    margin-bottom: 3rem;
    text-align: justify;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.area-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-green);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.area-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.area-description {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f9ff 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    border-left: 4px solid var(--light-blue);
}

.highlight-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

.section {
    margin: 4rem 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
    text-align: center;
}

.activities-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.activity-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--accent-orange);
    transition: transform 0.2s ease;
}

.activity-item:hover {
    transform: translateX(5px);
}

.activity-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.activity-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

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

.specialty-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}

.specialty-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
    border-left-color: var(--primary-green);
}

.specialty-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.specialty-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

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

.symptom-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

.symptom-item:hover {
    transform: translateX(3px);
}

.symptom-bullet {
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.symptom-text {
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .areas-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .specialty-item {
        padding: 1.25rem;
        min-height: 100px;
    }
    
    .symptoms-list {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper {
        padding: 1rem 0;
    }
    
    /* Subir content-wrapper apenas nas páginas específicas (que têm page-header antes) */
    .page-header + .content-wrapper {
        margin-top: -5.5rem;
    }
}

/* ===== ATENDIMENTO PAGE SPECIFIC STYLES ===== */

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

.area-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-green);
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.area-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.area-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Activities List */
.activities-section {
    margin: 4rem 0;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.activity-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.activity-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    border-radius: 50%;
    color: var(--text-dark);
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.activity-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Specialties Grid */
.specialties-section {
    margin: 4rem 0;
}

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

.specialty-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.specialty-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.specialty-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.specialty-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* When to Seek Section */
.when-to-seek-section {
    margin: 4rem 0;
    background: var(--background-light);
    padding: 3rem 0;
    border-radius: var(--border-radius);
}

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

.symptom-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.symptom-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.symptom-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    border-radius: 50%;
    color: var(--text-dark);
}

.symptom-text {
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments for atendimento page */
@media (max-width: 767px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .specialty-item {
        padding: 1.25rem;
        min-height: 100px;
    }
    
    .symptoms-grid {
        grid-template-columns: 1fr;
    }
    
    .symptom-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}

.hero-social-media {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 2rem;
}

.hero-social-media .social-links {
    display: flex;
    gap: 1rem;
    background: transparent;
}

.hero-social-media .social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-social-media .social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.hero-social-media .social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .hero-social-media {
        justify-content: center;
        margin-top: 1.5rem;
    }
}