        :root {
            --primary-color: #0d6efd;
            --primary-hover: #0b5ed7;
            --danger-color: #dc3545;
            --favorite-color: #e74c3c;
            --bg-color: #f4f6f9;
            --card-bg-color: #ffffff;
            --header-bg-color: #ffffff;
            --text-color: #212529;
            --text-color-light: #6c757d;
            --accent-color: #0056b3;
            --border-color: #dee2e6;
            --shadow-color: rgba(0, 0, 0, 0.08);
            --shadow-hover-color: rgba(0, 0, 0, 0.15);
            --overlay-color: rgba(0, 0, 0, 0.6);
            --sidebar-bg: #1e2a3b;
            --sidebar-text: #adb5bd;
            --sidebar-text-hover: #ffffff;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
        }
        
        html.dark {
            --primary-color: #4dabf7;
            --primary-hover: #74c0fc;
            --danger-color: #ff6b6b;
            --favorite-color: #e74c3c;
            --bg-color: #121212;
            --card-bg-color: #1e1e1e;
            --header-bg-color: #1e1e1e;
            --text-color: #e9ecef;
            --text-color-light: #b0b3b8;
            --accent-color: #4dabf7;
            --border-color: #495057;
            --shadow-color: rgba(0, 0, 0, 0.3);
            --shadow-hover-color: rgba(0, 0, 0, 0.4);
            --overlay-color: rgba(0, 0, 0, 0.7);
            --sidebar-bg: #1c1f24;
            --sidebar-text: #868e96;
        }
        
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            
            to {
                opacity: 1;
            }
        }
        
        @keyframes card-enter {
            from {
                opacity: 0;
                transform: scale(.95) translateY(10px);
            }
            
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            background-color: var(--bg-color);
            color: var(--text-color);
            transition: background-color .3s, color .3s;
            padding-left: 0;
        }
        
        @media (min-width: 1024px) {
            body {
                padding-left: 280px;
            }
        }
        
        .sidebar {
            position: fixed;
            top: 0;
            left: -280px;
            width: 280px;
            height: 100%;
            background-color: var(--sidebar-bg);
            padding: 1.5rem;
            color: var(--sidebar-text);
            display: flex;
            flex-direction: column;
            transition: left 0.3s ease-in-out;
            z-index: 1000;
        }
        
        .sidebar.open {
            left: 0;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        }
        
        .main-content {
            padding: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
        
        /*------*/
        .main-content {
            position: relative;
            padding: 1.5rem;
            /* removi o border-top tradicional para usar o gradiente */
            border-top: none;
        }
        
        .main-content::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            /* espessura da borda */
            background: #3D3D3D;
        }
        
        /*------*/
        
        .sidebar-header {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: 2rem;
            gap: 1rem;
        }
        
        .titulo-site {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--sidebar-text-hover);
            text-decoration: none;
            border-radius: 0 !important;
            /* Remove o border-radius da logo */
            margin-top: 15px;
        }
        
        .theme-switcher {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            align-self: flex-end;
        }
        
        .theme-switcher span {
            font-size: 1.25rem;
        }
        
        .sidebar-nav {
            flex-grow: 1;
            list-style: none;
            padding: 0;
            margin: 0;
            overflow-y: auto;
        }
        
        .sidebar-nav a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.8rem 1rem;
            color: var(--sidebar-text);
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.2s;
        }
        
        .sidebar-nav a:hover,
        .sidebar-nav a.active {
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--sidebar-text-hover);
        }
        
        .sidebar-nav a .link-content {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .sidebar-nav a svg {
            width: 20px;
            height: 20px;
        }
        
        .switch {
            position: relative;
            display: inline-block;
            width: 44px;
            height: 24px;
        }
        
        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #495057;
            transition: .4s;
            border-radius: 24px;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked+.slider {
            background-color: var(--accent-color);
        }
        
        input:checked+.slider:before {
            transform: translateX(20px);
        }
        
        .sidebar-footer {
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .social-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }
        
        .social-links a {
            color: var(--sidebar-text);
            transition: color 0.2s;
            display: inline-block;
        }
        
        .social-links a:hover {
            color: var(--sidebar-text-hover);
        }
        
        
        .social-links svg {
            width: 24px;
            height: 24px;
        }
        
        .menu-toggle {
            position: fixed;
            top: 1rem;
            left: 1rem;
            z-index: 1001;
            background-color: var(--card-bg-color);
            border: 1px solid var(--border-color);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            box-shadow: var(--shadow);
        }
        
        @media (min-width: 1024px) {
            .menu-toggle {
                display: none;
            }
        }
        
        .menu-toggle .bar {
            width: 22px;
            height: 2px;
            background-color: var(--text-color);
            border-radius: 2px;
            transition: all 0.3s ease-in-out;
        }
        
        .sidebar.open~.main-content .menu-toggle .bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        
        .sidebar.open~.main-content .menu-toggle .bar:nth-child(2) {
            opacity: 0;
        }
        
        .sidebar.open~.main-content .menu-toggle .bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
        }
        
        .sidebar.open+.overlay {
            display: block;
        }
        
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-color);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity .5s ease;
        }
        
        .spinner {
            border: 4px solid rgba(0, 0, 0, .1);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border-left-color: var(--accent-color);
            animation: spin 1s ease infinite;
        }
        
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
        
        #main-controls-header {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            margin-top: 2.5rem;
        }
        
        @media (min-width: 1024px) {
            #main-controls-header {
                margin-top: 0;
            }
        }
        
        .main-filters {
            display: flex;
            gap: .75rem;
            padding: .5rem 0;
        }
        
        .filter-tag-btn {
            padding: .5rem 1rem;
            border: 1px solid var(--border-color);
            background-color: var(--card-bg-color);
            color: var(--text-color);
            border-radius: 18px;
            cursor: pointer;
            font-weight: 500;
            white-space: nowrap;
            transition: all .2s;
        }
        
        .filter-tag-btn:hover {
            background-color: var(--tag-bg-color);
            border-color: var(--tag-bg-color);
        }
        
        .filter-tag-btn.active {
            background-color: var(--accent-color);
            color: #fff;
            border-color: var(--accent-color);
        }
        
        #conteudos {
            display: grid;
            gap: 1.5rem;
            min-height: 400px;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        }
        
        .conteudo {
            background-color: var(--card-bg-color);
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: transform .6s ease-out, opacity .6s ease-out, box-shadow .2s;
            display: flex;
            flex-direction: column;
            visibility: hidden;
            /* O ScrollReveal vai mudar isso */
            overflow: hidden;
        }
        
        .conteudo:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover-color);
        }
        
        .conteudo.viewed .conteudo-info {
            opacity: 0.7;
        }
        
        .conteudo.viewed .media-container {
            border-bottom: 3px solid var(--accent-color);
        }
        
        .conteudo.viewed:hover .conteudo-info {
            opacity: 1;
        }
        
        .media-container {
            position: relative;
            cursor: pointer;
            background-color: #000;
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
        }
        
        .conteudo img,
        .conteudo video,
        .conteudo iframe {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border: none;
        }
        
        .media-container .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--overlay-color);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity .3s ease;
        }
        
        .media-container:hover .overlay {
            opacity: 1;
        }
        
        .visualizar-btn {
            background-color: white;
            color: #333;
            border: none;
            padding: .6rem 1.2rem;
            border-radius: 20px;
            cursor: pointer;
            font-weight: bold;
        }
        
        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, .6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            pointer-events: none;
            transition: transform .2s;
        }
        
        .media-container:hover .play-icon {
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .play-icon svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
            margin-left: 3px;
        }
        
        .conteudo-info {
            padding: 1rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }
        
        .card-actions-bar {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 0.5rem;
        }
        
        .card-button-group {
            display: flex;
            gap: .8rem;
        }
        
        .card-header {
            margin-bottom: .5rem;
        }
        
        .conteudo h2 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-color);
        }
        
        .action-wrapper {
            display: flex;
            align-items: center;
            gap: .3rem;
            color: var(--text-color-light);
        }
        
        .like-btn-card,
        .favorite-btn-card {
            background: transparent;
            border: none;
            padding: 0;
            cursor: pointer;
            transition: transform .2s;
            display: flex;
        }
        
        .like-btn-card svg,
        .favorite-btn-card svg {
            width: 22px;
            height: 22px;
            color: var(--text-color-light);
            fill: transparent;
            stroke: currentColor;
            stroke-width: 2;
            transition: color .2s, fill .2s;
        }
        
        .action-wrapper.liked .like-btn-card svg {
            color: var(--accent-color);
            fill: var(--accent-color);
            stroke: var(--accent-color);
        }
        
        .action-wrapper.favorited .favorite-btn-card svg {
            color: var(--favorite-color);
            fill: var(--favorite-color);
            stroke: var(--favorite-color);
        }
        
        .action-wrapper.liked,
        .action-wrapper.favorited {
            font-weight: bold;
        }
        
        .action-wrapper.liked {
            color: var(--accent-color);
        }
        
        .action-wrapper.favorited {
            color: var(--favorite-color);
        }
        
        .action-wrapper:hover .count {
            color: var(--accent-color);
        }
        
        .count {
            font-size: .9em;
            font-weight: 500;
        }
        
        .description-text {
            font-size: .9rem;
            color: var(--text-color-light);
            margin: .5rem 0;
            line-height: 1.4;
        }
        
        .description-text.truncated {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .toggle-description-btn {
            font-size: 0.9rem;
            /*    color: var(--text-color-light); */
            color: #4C4C4C;
            font-weight: 500;
            cursor: pointer;
        }
        
        .data {
            font-size: .8rem;
            color: var(--text-color-light);
            margin-top: auto;
            padding-top: .5rem;
        }
        
        #paginacao {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 2.5rem;
            flex-wrap: wrap;
            gap: .5rem;
        }
        
        .page-number,
        .ellipsis {
            padding: .6rem .9rem;
            border: 1px solid var(--border-color);
            background-color: var(--card-bg-color);
            color: var(--accent-color);
            cursor: pointer;
            border-radius: 6px;
            transition: background-color .2s, color .2s;
            font-weight: 500;
        }
        
        .page-number:hover {
            background-color: var(--accent-color);
            color: white;
        }
        
        .page-number.active {
            background-color: var(--accent-color);
            color: white;
            border-color: var(--accent-color);
            cursor: default;
        }
        
        .ellipsis {
            cursor: default;
            border: none;
            background: none;
            color: var(--text-color-light);
        }
        
        .pagination-total {
            flex-basis: 100%;
            text-align: center;
            margin-top: 1rem;
            padding-bottom: 1.5rem;
            color: var(--text-color-light);
            font-size: .9rem;
            /*    border-bottom: 1px solid var(--border-color); */
        }
        
        /***/
        .pagination-total {
            position: relative;
        }
        
        .pagination-total::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            /* espessura da borda */
            background: #3D3D3D;
        }
        
        /***/
        
        .pswp__bg {
            background: #000;
        }
        
        .pswp__top-bar {
            background-color: rgba(0, 0, 0, 0.5);
        }
        
        .pswp__counter {
            padding-right: 1rem;
        }
        
        .pswp__custom-actions {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            height: 44px;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .pswp__button--share-custom {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            opacity: .75;
            transition: opacity .2s, transform .2s;
            padding: 10px;
        }
        
        .pswp__button--share-custom:hover {
            opacity: 1;
            transform: scale(1.1);
        }
        
        .pswp__button--share-custom svg {
            width: 24px;
            height: 24px;
        }
        
        .pswp__custom-action-btn {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: .5rem;
            font-size: 1rem;
            opacity: .75;
            transition: opacity .2s, transform .2s;
        }
        
        .pswp__custom-action-btn:hover {
            opacity: 1;
            transform: scale(1.1);
        }
        
        .pswp__custom-action-btn svg {
            width: 24px;
            height: 24px;
            fill: transparent;
            stroke: currentColor;
            stroke-width: 1.5;
        }
        
        .pswp__custom-action-btn .count {
            font-size: 1em;
            font-weight: 500;
        }
        
        .pswp__custom-action-btn.liked {
            color: var(--accent-color);
        }
        
        .pswp__custom-action-btn.liked svg {
            fill: var(--accent-color);
            stroke: var(--accent-color);
        }
        
        .pswp__custom-action-btn.favorited {
            color: var(--favorite-color);
        }
        
        .pswp__custom-action-btn.favorited svg {
            fill: var(--favorite-color);
            stroke: var(--favorite-color);
        }
        
        .pswp__item iframe,
        .pswp__item video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: auto;
            max-width: 1024px;
            max-height: 100%;
            aspect-ratio: 16 / 9;
        }
        
        .pswp__caption .pswp__caption__center {
            text-align: left;
            max-width: 700px;
            margin: 0 auto;
            padding: 10px;
        }
        
        .pswp__caption h3 {
            font-size: 1.1rem;
            margin: 0 0 .6rem 0;
            color: #fff;
            font-weight: 600;
        }
        
        .pswp__caption p {
            font-size: .9rem;
            margin: .75rem 0 0 0;
            color: #ccc;
            line-height: 1.5;
            white-space: pre-wrap;
        }
        
        .destaques-section {
            margin-top: 3rem;
            margin-bottom: 2rem;
            padding: 0 1rem;
            
        }
        
        .destaques-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 1.9rem;
            text-align: center;
            border-bottom: none;
        }
        
        .swiper {
            width: 100%;
            /* height: 300px; */
            /* REMOVA ou comente esta linha */
            aspect-ratio: 12 / 9;
            /* ADICIONE esta linha */
            border-radius: 12px;
        }
        
        .swiper-slide {
            position: relative;
            text-align: left;
            font-size: 18px;
            background: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 12px;
            overflow: hidden;
        }
        
        /*-swiper-slid.deixa a imagem Quadrada---*/
        .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .swiper-slide:hover img {
            transform: scale(1.05);
        }
        
        /* Este é o novo contêiner com o fundo gradiente */
        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, transparent);
            /* Gradiente mais forte para melhor leitura */
            color: white;
            padding: 1.9rem;
            text-align: cen;
            box-sizing: border-box;
            /* Garante que o padding não cause problemas de layout */
        }
        
        /* Estilo para o título (h3) dentro do contêiner */
        .slide-title {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 0 0 0.25rem 0;
            /* Pequeno espaçamento abaixo do título */
            line-height: 1.3;
        }
        
        */

        /* Estilo para a nova descrição (p) */
        .slide-description {
            font-size: 0.95rem;
            font-weight: 400;
            margin: 0;
            line-height: 1.4;
            opacity: 0.9;
            /* Limita a descrição a 2 linhas para não poluir o slide */
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        /* ANIMAÇÃO PARA O TEXTO DOS DESTAQUES*/
        /* 1. Esconde o título e a descrição por padrão */
        .slide-title,
        .slide-description {
            opacity: 0;
            transform: translateY(20px);
            /* Começa um pouco para baixo */
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
            /* Define a animação suave */
        }
        
        /* 2. Mostra o texto APENAS no slide ativo */
        .swiper-slide-active .slide-title,
        .swiper-slide-active .slide-description {
            opacity: 1;
            transform: translateY(0);
            /* Volta para a posição original */
        }
        
        /* 3. (Opcional) Adiciona um pequeno atraso para animar um após o outro */
        .swiper-slide-active .slide-description {
            transition-delay: 0.2s;
            /* A descrição aparece 0.2s depois do título */
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            color: var(--card-bg-color) !important;
            background-color: rgba(0, 0, 0, 0.3);
            width: 44px;
            height: 44px;
            border-radius: 50%;
        }
        
        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px !important;
            font-weight: bold;
        }
        
        /* bullets base */
        .swiper-pagination-bullet {
            position: relative;
            width: 10px;
            /* menor miolo */
            height: 10px;
            border-radius: 50%;
            background: #ffffff;
            /* cor dos bullets não ativos */
            opacity: 1 !important;
            box-shadow: none !important;
            margin: 0 6px;
            transition: background .18s, transform .18s;
        }
        
        /* miolo ativo */
        .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background: var(--primary-color) !important;
        }
        
        /* anel externo */
        .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            /* anel menor */
            height: 20px;
            border-radius: 50%;
            border: 1.0px solid rgba(255, 255, 255, 0.95);
            /* borda branca */
            background: transparent;
            pointer-events: none;
            box-sizing: content-box;
        }
        
        /* AUMENTA O ESPAÇAMENTO DOS PONTOS DA PAGINAÇÃO*/
        .swiper-pagination-bullet {
            margin: 0 8px !important;
            /* Adiciona 8px de espaço em cada lado do pontinho */
        }
        
        .about-section {
            padding: 3rem 1.5rem;
            background-color: var(--card-bg-color);
            text-align: center;
            margin-top: 3rem;
            border-top: 1px solid var(--border-color);
        }
        
        .about-container {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        
        .about-logo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            box-shadow: var(--shadow);
        }
        
        .about-container h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-color);
            margin: 0;
        }
        
        .about-container p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-color-light);
            margin: 0;
        }
        
        footer {
            text-align: center;
            padding: 1.5rem;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: var(--text-color-light);
            border-top: 1px solid var(--border-color);
        }
        
        footer a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
        }
        
        footer a:hover {
            text-decoration: underline;
        }
        
        .pswp__button--download {
            display: none !important;
        }
        
        .pswp__button--arrow--left,
        .pswp__button--arrow--right {
            background: rgba(0, 0, 0, 0.3) !important;
            width: 50px;
            height: 60px;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 8px;
            background-image: none !important;
        }
        
        .pswp__button--arrow--left:hover,
        .pswp__button--arrow--right:hover {
            background: rgba(0, 0, 0, 0.5) !important;
        }
        
        .pswp__button--arrow--left::before,
        .pswp__button--arrow--right::before {
            display: none !important;
        }
        
        .pswp__button--arrow--left {
            left: 10px;
        }
        
        .pswp__button--arrow--right {
            right: 10px;
        }
        
        .pswp__button--arrow--left::after,
        .pswp__button--arrow--right::after {
            font-family: Arial, sans-serif;
            font-size: 40px;
            line-height: 1;
            color: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .pswp__button--arrow--left::after {
            content: '<';
        }
        
        .pswp__button--arrow--right::after {
            content: '>';
        }
        
        .feature-sections {
            /*    padding: 3rem 1.5rem; */
            display: flex;
            flex-direction: column;
            gap: 4rem;
            max-width: 1200px;
            margin: 3rem auto 0 auto;
            display: none;
            overflow: hidden;
            /* Garante que os elementos não apareçam antes da animação */
        }
        
        .feature-row {
            display: flex;
            align-items: flex-start;
            /* CORRIGIDO: Alinha imagem e texto no topo */
            gap: 3rem;
            flex-direction: column;
            /* MOBILE FIRST: Imagem em cima, texto embaixo */
            background-color: var(--card-bg-color);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            /*  padding: 0 0 1rem 0; */
            padding: 0.5rem 0.5rem;
            /* 2rem em cima e embaixo, 1rem nas laterais */
        }
        
        @media (min-width: 768px) {
            .feature-row {
                flex-direction: row;
                /* Desktop: Lado a Lado */
            }
            
            .feature-row.reverse {
                flex-direction: row-reverse;
                /* Desktop Invertido: Lado a Lado, invertido */
            }
        }
        
        .feature-image,
        .feature-text {
            width: 100%;
        }
        
        @media (min-width: 768px) {
            
            .feature-image,
            .feature-text {
                width: 50%;
            }
        }
        
        .feature-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: var(--shadow);
            display: block;
        }
        
        .feature-text h2 {
            font-size: 1.75rem;
            margin-top: 0;
            margin-bottom: 1rem;
            color: var(--text-color);
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .feature-text p {
            color: var(--text-color-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .feature-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.2s, transform 0.2s;
        }
        
        .feature-button:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
        }
        
        #toast-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 10000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .toast {
            background-color: var(--sidebar-bg);
            color: var(--sidebar-text-hover);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            font-weight: 500;
        }
        
        .toast.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .marca {
            font-weight: bold;
            color: #4dabf7;
            /* verde escuro */
            font-family: 'Arial', sans-serif;
        }
        
        /* redes sociais */
        .social-follow-section {
            text-align: center;
            padding: 3rem 1.5rem;
            margin-top: 2rem;
        }
        
        .social-follow-section h3 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--text-color);
        }
        
        .social-links-neon {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .social-links-neon a {
            color: var(--accent-color);
            font-size: 1.9rem;
            transition: all 0.3s ease;
            text-decoration: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: neon-glow 1.5s infinite alternate;
        }
        
        .social-links-neon a:hover {
            color: var(--primary-hover);
            transform: scale(1.1) translateY(-5px);
            animation-play-state: paused;
        }