    /* ===== CSS UNIFICADO - style01.css + mamografia.css ===== */
    /* ===== RESET/BASE ===== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    :root {
        /* Cores principais do site */
        --primary-color-card-vacina: #3498db;
        --primary-color: #ff6b5b;
        --secondary-color: #ffb86b;
        --dark-bg: #12161d;
        --card-bg: #1e293b;
        --text-light: #ffffff;
        --text-dark: #334155;

        /* Cores específicas da mamografia */
        --sus-green: #2E8B57;
        --sus-light-green: #3CB371;
        --sus-dark-green: #006400;
        --sus-white: #FFFFFF;
        --light-color: #f8f9fa;
        --sus-gray: #F5F5F5;
        --sus-dark-gray: #333333;
        --sus-border: #CCCCCC;
        --sus-error: #FF5252;
    }

    body {
        font-family: 'Segoe UI', Arial, sans-serif;
        background: var(--dark-bg);
        color: var(--text-light);
        line-height: 1.6;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    ul {
        list-style: none;
    }

    /* ===== LAYOUT ===== */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Container específico para mamografia - style01.css + mamografia.css */
    .container-mamografia {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        color: var(--sus-dark-gray);
        background-color: var(--sus-white);
    }

    /* ===== CABEÇALHO ===== */
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px 40px 16px;
        background: linear-gradient(90deg, var(--card-bg) 60%, #334155 100%);
        position: sticky;
        top: 0;
        box-shadow: 0 2px 8px rgba(30, 41, 59, 0.08);
        z-index: 1000;
    }

    .logo {
        display: flex;
        align-items: center;
        font-weight: bold;
        font-size: 1.2em;
    }

    .logo img {
        height: 60px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
        background: #fff;
        padding: 4px;
    }

    header h1 {
        font-size: 2rem;
        font-weight: 700;
        margin: 0 32px;
        letter-spacing: 1px;
        flex: 1;
    }

    /* Menu Desktop - style01.css */
    .menu-desktop {
        display: flex;
    }

    .menu-desktop ul {
        display: flex;
        gap: 2rem;
        margin: 0;
        padding: 0;
    }

    .menu-desktop a {
        color: var(--text-light);
        text-decoration: none;
        font-weight: 500;
        padding: 8px 16px;
        border-radius: 4px;
        transition: background 0.2s, color 0.2s;
        position: relative;
    }

    .menu-desktop a:hover,
    .menu-desktop a:focus {
        background: #64748b;
        color: var(--text-light);
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }



    .menu-desktop a[aria-current="page"] {
        color: var(--primary-color);
        font-weight: 600;
    }

    .menu-desktop a[aria-current="page"]::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--primary-color);
    }





    /* ===== SUBMENU DESKTOP APRIMORADO ===== */
    .menu-desktop .sub-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(-15px) scale(0.95);
        min-width: 280px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-radius: 16px;
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.15),
            0 8px 24px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        padding: 12px 0;
        z-index: 1500;

        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }



    .menu-desktop>ul>li:hover .sub-menu,
    .menu-desktop>ul>li:focus-within .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(8px) scale(1);
        display: block;
    }

    /* Efeito de borda sutil no topo do submenu */
    .menu-desktop .sub-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%);
        width: 12px;
        height: 12px;
        background: #ffffff;
        border-radius: 2px;
        transform: rotate(45deg);
        box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
    }

    /* Itens do submenu com design moderno */
    .sub-menu li {
        position: relative;
        margin: 4px 16px;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .sub-menu li:first-child {
        margin-top: 4px;
    }

    .sub-menu li:last-child {
        margin-bottom: 4px;
    }

    .sub-menu li::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,
                rgba(255, 107, 91, 0.1) 0%,
                rgba(255, 184, 107, 0.1) 50%,
                rgba(67, 97, 238, 0.1) 100%);
        transition: left 0.4s ease;
        z-index: 0;
    }

    .sub-menu li:hover::before {
        left: 0;
    }

    .sub-menu li a {
        display: flex;
        align-items: center;
        padding: 14px 20px;
        color: #2d3748;
        font-weight: 500;
        font-size: 15px;
        transition: all 0.3s ease;
        border-radius: 10px;
        position: relative;
        z-index: 1;
        border: 1px solid transparent;
    }

    .sub-menu li a:hover,
    .sub-menu li a:focus {
        color: var(--accent-color);
        transform: translateX(8px);
        border-color: rgba(67, 97, 238, 0.1);
        background: var(--dark-bg);
        box-shadow: 0 4px 12px rgba(67, 97, 238, 0.15);
    }

    /* Ícones e indicadores visuais */
    .sub-menu li a::before {
        content: '';
        width: 4px;
        height: 4px;
        background: var(--primary-color);
        border-radius: 50%;
        margin-right: 12px;
        transition: all 0.3s ease;
        opacity: 0.6;
    }

    .sub-menu li a:hover::before {
        background: var(--accent-color);
        transform: scale(1.5);
        opacity: 1;
    }

    .sub-menu li a::after {
        content: '→';
        margin-left: auto;
        opacity: 0;
        transform: translateX(-8px);
        transition: all 0.3s ease;
        color: var(--accent-color);
        font-weight: bold;
    }

    .sub-menu li a:hover::after,
    .sub-menu li a:focus::after {
        opacity: 1;
        transform: translateX(0);
    }

    /* Indicador visual para itens com submenu */
    .menu-desktop .has-submenu>a {
        position: relative;
        padding-right: 28px;
    }

    .menu-desktop .has-submenu>a::after {
        content: '▾';
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.8em;
        transition: all 0.3s ease;
        color: rgba(255, 255, 255, 0.7);
    }

    .menu-desktop .has-submenu:hover>a::after {
        transform: translateY(-50%) rotate(180deg);
        color: var(--secondary-color);
    }

    /* Destaque para item ativo no submenu */
    .sub-menu li a.active {
        background: linear-gradient(90deg,
                rgba(255, 107, 91, 0.1) 0%,
                rgba(255, 184, 107, 0.1) 100%);
        color: var(--primary-color);
        border-left: 3px solid var(--primary-color);
    }

    .sub-menu li a.active::before {
        background: var(--primary-color);
        opacity: 1;
    }

    /* Efeito de pulso sutil no item pai quando submenu está aberto */
    .menu-desktop>ul>li:hover>a {
        animation: pulse-glow 2s infinite;
    }

    @keyframes pulse-glow {

        0%,
        100% {
            box-shadow: 0 0 0 rgba(255, 107, 91, 0);
        }

        50% {
            box-shadow: 0 0 20px rgba(255, 107, 91, 0.3);
        }
    }

    /* Badges para itens novos ou com destaque */
    .sub-menu li a .badge {
        background: var(--success-color);
        color: white;
        font-size: 0.7em;
        padding: 2px 8px;
        border-radius: 12px;
        margin-left: 8px;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    /* Separador entre grupos de itens */
    .sub-menu .menu-divider {
        height: 1px;
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(0, 0, 0, 0.1) 50%,
                transparent 100%);
        margin: 8px 16px;
    }

    /* CSS CRIADOR DE CARTÃO VACINA */

    .container-card-vacina {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        font-family: 'Poppins', sans-serif;
        background-color: var(--dark-bg);
        color: var(--text-dark);
        line-height: 1.6;
        transition: var(--transition);

    }

    .header-card-vacina {
        background-color: var(--primary-color-card-vacina);
        color: white;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
    }

    .header-content-card-vacina {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .header-content-card-vacina h1 {
        font-size: 1.8rem;
        font-weight: 600;
    }

    .header-content-card-vacina h1 i {
        margin-right: 10px;
    }

    .header-actions {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    /* .main-content-card-vacina {} */
    .btn-primary-vacina {
        background-color: var(--primary-color-card-vacina);
        color: white;
    }

    .btn .btn-primary-vacina {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        border: none;
        border-radius: var(--border-radius);
        font-family: 'Poppins', sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
        cursor: pointer;
        transition: var(--transition);
        text-decoration: none;
    }

    .card {
        background-color: white;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        transition: var(--transition);
    }

    .section-header-card-vacina {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-actions {
        display: flex;
        gap: 1rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .search-box {
        position: relative;
        display: flex;
        align-items: center;
    }

    /* Modal */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }

    .modal.active {
        display: flex;
    }

    .modal-content {
        background-color: white;
        border-radius: var(--border-radius);
        width: 100%;
        max-width: 600px;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        animation: modalFadeIn 0.3s;
        color: var(--text-dark);
    }

    @keyframes modalFadeIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

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

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 1.5rem 0;
        margin-bottom: 1.5rem;
    }

    .modal-header h3 {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .close-btn {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--gray-color);
        transition: var(--transition);
    }

    .close-btn:hover {
        color: var(--dark-color);
    }

    .modal-form {
        padding: 0 1.5rem 1.5rem;
    }

    .modal-actions {
        display: flex;
        justify-content: flex-end;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .confirm-modal {
        max-width: 400px;
    }

    .confirm-modal .modal-body {
        padding: 0 1.5rem;
    }

    .warning-text {
        color: var(--danger-color);
        font-weight: 500;
    }

    /* Tabela */
    .table-container {
        overflow-x: auto;
        margin-bottom: 1.5rem;
    }

    .vaccine-table {
        width: 100%;
        border-collapse: collapse;
    }

    .vaccine-table th,
    .vaccine-table td {
        padding: 0.75rem;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
    }

    .vaccine-table th {
        background-color: rgba(52, 152, 219, 0.1);
        font-weight: 600;
    }

    .vaccine-table tr:hover {
        background-color: rgba(0, 0, 0, 0.02);
    }

    .action-buttons {
        display: flex;
        gap: 0.5rem;
    }

    .action-btn {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        transition: var(--transition);
        padding: 0.25rem;
        border-radius: 4px;
    }

    .edit-btn {
        color: var(--primary-color);
    }

    .edit-btn:hover {
        background-color: rgba(52, 152, 219, 0.1);
    }

    .delete-btn {
        color: var(--danger-color);
    }

    .delete-btn:hover {
        background-color: rgba(231, 76, 60, 0.1);
    }


    /* Mensagem sem dados */
    .no-data {
        text-align: center;
        padding: 2rem;
        color: var(--gray-color);
    }

    .no-data i {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: var(--border-color);
    }

    /* Paginação */
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    /* Modal */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }

    .modal.active {
        display: flex;
    }

    .modal-content {
        background-color: white;
        border-radius: var(--border-radius);
        width: 100%;
        max-width: 600px;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        animation: modalFadeIn 0.3s;
    }

    @keyframes modalFadeIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

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

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 1.5rem 0;
        margin-bottom: 1.5rem;
    }

    .modal-header h3 {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .close-btn {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--gray-color);
        transition: var(--transition);
    }

    .close-btn:hover {
        color: var(--dark-color);
    }

    .modal-form {
        padding: 0 1.5rem 1.5rem;
    }

    .modal-actions {
        display: flex;
        justify-content: flex-end;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .confirm-modal {
        max-width: 400px;
    }

    .confirm-modal .modal-body {
        padding: 0 1.5rem;
    }

    .warning-text {
        color: var(--danger-color);
        font-weight: 500;
    }

    /* Estilos para impressão */
    @media print {

        .header-actions,
        .section-actions,
        .action-buttons,
        .pagination,
        .btn {
            display: none !important;
        }

        .header {
            background-color: white !important;
            color: black !important;
            box-shadow: none !important;
            border-bottom: 2px solid #000;
        }

        .card {
            box-shadow: none !important;
            border: 1px solid #000;
            break-inside: avoid;
        }

        body {
            background-color: white !important;
            color: black !important;
        }

        .table-container {
            overflow: visible;
        }

        .vaccine-table th {
            background-color: #f0f0f0 !important;
            color: black !important;
        }

        .vaccine-table td,
        .vaccine-table th {
            border-color: #000 !important;
        }
    }

    /* Estilo para o botão de compartilhar */
    #sharePdfBtn {
        background-color: #9b59b6;
        color: white;
    }

    #sharePdfBtn:hover {
        background-color: #8e44ad;
    }

    /* Estilos para o modal de compartilhamento */
    .share-options {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .share-option {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem;
        text-align: center;
    }

    .share-option i {
        font-size: 1.5rem;
    }




    /* FINAL CARTÃO VACINA */

    /* Responsividade para telas menores */
    @media (max-width: 1200px) {
        .menu-desktop .sub-menu {
            min-width: 240px;
            left: 0;
            transform: translateX(0) translateY(-15px) scale(0.95);

        }

        .menu-desktop>ul>li:hover .sub-menu,
        .menu-desktop>ul>li:focus-within .sub-menu {
            transform: translateX(0) translateY(8px) scale(1);
        }

        .menu-desktop .sub-menu::before {
            left: 20px;
            transform: translateX(0) rotate(45deg);
        }


    }

    /* Ajustes de acessibilidade */
    .menu-desktop .sub-menu li a:focus {
        outline: 2px solid var(--accent-color);
        outline-offset: 2px;
    }

    /* Suporte para reduzir movimento */
    @media (prefers-reduced-motion: reduce) {

        .menu-desktop .sub-menu,
        .sub-menu li a,
        .menu-desktop .has-submenu>a::after {
            transition: none;
            animation: none;
        }

        .menu-desktop>ul>li:hover .sub-menu,
        .menu-desktop>ul>li:focus-within .sub-menu {
            transform: translateX(-50%) translateY(0) scale(1);
        }
    }


    /* Menu Mobile - style01.css */
    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        cursor: pointer;
        z-index: 1000000;
        position: fixed;
        top: 22px;
        right: 22px;
        background: #fff;
        border: 2px solid var(--secondary-color);
        border-radius: 50%;
        box-shadow: 0 2px 12px rgba(30, 41, 59, 0.13);
        transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
    }

    .hamburger:hover,
    .hamburger.active {
        background: var(--secondary-color);
        border-color: var(--primary-color);
        box-shadow: 0 4px 24px rgba(255, 107, 91, 0.13);
    }

    .hamburger span {
        display: block;
        position: absolute;
        width: 26px;
        height: 4px;
        background: var(--primary-color);
        border-radius: 2px;
        transition: all 0.35s cubic-bezier(.77, 0, .18, 1);
    }

    .hamburger span:nth-child(1) {
        top: 14px;
        left: 11px;
    }

    .hamburger span:nth-child(2) {
        top: 22px;
        left: 11px;
    }

    .hamburger span:nth-child(3) {
        top: 30px;
        left: 11px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: #fff;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0.5);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background: #fff;
    }

    nav.menu-mobile {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 70vw;
        max-width: 320px;
        height: 100vh;
        background: var(--card-bg);
        box-shadow: -2px 0 16px rgba(30, 41, 59, 0.12);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: right 0.35s cubic-bezier(.77, 0, .18, 1);
        z-index: 99999;
    }

    nav.menu-mobile.open {
        right: 0;
    }

    .menu-item-has-submenu>.submenu-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        cursor: pointer;
        text-decoration: none;
        color: inherit;
    }

    .menu-item-has-submenu>.submenu-trigger::after {
        content: "▾";
        margin-left: 0.5rem;
        transition: transform .18s ease;
        font-size: 0.85rem;
    }

    .menu-mobile .sub-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height .26s ease, padding .18s ease;
        padding: 0 0;
    }

    .menu-mobile .sub-menu.open {
        max-height: 600px;
        padding: 8px 0;
    }

    .menu-item-has-submenu>.submenu-trigger[aria-expanded="true"]::after {
        transform: rotate(-180deg);
    }


    /* ============================================== */
    /* Gerar Qrcode */

    /* ===== GERADOR DE QR CODE - CLASSES EXCLUSIVAS ===== */
    .qrcode-generator {
        max-width: 600px;
        margin: 40px auto;
        padding: 40px;
        background: var(--card-bg);
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(30, 41, 59, 0.15);
        border: 1.5px solid var(--text-dark);
        text-align: center;
        color: var(--text-light);
    }

    .qrcode-generator__title {
        font-size: 2.5rem;
        color: var(--secondary-color);
        margin-bottom: 16px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-shadow: 0 2px 8px rgba(255, 184, 107, 0.2);
    }

    .qrcode-generator__description {
        font-size: 1.1rem;
        color: #e2e8f0;
        margin-bottom: 32px;
        line-height: 1.6;
        opacity: 0.9;
    }

    /* Grupo de input */
    .qrcode-generator__input-group {
        margin-bottom: 24px;
        text-align: left;
    }

    .qrcode-generator__label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--secondary-color);
        font-size: 1rem;
    }

    .qrcode-generator__input {
        width: 100%;
        padding: 14px 18px;
        border: 2px solid var(--text-dark);
        border-radius: 12px;
        background: var(--dark-bg);
        color: var(--text-light);
        font-size: 1rem;
        transition: all 0.3s ease;
        outline: none;
    }

    .qrcode-generator__input:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(255, 107, 91, 0.2);
        background: #1a202c;
    }

    .qrcode-generator__input::placeholder {
        color: #64748b;
        opacity: 0.7;
    }

    /* Botão Gerar */
    .qrcode-generator__generate-btn {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: var(--text-light);
        border: none;
        padding: 16px 32px;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 16px rgba(255, 107, 91, 0.3);
        margin-bottom: 32px;
        min-width: 200px;
        position: relative;
        overflow: hidden;
    }

    .qrcode-generator__generate-btn::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;
    }

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

    .qrcode-generator__generate-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(255, 107, 91, 0.4);
    }

    .qrcode-generator__generate-btn:active {
        transform: translateY(0);
    }

    .qrcode-generator__generate-btn--disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

    /* Container do QR Code */
    .qrcode-generator__container {
        background: var(--dark-bg);
        border-radius: 16px;
        padding: 30px;
        margin-bottom: 24px;
        border: 2px dashed var(--text-dark);
        transition: all 0.3s ease;
        min-height: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .qrcode-generator__container {
        text-align: center;
        page-break-inside: avoid;
    }



    /* Tamanho maior na tela */
    #qrcode img {
        width: 300px;
        height: 300px;
    }

    .qrcode-generator__container--has-qrcode {
        border-color: var(--primary-color);
        border-style: solid;
        background: #1a202c;
        box-shadow: 0 4px 20px rgba(255, 107, 91, 0.1);
    }

    /* Placeholder */
    .qrcode-generator__placeholder {
        color: #64748b;
        font-size: 1.1rem;
        font-style: italic;
        padding: 40px 20px;
        text-align: center;
    }

    /* QR Code gerado */
    .qrcode-generator__display {
        display: none;
        margin-bottom: 20px;
    }

    .qrcode-generator__display canvas {
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        background: white;
        padding: 10px;
        border: 2px solid var(--secondary-color);
    }

    .qrcode-generator__display--visible {
        display: block;
        animation: qrcode-generator-fadeIn 0.5s ease;
    }

    @keyframes qrcode-generator-fadeIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* Botão Download */
    .qrcode-generator__download-btn {
        background: linear-gradient(135deg, var(--sus-green) 0%, var(--sus-light-green) 100%);
        color: var(--sus-white);
        border: none;
        margin-top: 10px;
        padding: 14px 28px;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 16px rgba(46, 139, 87, 0.3);
        display: none;
        position: relative;
        overflow: hidden;
    }

    .qrcode-generator__download-btn::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;
    }

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

    .qrcode-generator__download-btn--visible {
        display: inline-block;
        animation: qrcode-generator-slideUp 0.4s ease;
    }

    @keyframes qrcode-generator-slideUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

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

    .qrcode-generator__download-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(46, 139, 87, 0.4);
        background: linear-gradient(135deg, var(--sus-light-green) 0%, var(--sus-green) 100%);
    }

    .qrcode-generator__download-btn:active {
        transform: translateY(0);
    }

    /* Footer */
    .qrcode-generator__footer {
        margin-top: 32px;
        padding-top: 24px;
        border-top: 1px solid var(--text-dark);
        color: #64748b;
        font-size: 0.9rem;
    }

    /* Estados de loading */
    .qrcode-generator__generate-btn--loading {
        position: relative;
        color: transparent;
    }

    .qrcode-generator__generate-btn--loading::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        top: 50%;
        left: 50%;
        margin: -10px 0 0 -10px;
        border: 2px solid transparent;
        border-top: 2px solid var(--text-light);
        border-radius: 50%;
        animation: qrcode-generator-spin 0.8s linear infinite;
    }

    @keyframes qrcode-generator-spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* Mensagens de status */
    .qrcode-generator__message {
        padding: 12px 20px;
        border-radius: 8px;
        margin-bottom: 16px;
        font-weight: 500;
        display: none;
    }

    .qrcode-generator__message--success {
        background: rgba(46, 139, 87, 0.2);
        color: var(--sus-light-green);
        border: 1px solid var(--sus-green);
        display: block;
    }

    .qrcode-generator__message--error {
        background: rgba(255, 82, 82, 0.2);
        color: var(--sus-error);
        border: 1px solid var(--sus-error);
        display: block;
    }

    /* ===== RESPONSIVIDADE MOBILE ===== */
    @media (max-width: 768px) {
        .qrcode-generator {
            margin: 20px 16px;
            padding: 30px 20px;
            border-radius: 16px;
        }

        .qrcode-generator__title {
            font-size: 2rem;
            margin-bottom: 12px;

        }



        .qrcode-generator__description {
            font-size: 1rem;
            margin-bottom: 24px;
        }

        .qrcode-generator__input {
            padding: 12px 16px;
            font-size: 16px;
        }

        .qrcode-generator__generate-btn {
            padding: 14px 24px;
            font-size: 1rem;
            min-width: 160px;
            width: 100%;
            max-width: 280px;
        }

        .qrcode-generator__container {
            padding: 20px;
            min-height: 250px;
        }

        .qrcode-generator__placeholder {
            padding: 30px 15px;
            font-size: 1rem;
        }

        .qrcode-generator__display canvas {
            max-width: 100%;
            height: auto;
        }

        .qrcode-generator__download-btn {
            padding: 12px 24px;
            font-size: 0.95rem;
            width: 100%;
            max-width: 200px;
        }

        .qrcode-generator__footer {
            margin-top: 24px;
            padding-top: 20px;
            font-size: 0.85rem;
        }

        /* CARD VACINA */
        .header-content {
            flex-direction: column;
            align-items: flex-start;
        }

        .header-actions {
            width: 100%;
            justify-content: flex-start;
        }

        .section-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .section-actions {
            width: 100%;
            justify-content: space-between;
        }

        .search-box input {
            width: 100%;
        }

        .form-row {
            flex-direction: column;
            gap: 0;
        }

        .modal-content {
            margin: 1rem;
            max-height: calc(100vh - 2rem);
        }

        .share-options {
            grid-template-columns: 1fr;
        }

        .header-actions {
            justify-content: center;
        }
    }

    /* ===== ACESSIBILIDADE ===== */
    @media (prefers-reduced-motion: reduce) {

        .qrcode-generator__generate-btn,
        .qrcode-generator__download-btn {
            transition: none;
        }

        .qrcode-generator__generate-btn--loading::after {
            animation: none;
        }

        .qrcode-generator__generate-btn::before,
        .qrcode-generator__download-btn::before {
            display: none;
        }
    }

    /* Foco visível */
    .qrcode-generator__generate-btn:focus,
    .qrcode-generator__download-btn:focus,
    .qrcode-generator__input:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }

    /* Alto contraste */
    @media (prefers-contrast: high) {
        .qrcode-generator {
            border: 2px solid var(--text-light);
        }

        .qrcode-generator__input {
            border: 2px solid var(--text-light);
            background: var(--dark-bg);
        }

        .qrcode-generator__container {
            border: 2px solid var(--text-light);
        }

        .qrcode-generator__placeholder {
            color: var(--text-light);
        }
    }

    /* FINAL GERE-QROCDE */


    /* ===== CONTEÚDO PRINCIPAL ===== */
    .hero {
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 50px;
        flex-wrap: wrap;
    }

    .hero-text h1 {
        font-size: 3em;
        font-weight: bold;
    }

    .hero-text h2 {
        font-size: 2.5em;
    }

    .hero-text .dot {
        color: var(--primary-color);
    }

    .hero-text h3 {
        font-size: 1.8em;
        margin-top: 0;
    }

    .hero-image img {
        width: 300px;
        border-radius: 50%;
        box-shadow: 0 0 20px rgba(255, 107, 91, 0.33);
    }

    /* Skills - style01.css */
    .skills {
        margin: 48px auto 0;
        max-width: 900px;
        background: rgba(30, 41, 59, 0.96);
        border-radius: 22px;
        box-shadow: 0 4px 24px rgba(30, 41, 59, 0.18);
        padding: 40px 48px;
        position: relative;
        z-index: 1;
        border: 1.5px solid #334155;
        backdrop-filter: blur(2px);
    }

    .skills ul {
        display: flex;
        flex-wrap: wrap;
        gap: 24px 36px;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

    .skills ul li {
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: var(--text-light);
        padding: 16px 36px;
        border-radius: 28px;
        font-weight: 700;
        font-size: 1.18rem;
        box-shadow: 0 2px 12px rgba(255, 107, 91, 0.13);
        letter-spacing: 1.2px;
        transition: transform 0.18s cubic-bezier(.4, 2, .6, 1), box-shadow 0.18s, background 0.22s, color 0.18s;
        cursor: pointer;
        border: none;
        outline: none;
        margin: 0;
        text-shadow: 0 1px 4px rgba(255, 184, 107, 0.33);
        position: relative;
        overflow: hidden;
    }

    .skills ul li::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.12);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s, height 0.3s;
        z-index: 0;
    }

    .skills ul li:hover,
    .skills ul li:focus {
        transform: translateY(-6px) scale(1.08) rotate(-1deg);
        box-shadow: 0 8px 32px rgba(255, 107, 91, 0.22);
        background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
        color: var(--card-bg);
    }

    .skills ul li:hover::after,
    .skills ul li:focus::after {
        width: 180%;
        height: 180%;
    }

    /* About Section - style01.css */
    .about {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        max-width: 900px;
        margin: 48px auto 0;
        background: rgba(30, 41, 59, 0.96);
        border-radius: 22px;
        box-shadow: 0 4px 24px rgba(30, 41, 59, 0.18);
        padding: 40px 48px 32px;
        border: 1.5px solid #334155;
        backdrop-filter: blur(2px);
        align-items: flex-start;
    }

    .about-text {
        flex: 2 1 350px;
        max-width: 500px;
    }

    .about-text h2 {
        font-size: 2em;
        margin-bottom: 12px;
        color: var(--secondary-color);
        font-weight: 700;
        letter-spacing: 1px;
    }

    .about-text p {
        font-size: 1.13em;
        color: #e2e8f0;
        margin-bottom: 18px;
        line-height: 1.6;
    }

    .services {
        flex: 1 1 220px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 12px;
    }

    .services div {
        background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
        color: var(--text-light);
        border-radius: 12px;
        padding: 14px 22px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 600;
        font-size: 1.13em;
        box-shadow: 0 2px 8px rgba(255, 184, 107, 0.10);
        transition: transform 0.15s, box-shadow 0.15s;
        cursor: pointer;
    }

    .services div:hover {
        transform: translateY(-4px) scale(1.04);
        box-shadow: 0 6px 24px rgba(255, 184, 107, 0.18);
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: var(--card-bg);
    }

    .services span {
        font-size: 1.7em;
        margin-right: 10px;
    }

    .stats {
        display: flex;
        gap: 32px;
        margin-top: 12px;
        justify-content: flex-start;
    }

    .stats div {
        background: #fff;
        color: var(--primary-color);
        border-radius: 10px;
        padding: 16px 24px;
        text-align: center;
        font-weight: 700;
        min-width: 90px;
        box-shadow: 0 1px 4px rgba(255, 184, 107, 0.10);
        font-size: 1.05em;
        transition: transform 0.15s, box-shadow 0.15s;
    }

    .stats div:hover {
        transform: scale(1.06) rotate(-1deg);
        box-shadow: 0 4px 16px rgba(255, 107, 91, 0.13);
        color: var(--text-light);
        background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    }

    .stats strong {
        font-size: 1.5em;
        display: block;
        margin-bottom: 4px;
        color: var(--primary-color);
    }

    /* Galeria/Blog - style01.css */
    .galeria {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        padding: 40px;
        background-color: #f8f8f8;
        justify-content: center;
    }

    .galeria .item {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        max-width: 300px;
        padding: 15px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        text-align: center;
    }

    .galeria .item:hover {
        transform: translateY(-5px);
    }

    .galeria img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .galeria h3 {
        margin-top: 15px;
        font-size: 1.2rem;
        color: #333;
    }

    .galeria p {
        font-size: 0.95rem;
        color: #666;
    }

    .resumo-destaque {
        background-color: #f8fafd;
        border-left: 6px solid #007acc;
        padding: 25px 30px;
        margin: 30px auto;
        max-width: 900px;
        font-size: 1.05rem;
        line-height: 1.75;
        color: #333;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-radius: 8px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
        text-align: justify;
    }

    .resumo-destaque strong {
        color: #0a5ea8;
        font-weight: 600;
    }

    /* Dashboard Apps - style01.css */
    .dashboard-container {
        max-width: 1200px;
        margin: 36px auto;
        padding: 28px;
        background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(20, 30, 50, 0.06);
        border: 1px solid rgba(100, 120, 140, 0.06);
        font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        color: #213047;
    }

    .dashboard-container h2 {
        margin: 0 0 18px;
        font-size: 1.6rem;
        font-weight: 700;
        letter-spacing: 0.2px;
        color: #163244;
    }

    .apps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 18px;
        align-items: start;
    }

    .app-card {
        background: linear-gradient(180deg, #ffffff, #fcfdff);
        border-radius: 12px;
        padding: 18px;
        box-shadow: 0 6px 18px rgba(20, 30, 50, 0.06);
        border: 1px solid rgba(30, 60, 90, 0.04);
        display: flex;
        flex-direction: column;
        gap: 12px;
        transition: transform 200ms ease, box-shadow 200ms ease;
    }

    .app-card:hover,
    .app-card:focus-within {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(20, 30, 50, 0.12);
    }

    .app-card img {
        width: 100%;
        max-height: 140px;
        object-fit: contain;
        background: #f6f8fa;
        padding: 12px;
        border-radius: 8px;
        border: 1px solid rgba(30, 60, 90, 0.03);
    }

    .app-card h3 {
        margin: 0;
        font-size: 1.05rem;
        font-weight: 700;
        color: #0f2740;
    }

    .app-card p {
        margin: 0;
        font-size: 0.95rem;
        color: #4b5b6b;
        line-height: 1.35;
        flex: 1;
    }

    /* ===== FORMULÁRIOS ===== */
    /* Formulário de Contato - style01.css */
    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 18px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 14px;
        border-radius: 8px;
        border: 1.5px solid var(--secondary-color);
        font-size: 1em;
        background: #f8fafc;
        color: var(--text-dark);
        resize: none;
        transition: border 0.2s, box-shadow 0.2s;
        box-shadow: 0 1px 4px rgba(255, 184, 107, 0.13);
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        border: 1.5px solid var(--primary-color);
        outline: none;
        box-shadow: 0 2px 8px rgba(255, 107, 91, 0.2);
    }

    /* Formulário de Mamografia - mamografia.css */
    .form-section-mamografia {
        background-color: var(--sus-white);
        border-radius: 5px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .section-title {
        color: var(--sus-dark-green);
        border-bottom: 2px solid var(--sus-light-green);
        padding-bottom: 10px;
        margin-bottom: 20px;
        font-size: 1.4rem;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
        color: var(--sus-dark-gray);
    }

    .required::after {
        content: " *";
        color: var(--sus-error);
    }

    .form-row-mamogarfia {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px;
    }

    .form-column {
        flex: 1;
        padding: 0 10px;
        min-width: 200px;
    }

    input,
    select,
    textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid var(--sus-border);
        border-radius: 4px;
        font-size: 1rem;
    }

    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border-color: var(--sus-green);
        box-shadow: 0 0 0 2px rgba(46, 139, 87, 0.2);
    }

    .radio-group,
    .checkbox-group {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 5px;
    }

    .radio-option,
    .checkbox-option {
        display: flex;
        align-items: center;
    }

    .radio-option input,
    .checkbox-option input {
        width: auto;
        margin-right: 8px;
    }

    .breast-section {
        border: 1px solid var(--sus-border);
        border-radius: 5px;
        padding: 15px;
        margin-bottom: 15px;
    }

    .breast-title {
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--sus-dark-green);
    }

    .breast-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 10px;
    }

    .location-legend {
        background-color: var(--sus-gray);
        padding: 10px;
        border-radius: 5px;
        margin-top: 20px;
        font-size: 0.9rem;
    }

    .location-legend h4 {
        margin-bottom: 10px;
        color: var(--sus-dark-green);
    }

    .location-item {
        margin-bottom: 5px;
    }

    .error-message {
        color: var(--sus-error);
        font-size: 0.9rem;
        margin-top: 5px;
        display: none;
    }

    .alert-box-mamografia {
        background-color: #FFF3CD;
        border: 1px solid #FFEAA7;
        border-radius: 5px;
        padding: 15px;
        margin-bottom: 20px;
        color: #856404;
    }

    .buttons-mamografia {
        display: flex;
        justify-content: flex-end;
        gap: 15px;
        margin-top: 20px;
    }

    button {
        padding: 12px 25px;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .btn-submit {
        background-color: var(--sus-green);
        color: var(--sus-white);
    }

    .btn-submit:hover {
        background-color: var(--sus-dark-green);
    }

    .btn-reset {
        background-color: var(--sus-border);
        color: var(--sus-dark-gray);
    }

    .btn-reset:hover {
        background-color: #B0B0B0;
    }

    /* ===== TIPOGRAFIA ===== */
    .article-header {
        margin-bottom: 30px;
    }

    .article-title {
        font-size: 2.8rem;
        color: var(--secondary-color);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .article-meta {
        display: flex;
        align-items: center;
        gap: 20px;
        color: #94a3b8;
        margin-bottom: 25px;
        flex-wrap: wrap;
    }

    .meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
    }

    .article-content {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .article-content p {
        margin-bottom: 24px;
    }

    .article-content h2 {
        color: var(--secondary-color);
        margin: 40px 0 20px;
        font-size: 1.8rem;
    }

    .article-content h3 {
        color: var(--secondary-color);
        margin: 30px 0 15px;
        font-size: 1.4rem;
    }

    .article-content blockquote {
        border-left: 4px solid var(--primary-color);
        padding-left: 20px;
        margin: 30px 0;
        font-style: italic;
        color: #94a3b8;
    }

    .article-content img {
        max-width: 100%;
        border-radius: 8px;
        margin: 25px 0;
    }

    /* ===== CORES/BOTÕES ===== */
    .btn {
        padding: 10px 20px;
        margin-right: 10px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .primary {
        background: var(--primary-color);
        color: var(--text-light);
    }

    .secondary {
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
    }

    .app-card .btn {
        display: inline-block;
        align-self: start;
        padding: 8px 14px;
        border-radius: 10px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        color: var(--text-light);
        text-decoration: none;
        font-weight: 700;
        font-size: 0.95rem;
        box-shadow: 0 6px 18px rgba(255, 107, 91, 0.12);
        transition: transform 140ms ease, box-shadow 140ms ease, opacity 140ms;
    }

    .app-card .btn:hover,
    .app-card .btn:focus {
        transform: translateY(-2px);
        box-shadow: 0 10px 26px rgba(255, 107, 91, 0.18);
        opacity: 0.98;
    }

    /* Tags - style01.css */
    .tags-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 40px 0;
    }

    .tag {
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: var(--text-light);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
    }

    /* Social Share - style01.css */
    .social-share {
        display: flex;
        gap: 15px;
        margin: 40px 0;
    }

    .social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        color: white;
        font-size: 1.2rem;
        transition: transform 0.3s;
    }

    .social-btn:hover {
        transform: translateY(-3px);
    }

    .facebook {
        background: #3b5998;
    }

    .twitter {
        background: #1da1f2;
    }

    .linkedin {
        background: #0077b5;
    }

    .whatsapp {
        background: #25d366;
    }

    /* ===== RODAPÉ ===== */
    .site-footer {
        background: var(--card-bg);
        color: var(--text-light);
        padding: 32px 0 18px;
        text-align: center;
        border-top: 2px solid var(--primary-color);
        margin-top: 48px;
    }

    .footer-content {
        max-width: 900px;
        margin: 0 auto;
    }

    .site-footer p {
        margin: 0;
        font-size: 1.08em;
        letter-spacing: 1px;
    }

    .footer-links {
        display: flex;
        gap: 22px;
        justify-content: center;
        align-items: center;
        margin-top: 12px;
        flex-wrap: wrap;
    }

    .footer-links a {
        color: var(--primary-color);
        background: #fff;
        padding: 8px 18px;
        border-radius: 22px;
        font-weight: 600;
        font-size: 1em;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(30, 41, 59, 0.08);
        border: 1.5px solid var(--secondary-color);
        transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
        display: inline-block;
    }

    .footer-links a:hover,
    .footer-links a:focus {
        background: var(--secondary-color);
        color: #fff;
        border-color: var(--primary-color);
        box-shadow: 0 4px 16px rgba(255, 107, 91, 0.13);
    }

    /* ===== Efeito hover (funciona em todas as telas) ===== */
    .menu-desktop-footer a:hover,
    .menu-mobo a:hover {
        background-color: #00bfa6;
        color: #fff;
        transform: scale(1.05);
    }

    /* ===== PÁGINAS ESPECÍFICAS ===== */
    .about-page,
    .portfolio-page,
    .contact-page {
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(120deg, var(--card-bg) 60%, #334155 100%);
        padding: 64px 0;
        position: relative;
        overflow: hidden;
    }

    .about-container,
    .contact-container {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 24px;
        box-shadow: 0 8px 32px rgba(30, 41, 59, 0.13);
        max-width: 420px;
        width: 90%;
        padding: 48px 32px 36px;
        text-align: center;
        position: relative;
        overflow: hidden;
        border: 2px solid rgba(255, 184, 107, 0.2);
    }

    .about-container h2,
    .contact-container h2 {
        color: var(--primary-color);
        font-size: 2.1em;
        margin-bottom: 14px;
        font-weight: 800;
        letter-spacing: 1.2px;
    }

    .about-container p,
    .contact-container p {
        color: var(--text-dark);
        font-size: 1.08em;
        margin-bottom: 18px;
    }

    .about-photo {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 18px;
        border: 4px solid var(--secondary-color);
    }

    .portfolio-container {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 32px;
        box-shadow: 0 12px 40px rgba(30, 41, 59, 0.18);
        max-width: 1150px;
        width: 100%;
        padding: 56px 40px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
        z-index: 1;
        border: 2px solid rgba(255, 184, 107, 0.2);
    }

    .portfolio-container h2 {
        color: var(--primary-color);
        font-size: 2.4em;
        margin-bottom: 14px;
        font-weight: 900;
        letter-spacing: 1.5px;
        text-shadow: 0 2px 8px rgba(255, 184, 107, 0.13);
    }

    .portfolio-container p {
        color: var(--text-dark);
        font-size: 1.18em;
        margin-bottom: 32px;
    }

    .portfolio-list {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
        margin-top: 32px;
        z-index: 1;
    }

    .portfolio-item {
        background: #fff;
        border-radius: 22px;
        box-shadow: 0 6px 24px rgba(30, 41, 59, 0.13);
        width: 320px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
        border: 2.5px solid rgba(255, 184, 107, 0.13);
        position: relative;
    }

    .portfolio-item:hover {
        transform: translateY(-10px) scale(1.045);
        box-shadow: 0 16px 48px rgba(255, 107, 91, 0.16);
        border-color: var(--secondary-color);
    }

    .portfolio-item img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-bottom: 2px solid var(--secondary-color);
        background: #f1f5f9;
        transition: filter 0.2s;
    }

    .portfolio-item:hover img {
        filter: brightness(0.95) saturate(1.2);
    }

    .portfolio-info {
        padding: 26px 20px 28px;
        width: 100%;
    }

    .portfolio-info h3 {
        color: var(--primary-color);
        font-size: 1.25em;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .portfolio-info p {
        color: var(--text-dark);
        font-size: 1em;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .portfolio-info .btn {
        background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
        color: var(--text-light);
        padding: 10px 22px;
        border-radius: 18px;
        font-weight: 700;
        font-size: 1em;
        box-shadow: 0 4px 16px rgba(255, 107, 91, 0.13);
        transition: transform 0.15s, box-shadow 0.15s;
        border: none;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
    }

    .portfolio-info .btn:hover {
        transform: translateY(-4px) scale(1.08);
        box-shadow: 0 8px 28px rgba(255, 107, 91, 0.22);
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    }

    /* ===== MELHORIAS PARA DISPOSITIVOS MÓVEIS ===== */
    @media (max-width: 768px) {

        /* === CABEÇALHO MOBILE === */
        header {
            padding: 16px 20px;
            flex-direction: column;
            gap: 16px;
            /* Layout em coluna para melhor organização em telas pequenas */
        }


        header h1 {
            font-size: 1.5rem;
            margin: 0x;
            text-align: center;
            order: -1;
            /* Título acima do menu para melhor hierarquia visual */
        }



        .logo {
            justify-content: center;
            /* Centraliza a logo no mobile */
        }

        .logo img {
            height: 50px;
            /* Reduz tamanho da logo para economizar espaço */
        }

        .menu-desktop {
            display: none;
            /* Esconde menu desktop no mobile */
        }

        .hamburger {
            display: flex;
            position: fixed;
            top: 16px;
            right: 16px;
            /* Botão hamburger fixo para fácil acesso */
        }

        /* === MENU MOBILE OTIMIZADO === */
        nav.menu-mobile {
            width: 85vw;
            /* Largura maior para melhor usabilidade em touch */
            padding: 90px 24px 32px;
            /* Padding ajustado para evitar sobreposição com botão hamburger */
        }

        .menu-mobile a {
            font-size: 1.1rem;
            padding: 12px 16px;
            /* Tamanho maior para fácil toque */
        }

        .menu-item-has-submenu>.submenu-trigger {
            padding: 12px 16px;
            /* Área de toque maior para submenus */
        }


        /* Versão alternativa - ícones coloridos */
        .menu-mobile .contact-social.alternative .btn.social {
            background: var(--card-bg);
            border: 2px solid var(--secondary-color);
        }

        .menu-mobile .contact-social.alternative .btn.social img {
            filter: none;
            /* Mantém cores originais */
        }

        .menu-mobile .contact-social.alternative .btn.social:hover {
            background: var(--secondary-color);
            transform: translateY(-3px) scale(1.1);
        }

        .menu-mobile .contact-social.alternative .btn.social.whatsapp:hover img {
            filter: brightness(0) invert(1);
        }

        .menu-mobile .contact-social.alternative .btn.social.instagram:hover img {
            filter: brightness(0) invert(1);
        }

        .menu-mobile .contact-social.alternative .btn.social.facebook:hover img {
            filter: brightness(0) invert(1);
        }

        /* === HERO SECTION MOBILE === */
        .hero {
            padding: 30px 20px;
            flex-direction: column;
            text-align: center;
            gap: 30px;
            /* Layout vertical para melhor fluxo de leitura */
        }

        .hero-text h1 {
            font-size: 2.2em;
            line-height: 1.2;
            /* Tamanho reduzido mas mantendo impacto visual */
        }

        .hero-text h2 {
            font-size: 1.8em;
            line-height: 1.3;
        }

        .hero-text h3 {
            font-size: 1.4em;
            margin-bottom: 20px;
        }

        .hero-image img {
            width: 200px;
            max-width: 80%;
            /* Imagem proporcional à tela */
        }

        /* === SKILLS MOBILE === */
        .skills {
            margin: 30px 20px 0;
            padding: 30px 20px;
            border-radius: 16px;
            /* Cantos menos arredondados para aproveitar espaço */
        }

        .skills ul {
            gap: 12px;
            /* Espaçamento reduzido entre itens */
        }

        .skills ul li {
            padding: 14px 20px;
            font-size: 1rem;
            flex: 1 1 calc(50% - 12px);
            min-width: 140px;
            /* Layout em grid 2 colunas para melhor aproveitamento */
        }

        /* === ABOUT SECTION MOBILE === */
        .about {
            margin: 30px 20px 0;
            padding: 30px 20px;
            gap: 24px;
            flex-direction: column;
            /* Stack vertical para mobile */
        }

        .about-text {
            flex: none;
            max-width: 100%;
            /* Ocupa largura total */
        }

        .about-text h2 {
            font-size: 1.6em;
            text-align: center;
            /* Centralizado para mobile */
        }

        .about-text p {
            font-size: 1rem;
            text-align: justify;
            /* Texto justificado para melhor leitura */
        }

        .services {
            width: 100%;
        }

        .services div {
            padding: 14px 18px;
            font-size: 1rem;
            margin-bottom: 8px;
            /* Espaçamento consistente */
        }

        .stats {
            gap: 12px;
            justify-content: space-around;
            /* Distribuição uniforme */
            flex-wrap: wrap;
        }

        .stats div {
            padding: 12px 16px;
            min-width: 70px;
            flex: 1;
            max-width: 100px;
            /* Tamanho fixo para consistência */
        }

        .stats strong {
            font-size: 1.3em;
            /* Tamanho ligeiramente reduzido */
        }

        /* === DASHBOARD MOBILE === */
        .dashboard-container {
            margin: 24px 16px;
            padding: 20px 16px;
            border-radius: 12px;
            /* Cantos menos arredondados */
        }

        .dashboard-container h2 {
            font-size: 1.4rem;
            text-align: center;
        }

        .apps-grid {
            grid-template-columns: 1fr;
            gap: 16px;
            /* Single column para mobile */
        }

        .app-card {
            padding: 16px;
        }

        .app-card img {
            max-height: 120px;
            /* Altura reduzida para mobile */
        }

        /* === FORMULÁRIOS MOBILE === */
        .container-mamografia {
            padding: 15px;
            /* Padding reduzido para mobile */
        }

        .form-section-mamografia {
            padding: 15px;
        }

        .form-row-mamogarfia {
            margin: 0;
            flex-direction: column;
            /* Formulários em coluna única */
        }

        .form-column {
            flex: 100%;
            padding: 0;
            margin-bottom: 15px;
            /* Espaçamento entre campos */
        }

        input,
        select,
        textarea {
            font-size: 16px;
            /* Previne zoom automático no iOS */
            padding: 12px;
        }

        .radio-group,
        .checkbox-group {
            flex-direction: column;
            gap: 10px;
            /* Opções em coluna para fácil seleção */
        }

        .breast-grid {
            grid-template-columns: 1fr;
            /* Single column para formulários complexos */
        }

        .buttons-mamografia {
            flex-direction: column;
            gap: 12px;
            /* Botões empilhados verticalmente */
        }

        button {
            width: 100%;
            padding: 14px;
            /* Botões com área de toque generosa */
        }

        /* === GALERIA/BLOG MOBILE === */
        .galeria {
            padding: 20px 15px;
            gap: 15px;
        }

        .galeria .item {
            max-width: 100%;
            flex: 1 1 100%;
            /* Itens em largura total */
        }

        .resumo-destaque {
            margin: 20px 15px;
            padding: 20px;
            font-size: 1rem;
        }

        /* === ARTIGOS MOBILE === */
        .article-title {
            font-size: 1.8rem;
            line-height: 1.3;
            /* Título menor para mobile */
        }

        .article-meta {
            gap: 12px;
            justify-content: center;
            /* Metadados centralizados */
        }

        .article-content {
            font-size: 1rem;
            line-height: 1.7;
            /* Texto ligeiramente menor para mobile */
        }

        .article-content h2 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
        }

        .article-content h3 {
            font-size: 1.3rem;
            margin: 25px 0 12px;
        }

        /* === TAGS E SOCIAL SHARE MOBILE === */
        .tags-container {
            margin: 30px 0;
            gap: 8px;
            justify-content: center;
        }

        .tag {
            padding: 6px 14px;
            font-size: 0.85rem;
        }

        .social-share {
            justify-content: center;
            gap: 12px;
        }

        .social-btn {
            width: 40px;
            height: 40px;
            /* Botões sociais ligeiramente menores */
        }

        /* === PORTFOLIO MOBILE === */
        .portfolio-page {
            padding: 40px 0;
        }

        .portfolio-container {
            margin: 0 16px;
            padding: 40px 20px;
            border-radius: 20px;
        }

        .portfolio-container h2 {
            font-size: 1.8rem;
        }

        .portfolio-list {
            gap: 20px;
        }

        .portfolio-item {
            width: 100%;
            max-width: 100%;
            /* Ocupa largura total */
        }

        .portfolio-info {
            padding: 20px 16px;
        }

        /* === PÁGINAS SOBRE/CONTATO MOBILE === */
        .about-page,
        .contact-page {
            padding: 40px 0;
            min-height: 60vh;
        }

        .about-container,
        .contact-container {
            margin: 0 20px;
            padding: 40px 24px;
            width: auto;
        }

        .about-container h2,
        .contact-container h2 {
            font-size: 1.7rem;
        }

        /* === RODAPÉ MOBILE === */
        .site-footer {
            padding: 24px 0 16px;
            margin-top: 40px;
        }

        .footer-content {
            padding: 0 20px;
        }

        .footer-links {
            gap: 10px;
            flex-direction: column;
            display: none;
            /* Links empilhados verticalmente */
        }

        .footer-links a {
            padding: 10px 20px;
            width: 100%;
            max-width: 200px;
            text-align: center;
            /* Botões com largura consistente */
        }

        .menu-desktop-footer a:hover,
        .menu-desktop-footer a:focus {
            background: #64748b;
            color: var(--text-light);
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }


    }

    /* === OTIMIZAÇÕES ESPECÍFICAS PARA TELAS MUITO PEQUENAS === */
    @media (max-width: 480px) {

        /* Ajustes adicionais para smartphones muito pequenos */
        /* .menu-desktop-footer a:hover,
        .menu-desktop-footer a:focus {
            background: #f3f4f5;
            color: var(--text-light);
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }

        footer nav a:hover,
        .menu-desktop-footer>ul>li a:focus {
            color: #00b4d8;
            border-bottom: 2px solid #00b4d8;
            text-shadow: 0 0 8px rgba(0, 180, 216, 0.6);
        } */

        /* .menu-desktop-footer:hover,
       .menu-desktop-footer:focus {
            background: #0c1015;
        } */


        .hero-text h1 {
            font-size: 1.5em;
        }


        .hero-text h2 {
            font-size: 1.5em;
        }

        .skills ul li {
            flex: 1 1 100%;
            /* Uma coluna em telas muito pequenas */
        }

        .stats div {
            min-width: 60px;
            padding: 10px 12px;
        }

        .article-title {
            font-size: 1.6rem;
        }

        .menu-mobile .contact-social {
            gap: 15px;
            margin-top: 25px;
            padding-top: 25px;
        }

        .menu-mobile .contact-social .btn.social {
            width: 45px;
            height: 45px;
            padding: 6px;
        }

        .menu-mobile .contact-social .btn.social img {
            width: 22px;
            height: 22px;
        }

        nav.menu-mobile {
            width: 90vw;
        }
    }

    /* === MELHORIAS DE ACESSIBILIDADE PARA MOBILE === */
    @media (max-width: 768px) {

        /* Aumenta área de toque mínima para elementos interativos */
        a,
        button,
        .btn,
        .menu-mobile a,
        .skills ul li,
        .services div {
            min-height: 44px;
            min-width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Melhora contraste para leitura em ambientes externos */
        body {
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        /* Previne zoom em inputs mas mantém legibilidade */
        input,
        select,
        textarea {
            font-size: 16px !important;
        }

        /* === REDES SOCIAIS NO MENU MOBILE === */
        .menu-mobile .contact-social {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            width: 100%;
        }

        .menu-mobile .contact-social .btn.social {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 12px rgba(255, 107, 91, 0.3);
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .menu-mobile .contact-social .btn.social {
            min-height: 50px;
            min-width: 50px;
        }

        .menu-mobile .contact-social .btn.social:focus {
            outline: 2px solid var(--text-light);
            outline-offset: 2px;
        }

        .menu-mobile .contact-social .btn.social:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 107, 91, 0.4);
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
        }

        .menu-mobile .contact-social .btn.social img {
            width: 24px;
            height: 24px;
            /* filter: brightness(0) invert(1); */
            filter: none;
            transition: transform 0.3s ease;
        }

        .menu-mobile .contact-social .btn.social:hover img {
            transform: scale(1.1);
        }

        /* Efeitos específicos para cada rede social */
        .menu-mobile .contact-social .btn.social.whatsapp:hover {
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .menu-mobile .contact-social .btn.social.instagram:hover {
            box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
        }

        .menu-mobile .contact-social .btn.social.facebook:hover {
            box-shadow: 0 6px 20px rgba(59, 89, 152, 0.4);
        }

        /* === CABEÇALHO MOBILE === */
        header {
            padding: 16px 20px;
            flex-direction: column;
            gap: 16px;
        }

        header h1 {
            font-size: 1.5rem;
            margin: 0;
            text-align: center;
            order: -1;
        }

        .logo {
            justify-content: center;
        }

        .logo img {
            height: 50px;
        }

        .menu-desktop {
            display: none;
        }

        .hamburger {
            display: flex;
            position: fixed;
            top: 16px;
            right: 16px;
        }

    }

    /* === OTIMIZAÇÕES DE PERFORMANCE PARA MOBILE === */
    @media (max-width: 768px) {

        /* Reduz efeitos de transform para melhor performance */
        .skills ul li:hover,
        .services div:hover,
        .portfolio-item:hover {
            transform: none;
            /* Remove transform complexos no mobile */
        }

        /* Mantém apenas transform essenciais */
        .app-card:hover,
        .app-card:focus-within {
            transform: translateY(-2px);
            /* Transform mais sutil para mobile */
        }

        .menu-mobile .contact-social .btn.social {
            min-height: 50px;
            min-width: 50px;
        }

        .menu-mobile .contact-social .btn.social:focus {
            outline: 2px solid var(--text-light);
            outline-offset: 2px;
        }


    
        .menu-mobo ul {
            flex-direction: column;
            justify-content: center;
            /* Centraliza no mobile */
            align-items: flex-start;
            /* ✅ Mantém alinhado à direita */
            gap: 12px;
        }

        .menu-mobo a {
            width: 100%;
            max-width: 250px;
            display: block;
            text-align: left;
            /* ✅ Texto à direita */
        }
    }