* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            box-sizing: border-box;
            background-color: white;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-y: scroll;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Esconder barra de rolagem da página principal - TODAS AS VERSÕES */
        body::-webkit-scrollbar {
            display: none;
            width: 0;
            height: 0;
        }
        
        body::-webkit-scrollbar-track {
            display: none;
        }
        
        body::-webkit-scrollbar-thumb {
            display: none;
        }
        
        html {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        html::-webkit-scrollbar {
            display: none;
            width: 0;
            height: 0;
        }

        /* Barra de rolagem personalizada - Fina e Cor de Fogo */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #ff4e50 0%, #f9d423 100%);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #ff3a3d 0%, #f7c700 100%);
        }

        /* Para Firefox */
        * {
            scrollbar-width: thin;
            scrollbar-color: #ff4e50 #f1f1f1;
        }



        html {
            height: 100%;
            background-color: white;
        }

        .instituto-page-wrapper {
            width: 100%;
            flex: 1;
            padding: 20px;
            position: relative;
            background-color: white;
            display: flex;
            flex-direction: column;
        }

        .instituto-page-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('../images/logo.png');
            background-position: center;
            background-size: 600px;
            background-repeat: no-repeat;
            opacity: 0.08;
            z-index: 0;
            pointer-events: none;
        }

        @media (max-width: 1200px) {
            .instituto-page-wrapper::before {
                background-size: 500px;
            }
        }

        @media (max-width: 768px) {
            .instituto-page-wrapper::before {
                background-size: 400px;
            }
        }

        @media (max-width: 480px) {
            .instituto-page-wrapper::before {
                background-size: 300px;
            }
        }

        /* Esconder barra de rolagem mas manter funcionalidade */
        .modal::-webkit-scrollbar {
            display: none;
        }
        
        .modal {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Botão voltar ao topo */
        .btn-voltar-topo {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff4e50 0%, #f9d423 100%);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 78, 80, 0.4);
            z-index: 2500;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            opacity: 0;
            transform: scale(0.8);
        }

        .btn-voltar-topo.visivel {
            display: flex;
            opacity: 1;
            transform: scale(1);
        }

        .btn-voltar-topo:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 78, 80, 0.6);
        }

        .conteudo {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            flex: 1;
        }

        .logo {
            width: 150px;
            height: 150px;
            margin: 0 auto 20px;
            background: url('../images/logo.png') center/cover;
            border-radius: 50%;
            box-shadow: 0 0 0 6px rgba(255, 78, 80, 0.4), 0 0 0 12px rgba(255, 190, 0, 0.3), 0 8px 20px rgba(0,0,0,0.4);
            border: 4px solid rgba(255, 255, 255, 0.9);
            animation: pulseLogoGlow 3s ease-in-out infinite;
        }

        h1 {
            color: #2d3748;
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .contador-visitas {
            background: linear-gradient(135deg, #ff4e50 0%, #f9d423 100%);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            display: inline-block;
            margin-bottom: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(255, 78, 80, 0.4);
            animation: pulseGlow 2s ease-in-out infinite;
        }

        .descricao {
            color: #4a5568;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 35px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 15px;
        }

        .botoes-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-bottom: 30px;
            padding: 0 15px;
        }

        .botao-acao {
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .botao-acao::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }

        .botao-acao:hover::before {
            left: 100%;
        }

        .botao-acao:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .botao-whatsapp {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        }

        .botao-alunos {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .botao-capacitacao {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .botao-instituicao {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .botao-convencao {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .botao-livros {
            background: linear-gradient(135deg, #ff9a56 0%, #ff6a88 100%);
        }

        .botao-privacidade {
            background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
        }

        .botao-facebook {
            background: linear-gradient(135deg, #1877f2 0%, #0e5ec7 100%);
        }

        .botao-instagram {
            background: linear-gradient(135deg, #f58529 0%, #dd2a7b 100%);
        }

        .botao-fogo {
            background: linear-gradient(135deg, #ff4e50 0%, #f9d423 100%);
            font-size: 1.1rem;
            padding: 12px 50px;
        }

        .botao-liberar-curso {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            font-size: 1rem;
            padding: 10px 35px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .info-horario {
            color: #718096;
            font-size: 1.2rem;
            line-height: 1.6;
            margin-top: 25px;
            margin-bottom: 40px;
            padding: 0 15px;
            font-weight: 600;
        }

        .info-horario p {
            margin: 5px 0;
        }

        .rodape-site {
            width: 100%;
            background: url('../images/logo.png') center/cover;
            color: white;
            padding: 40px 20px;
            text-align: center;
            font-size: 1rem;
            line-height: 2.2;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
            margin-top: auto;
            position: relative;
        }

        .rodape-site::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

        .rodape-conteudo {
            position: relative;
            z-index: 2;
        }

        .rodape-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 25px;
            background: url('../images/logo.png') center/cover;
            border-radius: 50%;
            box-shadow: 0 0 0 6px rgba(255, 78, 80, 0.4), 0 0 0 12px rgba(255, 190, 0, 0.3), 0 8px 20px rgba(0,0,0,0.4);
            border: 4px solid rgba(255, 255, 255, 0.9);
            animation: pulseLogoGlow 3s ease-in-out infinite;
        }

        @keyframes pulseLogoGlow {
            0%, 100% {
                box-shadow: 0 0 0 6px rgba(255, 78, 80, 0.4), 0 0 0 12px rgba(255, 190, 0, 0.3), 0 8px 20px rgba(0,0,0,0.4);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(255, 78, 80, 0.6), 0 0 0 16px rgba(255, 190, 0, 0.5), 0 10px 25px rgba(0,0,0,0.5);
            }
        }

        .rodape-nome-instituicao {
            font-size: 2rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 8px;
            letter-spacing: 3px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        .rodape-info {
            font-size: 1rem;
            line-height: 2.2;
            max-width: 1200px;
            margin: 0 auto 15px;
        }

        .rodape-site a {
            color: #ffffff;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .rodape-site a:hover {
            opacity: 0.8;
        }

        .rodape-botoes {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 15px;
        }

        .rodape-botoes .botao-acao {
            font-size: 1rem;
            padding: 10px 40px;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
            padding: 25px 20px;
            box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
            z-index: 2000;
            animation: slideUp 0.5s ease;
            border-top: 3px solid #667eea;
        }

        @keyframes slideUp {
            from {
                bottom: -200px;
                opacity: 0;
            }
            to {
                bottom: 0;
                opacity: 1;
            }
        }

        .cookie-banner.hidden {
            display: none;
        }

        .cookie-conteudo {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .cookie-info {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 1;
            min-width: 250px;
        }

        .cookie-icone {
            font-size: 3rem;
            color: #fbbf24;
        }

        .cookie-texto-container {
            flex: 1;
        }

        .cookie-titulo {
            color: white;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .cookie-texto {
            color: #cbd5e0;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .cookie-acoes {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .botao-aceitar-cookie, .botao-recusar-cookie {
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .botao-aceitar-cookie {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .botao-aceitar-cookie::before,
        .botao-recusar-cookie::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }

        .botao-aceitar-cookie:hover::before,
        .botao-recusar-cookie:hover::before {
            left: 100%;
        }

        .botao-recusar-cookie {
            background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
            color: white;
        }

        .botao-aceitar-cookie:hover, .botao-recusar-cookie:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            overflow-y: auto;
        }

        .modal.ativo {
            display: block;
        }

        .modal-conteudo {
            background: white;
            width: 100%;
            min-height: 100%;
            position: relative;
        }

        .modal-header {
            background: url('../images/logo.png') center/cover;
            position: relative;
            padding: 60px 20px;
            text-align: center;
            color: white;
        }

        .modal-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 60, 50, 0.95) 0%, rgba(255, 190, 0, 0.95) 100%);
            z-index: 1;
        }

        .modal-header-conteudo {
            position: relative;
            z-index: 2;
        }

        .modal-icone {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .modal-titulo {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .modal-texto {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 25px;
            line-height: 1.6;
        }

        .secao-completa {
            width: 100%;
            padding: 50px 20px;
            background: #f7fafc;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cards-container-dois {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cards-container-full {
            display: flex;
            flex-direction: column;
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .card-icone {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .card-titulo {
            font-size: 1.5rem;
            margin-bottom: 12px;
            font-weight: 700;
            color: #2d3748;
        }

        .card-texto {
            font-size: 1rem;
            line-height: 1.6;
            color: #4a5568;
        }

        .card-colorido {
            background: white;
            color: #2d3748;
        }

        .card-colorido .card-titulo,
        .card-colorido .card-texto {
            color: #2d3748;
        }

        .card-colorido .card-icone {
            color: #ef4444;
        }

        .card-1 {
            background: white;
        }

        .card-2 {
            background: white;
        }

        .card-3 {
            background: white;
        }

        .card-4 {
            background: white;
        }

        /* Card de capacitação com imagem de fundo */
        .card-capacitacao {
            background: white;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            padding: 0;
            text-align: center;
        }

        .card-capacitacao-bg {
            width: 100%;
            height: 200px;
            background: url('../images/logo.png') center/cover;
            position: relative;
        }

        .card-capacitacao-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(102, 126, 234, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-capacitacao-icone {
            font-size: 4rem;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .card-capacitacao-conteudo {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .card-capacitacao .card-titulo {
            color: #2d3748;
        }

        .card-capacitacao .card-texto {
            color: #4a5568;
            flex: 1;
        }

        .secao-duracao {
            background: white;
            padding: 60px 20px;
            text-align: center;
        }

        .duracao-icone {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #667eea;
        }

        .duracao-titulo {
            font-size: 1.8rem;
            color: #2d3748;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .duracao-texto {
            font-size: 1.1rem;
            color: #4a5568;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .modal-footer {
            background: url('../images/logo.png') center/cover;
            position: relative;
            padding: 50px 20px;
            text-align: center;
            color: white;
        }

        .modal-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 60, 50, 0.95) 0%, rgba(255, 190, 0, 0.95) 100%);
            z-index: 1;
        }

        .modal-footer-conteudo {
            position: relative;
            z-index: 2;
        }

        .footer-botoes {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .galeria-fotos {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .foto-card {
            background: white;
            position: relative;
            padding-bottom: 100%;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .foto-card:hover {
            transform: scale(1.05);
        }

        .foto-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .modal-zoom {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 3000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            cursor: pointer;
        }

        .modal-zoom.ativo {
            display: flex;
        }

        .modal-zoom img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        }

        .loader {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #667eea;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            margin: 40px auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Cards de Filia��ões */
        .filiacao-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .filiacao-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }

        .filiacao-imagem-container {
            width: 100%;
            height: 600px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
        }

        .filiacao-imagem {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #ffffff;
            transition: transform 0.5s ease;
        }

        .filiacao-card:hover .filiacao-imagem {
            transform: scale(1.05);
        }

        .filiacao-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .filiacao-imagem-container:hover .filiacao-overlay {
            opacity: 1;
        }

        .filiacao-conteudo {
            padding: 8px 30px 15px 30px;
            text-align: center;
            background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
			
        }
        
        .filiacao-imagem-container {
            cursor: pointer;
            position: relative;
        }
        
        .filiacao-imagem-container:hover .filiacao-overlay {
            opacity: 1;
        }
        
        .filiacao-overlay {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .filiacao-overlay i {
            font-size: 4rem;
            color: white;
            pointer-events: none;
        }

        .filiacao-btn {
            background: linear-gradient(135deg, #ff4e50 0%, #f9d423 100%);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            width: 100%;
            box-shadow: 0 8px 20px rgba(255, 78, 80, 0.4);
            position: relative;
            overflow: hidden;
        }

        .filiacao-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transition: left 0.5s ease;
        }

        .filiacao-btn:hover::before {
            left: 100%;
        }

        .filiacao-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255, 78, 80, 0.6);
        }

        /* Cards de Planos Teológicos - COMPACTOS */
        .plano-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            max-width: 380px;
            margin: 0 auto;
        }

        .plano-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }

        .plano-header {
            background: url('../images/logo.png') center/cover;
            position: relative;
            padding: 25px 20px;
            text-align: center;
            color: white;
        }

        .plano-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 60, 50, 0.9) 0%, rgba(255, 190, 0, 0.9) 100%);
            z-index: 1;
        }

        .plano-header-conteudo {
            position: relative;
            z-index: 2;
        }

        .plano-icone {
            font-size: 2.2rem;
            margin-bottom: 8px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .plano-nome {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .plano-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .plano-descricao {
            color: #4a5568;
            font-size: 0.95rem;
            line-height: 1.5;
            text-align: center;
        }

        .plano-preco {
            text-align: center;
            padding: 15px;
            background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
            border-radius: 10px;
        }

        .plano-valor {
            font-size: 2.2rem;
            font-weight: 700;
            color: #ff4e50;
            margin-bottom: 5px;
        }

        .plano-parcelamento {
            font-size: 0.85rem;
            color: #667eea;
            font-weight: 600;
        }

        .plano-desconto {
            display: inline-block;
            background: linear-gradient(135deg, #ff4e50 0%, #f9d423 100%);
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-top: 5px;
        }

        .plano-beneficios {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .plano-beneficios li {
            padding: 6px 0;
            color: #2d3748;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid #e2e8f0;
        }

        .plano-beneficios li:last-child {
            border-bottom: none;
        }

        .plano-beneficios li i {
            color: #10b981;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .plano-cursos-container {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 15px;
            border-radius: 10px;
            color: white;
        }

        .plano-cursos-titulo {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-align: center;
        }

        .plano-cursos-lista {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .plano-cursos-lista li {
            padding: 5px 0;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .plano-cursos-lista li:last-child {
            border-bottom: none;
        }

        .plano-cursos-lista li i {
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .plano-botoes {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 8px;
        }

        .plano-botoes .botao-acao {
            width: 100%;
            justify-content: center;
            font-size: 1rem;
            padding: 12px;
        }

        .planos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            justify-items: center;
        }

        @media (max-width: 1024px) {
            .planos-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .planos-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                padding: 0 20px;
            }
            
            .plano-card {
                max-width: 500px;
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .planos-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                padding: 0 15px;
            }
            
            .plano-card {
                max-width: 100%;
                width: 100%;
            }

            .plano-header {
                padding: 20px 15px;
            }

            .plano-icone {
                font-size: 1.8rem;
            }

            .plano-nome {
                font-size: 1.3rem;
            }

            .plano-body {
                padding: 15px;
            }

            .plano-valor {
                font-size: 1.8rem;
            }

            .plano-beneficios li {
                font-size: 0.85rem;
            }

            .plano-cursos-lista li {
                font-size: 0.8rem;
            }

            .plano-botoes .botao-acao {
                font-size: 0.95rem;
                padding: 10px;
            }
        }

        @media (max-width: 360px) {
            .plano-card {
                max-width: 100%;
                width: 100%;
            }

            .plano-nome {
                font-size: 1.2rem;
            }

            .plano-valor {
                font-size: 1.6rem;
            }

            .plano-beneficios li,
            .plano-cursos-lista li {
                font-size: 0.75rem;
            }
        }

        /* Cards de Livros */
        .livro-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: none;
            transition: transform 0.3s ease;
            padding: 30px;
            text-align: center;
        }

        .livro-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }

        .livro-imagem {
            width: 100%;
            max-width: 300px;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin: 0 auto 25px;
            display: block;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .livro-conteudo {
            padding: 0;
        }

        .livro-titulo {
            color: #2d3748;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .livro-texto {
            color: #4a5568;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .botao-comprar, .botao-mais-info {
            width: 100%;
            max-width: 350px;
            padding: 12px;
            border: none;
            border-radius: 25px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
            margin: 0 auto;
        }

        .botao-comprar::before, .botao-mais-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }

        .botao-comprar:hover::before, .botao-mais-info:hover::before {
            left: 100%;
        }

        .botao-comprar:hover, .botao-mais-info:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 78, 80, 0.4);
        }

        /* Cards horizontais para privacidade */
        .card-horizontal {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            padding: 50px 40px;
            text-align: center;
            min-height: 250px;
        }

        .card-horizontal .card-icone {
            font-size: 4rem;
            flex-shrink: 0;
        }

        .card-horizontal-conteudo {
            flex: 1;
        }

        .card-horizontal .card-titulo {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .card-horizontal .card-texto {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Modal de Liberar Curso */
        .modal-liberar {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 3000;
            overflow-y: auto;
            padding: 20px;
        }

        .modal-liberar.ativo {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-liberar-conteudo {
            background: white;
            max-width: 500px;
            width: 100%;
            margin: auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 50px rgba(0,0,0,0.5);
            display: flex;
            flex-direction: column;
        }

        .modal-liberar-header {
            background: url('../images/logo.png') center/cover;
            position: relative;
            color: white;
            padding: 40px 25px;
            text-align: center;
            flex-shrink: 0;
        }

        .modal-liberar-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(102, 126, 234, 0.85);
            z-index: 1;
        }

        .modal-liberar-header > * {
            position: relative;
            z-index: 2;
        }

        .modal-liberar-header h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .modal-liberar-header p {
            font-size: 1rem;
            margin: 0;
        }

        .modal-liberar-body {
            padding: 25px;
            flex: 1 1 auto;
            overflow-y: visible;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #2d3748;
            font-weight: 600;
            margin-bottom: 6px;
            font-size: 0.95rem;
        }

        .form-group label i {
            color: #667eea;
            font-size: 1rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 10px 12px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s ease;
            background-color: #ffffff;
            color: #2d3748;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            background-color: #ffffff;
        }

        .form-group select option {
            background-color: #ffffff;
            color: #2d3748;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .modal-liberar-footer {
            padding: 20px 25px;
            background: #f7fafc;
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex-shrink: 0;
        }

        .botao-cancelar {
            background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .botao-cancelar:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .botao-confirmar {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .botao-confirmar:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        /* Modal Detalhes Curso */
        .modal-detalhes-curso {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 2500;
            overflow-y: auto;
        }

        .modal-detalhes-curso.ativo {
            display: block;
        }

        .modal-detalhes-conteudo {
            background: white;
            width: 100%;
            min-height: 100%;
        }

        .detalhes-hero {
            background: url('../images/logo.png') center/cover;
            position: relative;
            padding: 60px 20px;
            text-align: center;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .detalhes-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 60, 50, 0.95) 0%, rgba(255, 190, 0, 0.95) 100%);
            z-index: 1;
        }

        .detalhes-hero-conteudo {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .detalhes-hero h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .detalhes-hero p {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .detalhes-info-rapida {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .info-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .info-item i {
            font-size: 2rem;
        }

        .info-item span {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .detalhes-secao {
            padding: 60px 20px;
            max-width: 100%;
            margin: 0;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .detalhes-secao:nth-child(even) {
            background: #f7fafc;
        }

        .detalhes-secao-conteudo {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .detalhes-titulo {
            font-size: 2.5rem;
            color: #2d3748;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .detalhes-titulo i {
            font-size: 3rem;
            color: #667eea;
        }

        .detalhes-card-destaque {
            background: linear-gradient(135deg, #ff4e50 0%, #f9d423 100%);
            color: white;
            transform: scale(1.08);
            box-shadow: 0 20px 50px rgba(255, 78, 80, 0.6);
            border: 3px solid rgba(255, 255, 255, 0.3);
            animation: pulseGlow 2s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0%, 100% {
                box-shadow: 0 20px 50px rgba(255, 78, 80, 0.6);
            }
            50% {
                box-shadow: 0 25px 60px rgba(255, 78, 80, 0.8);
            }
        }

        .detalhes-card-destaque i {
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .detalhes-card-destaque h3,
        .detalhes-card-destaque p {
            color: white;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }

        .detalhes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .detalhes-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .detalhes-card:hover {
            transform: translateY(-5px);
        }

        .detalhes-card i {
            font-size: 3rem;
            color: #667eea;
            margin-bottom: 20px;
        }

        .detalhes-card h3 {
            font-size: 1.5rem;
            color: #2d3748;
            margin-bottom: 15px;
        }

        .detalhes-card p {
            color: #4a5568;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .certificado-preview {
            max-width: 800px;
            margin: 40px auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            overflow: hidden;
        }

        .certificado-preview img {
            width: 100%;
            height: auto;
            display: block;
        }

        .detalhes-cta {
            text-align: center;
            padding: 60px 20px;
            background: url('../images/logo.png') center/cover;
            position: relative;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .detalhes-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 60, 50, 0.95) 0%, rgba(255, 190, 0, 0.95) 100%);
            z-index: 1;
        }

        .detalhes-cta > * {
            position: relative;
            z-index: 2;
        }

        .detalhes-cta i.detalhes-icone-cta {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .detalhes-cta h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .detalhes-cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .botoes-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-fechar-detalhes {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .btn-fechar-detalhes:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        @media (max-width: 992px) {
            .cards-container-dois {
                grid-template-columns: 1fr;
            }

            .detalhes-hero h2 {
                font-size: 2rem;
            }

            .detalhes-hero p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .header-superior-conteudo {
                flex-direction: column;
                text-align: center;
            }

            .header-superior-nome {
                font-size: 1.5rem;
            }

            .header-superior-contato {
                flex-direction: column;
                gap: 10px;
                font-size: 1rem;
            }

            .header-superior-logo {
                width: 80px;
                height: 80px;
            }

            h1 {
                font-size: 1.8rem;
            }

            .modal-titulo {
                font-size: 1.8rem;
            }

            .botao-acao {
                font-size: 0.95rem;
                padding: 12px 25px;
            }

            .cookie-conteudo {
                flex-direction: column;
                text-align: center;
            }

            .cookie-info {
                flex-direction: column;
            }

            .cookie-acoes {
                justify-content: center;
                width: 100%;
            }

            .botao-aceitar-cookie, .botao-recusar-cookie {
                flex: 1;
                min-width: 130px;
            }

            .cards-container {
                grid-template-columns: 1fr;
            }

            .galeria-fotos {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 15px;
            }

            .livro-imagem {
                height: 300px;
            }

            .rodape-site {
                font-size: 0.85rem;
                padding: 30px 15px;
            }

            .rodape-botoes {
                gap: 10px;
            }

            .rodape-botoes .botao-acao {
                font-size: 0.95rem;
                padding: 9px 35px;
            }

            .rodape-logo {
                width: 100px;
                height: 100px;
                box-shadow: 0 0 0 4px rgba(255, 78, 80, 0.4), 0 0 0 8px rgba(255, 190, 0, 0.3), 0 6px 15px rgba(0,0,0,0.4);
            }

            .rodape-nome-instituicao {
                font-size: 1.6rem;
                letter-spacing: 2px;
            }

            .rodape-info {
                font-size: 0.95rem;
            }

            .rodape-site {
                padding: 50px 20px;
            }

            .info-horario {
                font-size: 1.05rem;
                line-height: 1.5;
            }
            
            .info-horario p {
                margin: 3px 0;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }

            .logo {
                width: 100px;
                height: 100px;
            }

            .descricao {
                font-size: 1rem;
            }

            .modal-titulo {
                font-size: 1.5rem;
            }

            .cookie-icone {
                font-size: 2rem;
            }

            .cookie-titulo {
                font-size: 1rem;
            }

            .cookie-texto {
                font-size: 0.85rem;
            }

            .rodape-botoes .botao-acao {
                font-size: 0.9rem;
                padding: 8px 30px;
            }

            .rodape-info {
                font-size: 0.8rem;
            }

            .rodape-nome-instituicao {
                font-size: 1.4rem;
                letter-spacing: 1px;
            }

            .rodape-logo {
                width: 80px;
                height: 80px;
                box-shadow: 0 0 0 3px rgba(255, 78, 80, 0.4), 0 0 0 6px rgba(255, 190, 0, 0.3), 0 4px 12px rgba(0,0,0,0.4);
            }

            .rodape-info {
                font-size: 0.9rem;
            }

            .info-horario {
                font-size: 0.95rem;
                line-height: 1.4;
            }
            
            .info-horario p {
                margin: 2px 0;
            }
        }