  
        :root {
            --bege-claro: #FAF5EF;
            --rosa-terroso: #E9A6A0;
            --verde-oliva: #A8B9A5;
            --marrom-acinzentado: #6E6259;
            --branco-puro: #FFFFFF;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--marrom-acinzentado);
            background-color: var(--bege-claro);
            line-height: 1.6;
        }

        .highlight {
            color: var(--rosa-terroso);
            font-weight: 600;
            position: relative;
            display: inline-block;
        }

        .highlight::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: var(--rosa-terroso);
            bottom: -2px;
            left: 0;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .highlight:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Header */
        header {
            background-color: var(--branco-puro);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }

        .logo img {
            height: 50px;
            transition: var(--transition);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 35px;
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--marrom-acinzentado);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            font-size: 16px;
            padding: 5px 0;
        }

        nav ul li a:hover {
            color: var(--rosa-terroso);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--rosa-terroso);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            margin-right: 20px;
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--marrom-acinzentado);
            background: none;
            border: none;
            transition: var(--transition);
        }

        .mobile-menu:hover {
            color: var(--rosa-terroso);
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--branco-puro);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                padding: 20px;
            }

            nav ul.show {
                display: flex;
            }

            nav ul li {
                margin: 12px 0;
            }

            .mobile-menu {
                display: block;
            }
        }

        /* Articles Section */
        .container03 {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .articles-section03 {
            margin-top: 100px;
            padding: 120px 0 80px;
            background: linear-gradient(135deg, var(--bege-claro) 0%, var(--branco-puro) 100%);
        }

        .section-header03 {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title03 {
            font-size: 42px;
            font-weight: 800;
            color: var(--marrom-acinzentado);
            margin-bottom: 15px;
            position: relative;
        }

        .section-title03::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-subtitle03 {
            font-size: 18px;
            color: var(--marrom-acinzentado);
            max-width: 600px;
            margin: 25px auto 0;
            opacity: 0.8;
        }

        /* Layout */
        .articles-layout03 {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
            align-items: start;
        }

        /* Articles Main Area */
        .articles-main03 {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .article-card03 {
            background: var(--branco-puro);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: none;
            border: 1px solid rgba(233, 166, 160, 0.1);
        }

        .article-card03.active03 {
            display: block;
            animation: fadeIn03 0.5s ease;
        }

        @keyframes fadeIn03 {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .article-image03 {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .article-content03 {
            padding: 35px;
        }

        .article-meta03 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            font-size: 14px;
            color: var(--marrom-acinzentado);
            opacity: 0.8;
        }

        .article-date03 {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .article-date03 i {
            color: var(--rosa-terroso);
        }

        .article-category03 {
            background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
            color: var(--branco-puro);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .article-title03 {
            font-size: 28px;
            font-weight: 700;
            color: var(--marrom-acinzentado);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .article-text03 {
            color: var(--marrom-acinzentado);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .article-text03 p {
            margin-bottom: 20px;
        }

        .article-share03 {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid rgba(233, 166, 160, 0.2);
        }

        .share-label03 {
            font-weight: 600;
            color: var(--marrom-acinzentado);
            font-size: 14px;
        }

        .share-buttons03 {
            display: flex;
            gap: 10px;
        }

        .share-btn03 {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bege-claro);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--marrom-acinzentado);
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid rgba(233, 166, 160, 0.2);
        }

        .share-btn03:hover {
            background: var(--rosa-terroso);
            color: var(--branco-puro);
            transform: scale(1.1);
        }

        /* Sidebar Desktop */
        .sidebar03 {
            position: sticky;
            top: 100px;
            background: var(--branco-puro);
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow);
            border: 2px solid var(--rosa-terroso);
        }

        .sidebar-header03 {
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--bege-claro);
        }

        .sidebar-title03 {
            font-size: 22px;
            font-weight: 700;
            color: var(--marrom-acinzentado);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .sidebar-subtitle03 {
            color: var(--rosa-terroso);
            font-weight: 600;
            font-size: 16px;
        }

        .sidebar-articles03 {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .sidebar-article03 {
            background: var(--bege-claro);
            border-radius: 12px;
            padding: 20px;
            transition: var(--transition);
            border-left: 4px solid var(--rosa-terroso);
            cursor: pointer;
        }

        .sidebar-article03.active03 {
            background: var(--branco-puro);
            border-left: 4px solid var(--verde-oliva);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .sidebar-article03:hover:not(.active03) {
            background: var(--branco-puro);
            transform: translateX(5px);
        }

        .sidebar-article-meta03 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            font-size: 12px;
        }

        .sidebar-article-date03 {
            color: var(--marrom-acinzentado);
            display: flex;
            align-items: center;
            gap: 5px;
            opacity: 0.8;
        }

        .sidebar-article-date03 i {
            color: var(--rosa-terroso);
            font-size: 10px;
        }

        .sidebar-article-category03 {
            background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
            color: var(--branco-puro);
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 600;
        }

        .sidebar-article-title03 {
            font-size: 16px;
            font-weight: 600;
            color: var(--marrom-acinzentado);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .sidebar-article-excerpt03 {
            font-size: 13px;
            color: var(--marrom-acinzentado);
            line-height: 1.5;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            opacity: 0.8;
        }

        .sidebar-read-btn03 {
            background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
            color: var(--branco-puro);
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .sidebar-read-btn03:hover {
            transform: translateX(3px);
            box-shadow: 0 3px 10px rgba(233, 166, 160, 0.3);
        }

        /* Botão Flutuante Mobile */
        .floating-sidebar-toggle {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
            color: white;
            border-radius: 50%;
            display: none;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

        .floating-sidebar-toggle:hover {
            transform: scale(1.1);
        }

        /* Overlay para sidebar mobile */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 999;
            display: none;
        }

        .sidebar-overlay.active {
            display: block;
        }

        /* Sidebar mobile */
        .sidebar-mobile {
            position: fixed;
            top: 0;
            right: -100%;
            width: 90%;
            max-width: 400px;
            height: 100%;
            background: white;
            z-index: 1000;
            transition: var(--transition);
            overflow-y: auto;
            padding: 20px;
        }

        .sidebar-mobile.active {
            right: 0;
        }

        .sidebar-mobile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--bege-claro);
        }

        .sidebar-mobile-close {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--marrom-acinzentado);
            cursor: pointer;
            transition: var(--transition);
        }

        .sidebar-mobile-close:hover {
            color: var(--rosa-terroso);
        }

        /* Footer */
        .footer02 {
            background: linear-gradient(135deg, var(--marrom-acinzentado) 0%, #5a524a 100%);
            padding: 60px 0 0;
            border-top: 3px solid var(--rosa-terroso);
        }

        .footer-content02 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-info02 {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .footer-logo02 img {
            height: 60px;
            filter: brightness(0) invert(1);
        }

        .footer-contact02 h3,
        .footer-hours02 h3 {
            color: var(--branco-puro);
            font-size: 22px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .contact-item02 {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-item02 i {
            color: var(--rosa-terroso);
            font-size: 18px;
            width: 30px;
            margin-right: 15px;
        }

        .contact-item02 a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-item02 a:hover {
            color: var(--rosa-terroso);
        }

        .hours-list02 {
            list-style: none;
            color: rgba(255, 255, 255, 0.8);
        }

        .hours-list02 li {
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
        }

        .hours-list02 .day02 {
            font-weight: 500;
        }

        .hours-list02 .time02 {
            color: var(--rosa-terroso);
        }

        .footer-map02 {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            height: 300px;
        }

        .footer-map02 iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 12px;
        }

        .footer-bottom02 {
            background: rgba(0, 0, 0, 0.5);
            margin-top: 50px;
            padding: 25px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-copyright02 {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
        }

        .developer-link02 {
            color: var(--rosa-terroso);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .developer-link02:hover {
            color: var(--verde-oliva);
            text-decoration: underline;
        }

        .footer-social02 {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            justify-content: center;
        }

        .social-link02 {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            font-size: 18px;
        }

        .social-link02:hover {
            background: var(--rosa-terroso);
            color: var(--branco-puro);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .articles-layout03 {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .sidebar03 {
                display: none;
            }
            
            .floating-sidebar-toggle {
                display: flex;
            }
            
            .footer-content02 {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-map02 {
                height: 250px;
            }
            
            .section-title03 {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .articles-section03 {
                padding: 100px 0 60px;
                margin-top: 80px;
            }
            
            .section-title03 {
                font-size: 32px;
            }
            .logo{
                margin-left: 20px;
            }
            .section-subtitle03 {
                font-size: 16px;
            }
            
            .article-image03 {
                height: 250px;
            }
            
            .article-content03 {
                padding: 25px;
            }
            
            .article-title03 {
                font-size: 24px;
            }
            
            .footer02 {
                padding: 40px 0 0;
            }
            
            .footer-content02 {
                gap: 30px;
            }
            
            .footer-info02 {
                gap: 25px;
            }
            
            .footer-logo02 img {
                height: 50px;
            }
            
            .footer-contact02 h3,
            .footer-hours02 h3 {
                font-size: 20px;
                margin-bottom: 15px;
            }
            
            .footer-map02 {
                height: 200px;
            }
        }

        @media (max-width: 576px) {
            .articles-section03 {
                padding: 80px 0 40px;
            }
            
            .section-header03 {
                margin-bottom: 40px;
            }
            
            .section-title03 {
                font-size: 28px;
            }
            
            .article-image03 {
                height: 200px;
            }
            
            .article-content03 {
                padding: 20px;
            }
            
            .article-meta03 {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .sidebar03 {
                padding: 25px 20px;
            }
            
            .sidebar-title03 {
                font-size: 20px;
            }
            
            .footer02 {
                padding: 30px 0 0;
            }
            
            .footer-content02 {
                padding: 0 15px;
            }
            
            .footer-logo02 img {
                height: 45px;
            }
            
            .contact-item02 {
                font-size: 14px;
            }
            
            .contact-item02 i {
                font-size: 16px;
                width: 25px;
            }
            
            .footer-bottom02 {
                padding: 20px 0;
            }
            
            .footer-copyright02 {
                font-size: 13px;
            }
            
            .social-link02 {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
        }
