        /* Reset e configurações básicas */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Verdana, Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
            width: 100%;
            overflow-x: hidden;
        }

        /* Container principal */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            width: 100%;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #2c3e50, #3498db);
            color: #FFFFFF;
            padding: 5px 0;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            width: 100%;
        }

        .header h1 {
            font-size: 14px;
            margin-bottom: 0;
            font-weight: bold;
            font-style: italic;
            color: white !important; /* Força a cor branca */
        }

        .years {
            font-size: 0.8em;
            opacity: 0.9;
            color: white !important;
            font-weight: bold;
            font-style: italic;
        }

        /* Menu de navegação */
        .nav-menu {
            background-color: #34495e;
            padding: 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            width: 100%;
        }

        .nav-list {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .nav-list li {
            margin: 0;
        }

        .nav-list a {
            display: block;
            padding: 15px 20px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        .nav-list a:hover {
            background-color: #2c3e50;
            border-bottom-color: #3498db;
            transform: translateY(-2px);
        }

        .nav-list li.selected a {
            background-color: #3498db;
            border-bottom-color: white;
        }

        /* Informações da página */
        .page-info {
            background: white;
            margin: 20px auto;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            max-width: 1200px;
            width: 100%;
        }

        .page-info-row {
            margin-bottom: 2px;
            font-size: 14px;
            text-align: center;
            line-height: 1.2;
        }

        .page-info-row strong {
            color: #2c3e50;
        }

        /* LINKS DA SEÇÃO PAGE-INFO - MELHOR DESTAQUE */
        .page-info-row a {
            color: #c0392b !important;
            text-decoration: none;
            font-weight: bold;
            padding: 2px 4px;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .page-info-row a:hover {
            color: #ffffff !important;
            background-color: #c0392b;
            text-decoration: none;
            transform: scale(1.05);
        }

        .page-title {
            font-size: 1.5rem;
            font-weight: bold;
            font-style: italic;
            color: #2c3e50;
            margin-top: 5px;
            padding-top: 5px;
            border-top: 2px solid #ecf0f1;
            text-align: center;
        }

        /* Conteúdo principal */
        .main-content {
            max-width: 1200px;
            margin: 2px auto;
            padding: 0 5px;
            width: 100%;
        }

        .content-table {
            width: 100%;
            background: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 10px;
        }

        .content-table td {
            padding: 5px;
            border: none;
            width: 100%;
        }

        .content-title {
            font-size: 1.2rem;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 15px;
        }

        /* Estilo para o conteúdo interno */
        .style_Verdana16pxC {
            font-family: Verdana, Arial, sans-serif;
            font-size: 16px;
            text-align: center;
            margin-bottom: 10px;
        }

        /* Tabela interna responsiva */
        .inner-content-table {
            width: 100% !important;
            border: none;
            background-color: #FFFFFF;
        }

        .inner-content-table td {
            width: 100% !important;
            background-color: #FFFFFF;
            padding: 5px;
        }

        /* CORREÇÃO DAS LISTAS ANINHADAS - IDENTAÇÃO */
        .content-table ul {
            list-style-type: disc;
            margin-left: 0;
            padding-left: 15px;
        }

        .content-table ul ul {
            list-style-type: circle;
            margin-left: 0;
            padding-left: 15px;
            margin-top: 5px;
        }

        .content-table ul ul ul {
            list-style-type: square;
            margin-left: 0;
            padding-left: 15px;
            margin-top: 5px;
        }

        .content-table ul ul ul ul {
            list-style-type: disc;
            margin-left: 0;
            padding-left: 15px;
            margin-top: 5px;
        }

        .content-table ul ul ul ul ul {
            list-style-type: disc;
            margin-left: 0;
            padding-left: 15px;
            margin-top: 5px;
        }

        .content-table ul ul ul ul ul ul {
            list-style-type: disc;
            margin-left: 0;
            padding-left: 15px;
            margin-top: 5px;
        }

        .content-table li {
            margin-bottom: 8px;
            font-size: 16px;
            color: #333;
            line-height: 1.5;
        }

        /* Classe para o estilo Verdana (compatibilidade) */
        .style_Verdana18pxE {
            font-family: Verdana, Arial, sans-serif;
            font-size: 16px;
            font-weight: normal;
        }

        .divider-line {
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #3498db, transparent);
            margin: 15px 0;
        }
		.divider-line_marron {
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, transparent, #e67e22, transparent);
            margin: 10px 0;
        }

        /* Seção de amor */
        .love-section {
            text-align: center;
            margin: 5px 0;
        }

        .love-icon {
            width: 22px;
            height: 20px;
            margin-bottom: 10px;
        }

        /* Seções informativas */
        .info-section {
            background-color: #ffffff !important; /* Mais específico */
			color: white !important;
            margin: 15px 0;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-left: 4px solid #3498db;
            text-align: center;
            width: 100%;
        }

        .info-section strong {
            color: #2c3e50;
            font-size: 16px;
        }

        /* LINKS DA SEÇÃO INFORMATIVA - MESMO ESTILO DO PAGE-INFO */
        .info-section a {
            color: #c0392b !important;
            text-decoration: none;
            font-weight: bold;
            padding: 2px 4px;
            border-radius: 3px;
            transition: all 0.3s ease;
            margin: 0 3px;
        }

        .info-section a:hover {
            color: #ffffff !important;
            background-color: #c0392b;
            text-decoration: none;
            transform: scale(1.05);
        }

        .missing-highlight {
            background: #e74c3c;
            color: white;
            padding: 15px 20px;
            border-radius: 10px;
            text-align: center;
            font-weight: bold;
        }

        /* LINK DESAPARECIDOS - MESMO ESTILO DO PAGE-INFO */
        .missing-highlight a {
            color: #ffffff !important;
            text-decoration: none;
            font-weight: bold;
            padding: 2px 4px;
            border-radius: 3px;
            transition: all 0.3s ease;
            background-color: rgba(255, 255, 255, 0.2);
        }

        .missing-highlight a:hover {
            background-color: white !important;
            color: #e74c3c !important;
            transform: scale(1.05);
        }

        .missing-subtitle {
            font-size: 12px;
            font-weight: normal;
            opacity: 0.9;
        }

        /* Rodapé */
        .footer-images {
            text-align: center;
            margin: 30px 0;
            padding: 20px;
            width: 100%;
        }

        .footer-images img {
            max-width: 100%;
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .footer-images img:hover {
            transform: scale(1.05);
        }

        /* Responsividade para tablets */
        @media (max-width: 768px) {
            .container {
                padding: 0 10px;
                width: 100%;
            }

            .page-info {
                margin: 15px 5px;
                padding: 15px;
                width: calc(100% - 10px);
            }

            .page-title {
                font-size: 1.3rem;
            }

            .main-content {
                padding: 0 5px;
                width: calc(100% - 10px);
            }

            .info-section {
                padding: 15px;
                margin: 10px 0;
                width: 100%;
            }

            .content-table {
                width: 100%;
            }

            .inner-content-table {
                width: 100% !important;
            }

            .inner-content-table td {
                width: 100% !important;
                padding: 10px;
            }
        }

        /* Responsividade para dispositivos móveis */
        @media (max-width: 768px) {
            body {
                width: 100vw;
                overflow-x: hidden;
            }

            .header {
                padding: 4px 0;
                width: 100%;
            }

            .header h1 {
                font-size: 14px;
            }

            .nav-list a {
                padding: 10px 8px;
                font-size: 20px;
            }

            .page-info {
                margin: 2px 2px;
                padding: 2px;
                width: calc(100% - 4px);
            }

            .page-info-row {
                font-size: 13px;
            }

            .page-title {
                font-size: 1.1rem;
            }

            .main-content {
                padding: 0 2px;
                width: calc(100% - 4px);
            }

            .content-table {
                width: 100%;
                margin-bottom: 10px;
            }

            .content-table td {
                padding: 2px;
            }

            .inner-content-table {
                width: 100% !important;
            }

            .inner-content-table td {
                width: 100% !important;
                padding: 8px;
            }

            .content-title {
                font-size: 1rem;
            }

            .info-section {
                padding: 12px;
                margin: 10px 0;
                width: 100%;
            }

            .info-section strong {
                font-size: 14px;
            }

            .info-section a {
                display: inline-block;
                margin: 2px 1px;
                padding: 2px 4px;
                font-weight: bold;
            }

            .footer-images {
                padding: 15px 5px;
                width: 100%;
            }

            .style_Verdana16pxC {
                font-size: 16px;
            }
        }

        /* Melhorias para acessibilidade */
        a:focus, button:focus {
            outline: 2px solid #3498db;
            outline-offset: 2px;
        }

        /* Animações suaves */
        * {
            transition: all 0.3s ease;
        }

        /* Estados de hover para dispositivos touch */
        @media (hover: hover) {
            .info-section:hover {
                transform: translateY(-2px);
                box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            }
        }