/* Estilos específicos para a página FAQ */

/* Banner da página */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/banner-faq.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, #f9f9f9, transparent);
}

.page-banner h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease;
}

.page-banner p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease 0.3s both;
    line-height: 1.6;
}

/* Seção de pesquisa FAQ */
.faq-search-section {
    background: linear-gradient(135deg, #3498db, #1a5276);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-search-container {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.faq-search-container h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.search-box {
    display: flex;
    margin: 0 auto 25px;
    max-width: 700px;
    position: relative;
}

.search-box input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.search-box input:focus {
    border-color: #3498db;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.15);
    outline: none;
}

.search-box .search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: #3498db;
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box .search-btn:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

.pulse-animation {
    animation: pulse 1.5s infinite;
}

.popular-searches {
    margin-top: 20px;
}

.popular-searches p {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 1rem;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.search-tag {
    background-color: #f5f7fa;
    color: #34495e;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.search-tag:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.animate-tag {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

.animate-tag:nth-child(1) {
    animation-delay: 0.2s;
}

.animate-tag:nth-child(2) {
    animation-delay: 0.4s;
}

.animate-tag:nth-child(3) {
    animation-delay: 0.6s;
}

.animate-tag:nth-child(4) {
    animation-delay: 0.8s;
}

/* Formas flutuantes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 4rem;
    animation: float 8s infinite ease-in-out;
}

.shape-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    font-size: 5rem;
}

.shape-2 {
    top: 60%;
    left: 15%;
    animation-delay: 1s;
    font-size: 4.5rem;
}

.shape-3 {
    top: 25%;
    right: 10%;
    animation-delay: 2s;
    font-size: 4rem;
}

.shape-4 {
    top: 70%;
    right: 15%;
    animation-delay: 3s;
    font-size: 3.5rem;
}

.shape-5 {
    top: 45%;
    left: 50%;
    animation-delay: 4s;
    font-size: 3rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(15px) rotate(-5deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

/* Seção de FAQ */
.faq-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('../images/pattern-light.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

/* Categorias de FAQ */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    animation: fadeIn 0.8s ease;
}

.faq-category-btn {
    padding: 12px 25px;
    background-color: #ffffff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.faq-category-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3498db;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.faq-category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-category-btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.faq-category-btn.active {
    background-color: #3498db;
    color: white;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.faq-category-btn.active::after {
    transform: scaleX(1);
}

/* Container de FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeIn 1s ease 0.2s both;
}

/* Categorias de perguntas */
.faq-category {
    display: none;
    animation: fadeIn 0.5s ease;
}

.faq-category.active {
    display: block;
}

/* Itens de FAQ */
.faq-item {
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-item.active {
    border-left: 4px solid #3498db;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background-color: #f0f0f0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: scaleX(1);
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
    padding-right: 20px;
    line-height: 1.5;
}

.faq-item.active .faq-question h3 {
    color: #3498db;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background-color: #f0f0f0;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: #666;
    transition: all 0.3s ease;
}

.faq-toggle::before {
    width: 12px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 12px;
}

.faq-item.active .faq-toggle {
    background-color: #3498db;
    transform: rotate(180deg);
}

.faq-item.active .faq-toggle::before,
.faq-item.active .faq-toggle::after {
    background-color: #fff;
}

.faq-item.active .faq-toggle::after {
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 5px 30px 30px;
    opacity: 1;
}

.faq-answer p {
    margin-top: 15px;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-answer ul {
    margin-top: 15px;
    padding-left: 25px;
}

.faq-answer li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
    position: relative;
}

.faq-answer li::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #3498db;
}

/* Elementos adicionais para respostas de FAQ */
.faq-answer-content {
    padding: 10px 0;
}

/* Processos em etapas */
.faq-process-steps {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
    flex-wrap: wrap;
}

.faq-process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 100px;
    margin: 0 5px 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #3498db;
    color: #3498db;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
    background-color: #3498db;
    color: #fff;
}

.step-text {
    font-weight: 500;
    color: #555;
    text-align: center;
}

/* Tópicos de FAQ */
.faq-topics {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.topic-item {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.topic-item:hover {
    background-color: #e9f7fe;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.topic-item i {
    color: #3498db;
    font-size: 1.2rem;
    margin-right: 12px;
}

/* Níveis educacionais */
.education-levels {
    margin: 25px 0;
}

.level-bar {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.level-label {
    width: 150px;
    font-weight: 500;
    color: #555;
}

.level-progress {
    flex: 1;
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #3498db, #2ecc71);
    border-radius: 5px;
    transition: width 1.5s ease;
}

/* Ícones de documentos */
.document-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 25px 0;
}

.document-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.document-icon i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 10px;
}

/* Mapa mundial */
.world-map {
    position: relative;
    margin: 30px auto;
    max-width: 600px;
}

.world-map-img {
    width: 100%;
    opacity: 0.8;
}

.map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #3498db;
    border-radius: 50%;
}

.dot-brazil {
    bottom: 35%;
    left: 30%;
}

.dot-usa {
    top: 35%;
    left: 20%;
}

.dot-europe {
    top: 30%;
    left: 48%;
}

.dot-asia {
    top: 40%;
    right: 25%;
}

.pulse {
    animation: map-pulse 2s infinite;
}

@keyframes map-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

.language-flags {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.flag {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flag img {
    width: 40px;
    height: auto;
    margin-bottom: 8px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Elementos visuais para aulas online */
.online-class-visual {
    margin: 25px 0;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.platform {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.platform i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 8px;
}

.class-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.feature:hover {
    background-color: #e9f7fe;
    transform: translateY(-2px);
}

.feature i {
    color: #3498db;
    margin-right: 8px;
}

/* Container de vídeo */
.faq-media {
    margin: 30px 0;
}

.video-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container video {
    width: 100%;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(52, 152, 219, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-button:hover {
    background-color: rgba(52, 152, 219, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Gráfico de frequência */
.frequency-chart {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 30px 0;
}

.chart-item {
    display: flex;
    align-items: flex-start;
    width: 30%;
    min-width: 250px;
    margin-bottom: 20px;
}

.chart-icon {
    width: 50px;
    height: 50px;
    background-color: #f0f7fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #3498db;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.chart-info {
    flex: 1;
}

.chart-info h4 {
    margin: 0 0 10px;
    color: #333;
}

.frequency-bars {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
}

.frequency-bar {
    width: 25px;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
}

.frequency-bar.active {
    background-color: #3498db;
}

/* Cards de preços */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    width: 30%;
    min-width: 250px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    transform: scale(1.05);
    border-color: #3498db;
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 20px;
    background-color: #f8f9fa;
    text-align: center;
    position: relative;
}

.card-header h4 {
    margin: 0 0 15px;
    color: #333;
    font-size: 1.2rem;
}

.price-tag {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 700;
}

.discount {
    font-size: 1.5rem;
}

.off {
    font-size: 0.8rem;
    margin-left: 3px;
}

.card-body {
    padding: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.feature-item i {
    color: #2ecc71;
    margin-right: 10px;
}

/* Grade de materiais */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.material-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.material-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.material-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f7fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #3498db;
    font-size: 1.5rem;
}

.material-info h4 {
    margin: 0 0 10px;
    color: #333;
}

.material-info p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.material-preview {
    position: relative;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.preview-image {
    width: 100%;
    display: block;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.preview-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.material-preview:hover .preview-overlay {
    opacity: 1;
}

/* Métodos de envio */
.submission-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
}

.method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 150px;
}

.method i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.method h4 {
    margin: 0 0 8px;
    color: #333;
}

.method p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Dicas animadas */
.faq-tips {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    position: relative;
    overflow: hidden;
}

.faq-tips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 193, 7, 0.1) 50%, rgba(255, 193, 7, 0.1) 75%, transparent 75%, transparent);
    background-size: 10px 10px;
    opacity: 0.3;
    z-index: 0;
}

.faq-tips h4 {
    margin: 0 0 10px;
    color: #333;
    position: relative;
    z-index: 1;
}

.faq-tips h4 i {
    color: #ffc107;
    margin-right: 8px;
}

.faq-tips p {
    margin: 0;
    position: relative;
    z-index: 1;
}

.animated-tip {
    animation: tipPulse 2s infinite;
}

@keyframes tipPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Showcase de resolução */
.resolution-showcase {
    margin: 25px 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.showcase-tabs {
    display: flex;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.tab-btn {
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3498db;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn:hover {
    color: #333;
}

.tab-btn.active {
    color: #3498db;
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.showcase-content {
    padding: 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.resolution-preview {
    position: relative;
}

.resolution-image {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.zoom-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.zoom-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background-color: #3498db;
    color: white;
}

/* Showcase de software */
.software-showcase {
    margin: 25px 0;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.software-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.software-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.software-icon img {
    max-width: 100%;
    max-height: 100%;
}

.expertise-level {
    width: 100%;
    height: 6px;
    background-color: #f0f0f0;
    border-radius: 3px;
    margin-top: 8px;
    overflow: hidden;
    position: relative;
}

.level-fill {
    height: 100%;
    background: linear-gradient(to right, #3498db, #2ecc71);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease;
}

/* Métodos de pagamento */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
}

.payment-method {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 45%;
    min-width: 280px;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: #f0f7fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #3498db;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-info {
    flex: 1;
}

.method-info h4 {
    margin: 0 0 8px;
    color: #333;
}

.method-info p {
    margin: 0 0 10px;
    color: #666;
}

.card-brands {
    display: flex;
    gap: 10px;
}

.card-brands i {
    font-size: 1.5rem;
    color: #666;
}

.bank-icons {
    display: flex;
    gap: 10px;
}

.bank-icon {
    height: 25px;
}

.payment-info {
    margin-top: 20px;
    text-align: center;
}

.discount-info {
    display: inline-flex;
    align-items: center;
    background-color: #e9f7fe;
    padding: 10px 20px;
    border-radius: 30px;
}

.discount-info i {
    color: #3498db;
    margin-right: 10px;
    font-size: 1.2rem;
}

.discount-info p {
    margin: 0;
    color: #333;
}

/* Política de reembolso */
.refund-policy {
    margin: 25px 0;
}

.policy-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.policy-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.policy-icon {
    width: 50px;
    height: 50px;
    background-color: #f0f7fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #3498db;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.policy-info {
    flex: 1;
}

.policy-info h4 {
    margin: 0 0 8px;
    color: #333;
}

.policy-info p {
    margin: 0;
    color: #666;
}

/* Não encontrou sua dúvida */
.faq-not-found {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease 0.5s both;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.faq-not-found::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2ecc71);
}

.not-found-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.not-found-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.not-found-image img {
    max-width: 100%;
    max-height: 250px;
}

.faq-not-found h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.faq-not-found p {
    margin-bottom: 25px;
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.contact-btn {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn i {
    margin-right: 8px;
}

.contact-btn.whatsapp {
    background-color: #25d366;
    color: white;
}

.contact-btn.email {
    background-color: #3498db;
    color: white;
}

.contact-btn.form {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #e0e0e0;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn.whatsapp:hover {
    background-color: #22c55e;
}

.contact-btn.email:hover {
    background-color: #2980b9;
}

.contact-btn.form:hover {
    background-color: #e9ecef;
}

/* CTA nos itens de FAQ */
.faq-cta {
    margin-top: 25px;
    text-align: center;
}

.btn-glow {
    animation: btnGlow 2s infinite;
}

@keyframes btnGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(52, 152, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

.btn-hover-effect {
    position: relative;
    overflow: hidden;
}

.btn-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

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

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .page-banner {
        padding: 100px 0;
    }
    
    .page-banner h1 {
        font-size: 2.8rem;
    }
    
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-search-container {
        padding: 30px;
    }
    
    .chart-item {
        width: 45%;
    }
    
    .pricing-card {
        width: 45%;
    }
    
    .payment-method {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 2.4rem;
    }
    
    .page-banner p {
        font-size: 1.1rem;
    }
    
    .faq-search-container h2 {
        font-size: 1.8rem;
    }
    
    .search-box input {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .search-box .search-btn {
        width: 40px;
        height: 40px;
    }
    
    .faq-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px 0;
        margin: 0 -20px 40px;
        padding: 0 20px 15px;
    }
    
    .faq-category-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 0.95rem;
        padding: 10px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        width: calc(100% - 40px);
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-not-found {
        padding: 30px 20px;
        flex-direction: column;
    }
    
    .faq-not-found h3 {
        font-size: 1.5rem;
    }
    
    .chart-item {
        width: 100%;
    }
    
    .pricing-card {
        width: 100%;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .platform-icons,
    .class-features {
        flex-wrap: wrap;
    }
    
    .frequency-chart {
        flex-direction: column;
    }
    
    .materials-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
}

@media (max-width: 480px) {
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
    
    .faq-search-container {
        padding: 20px;
    }
    
    .faq-search-container h2 {
        font-size: 1.6rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-toggle {
        min-width: 24px;
        height: 24px;
    }
    
    .faq-not-found h3 {
        font-size: 1.3rem;
    }
    
    .faq-not-found p {
        font-size: 1rem;
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
    
    .document-icons {
        flex-direction: column;
        gap: 20px;
    }
    
    .submission-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .software-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    
}

/* Adicione este trecho ao final do seu arquivo faq.css */

/* Correção para a onda do banner */
.banner-wave {
    display: block;
    line-height: 0;
    margin-bottom: -5px !important;
    position: relative;
    z-index: 2;
}

.banner-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Correção para a seção de pesquisa */
.faq-search-section {
    position: relative;
    z-index: 1;
    margin-top: -1px; /* Garante que não haja espaço entre as seções */
}

/* Estilo para o modal de imagem ampliada */
.image-modal {
    display: flex;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

/* Mensagem de nenhum resultado encontrado */
#no-results-message {
    display: none;
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #e74c3c;
}

#no-results-message h3 {
    color: #e74c3c;
    margin-bottom: 10px;
}

#no-results-message p {
    color: #666;
}
