/**
 * TEATIA - Estilos para Páginas Informativas
 * Como Comprar, Formas de Pagamento, FAQ
 */

.teatia-info-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: white;
}

.teatia-info-page h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #9c27b0;
    text-align: center;
    margin: 0 0 40px;
    line-height: 1.2;
}

.teatia-info-page h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #2d3748;
    margin: 30px 0 20px;
}

.teatia-info-page h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #4a5568;
    margin: 20px 0 12px;
}

/* === SEÇÕES DE INFORMAÇÃO === */
.info-section {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    border-left: 5px solid #9c27b0;
}

.info-section.highlight {
    background: linear-gradient(135deg, #f3e5f5 0%, #fce4ec 100%);
    border-left-color: #ff4081;
}

.info-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 12px 0;
}

.info-section strong {
    color: #9c27b0;
    font-weight: 600;
}

.info-section a {
    color: #9c27b0;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.info-section a:hover {
    border-bottom-color: #9c27b0;
}

/* === GRID DE PASSOS (Como Comprar) === */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #9c27b0 0%, #ff4081 100%);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9c27b0 0%, #ff4081 100%);
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

.step-card h3 {
    color: #2d3748;
    margin: 0 0 12px;
}

.step-card p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.step-card a {
    color: #9c27b0;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.step-card a:hover {
    border-bottom-color: #9c27b0;
}

/* === GRID DE FORMAS DE PAGAMENTO === */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin: 40px 0;
}

.payment-card {
    background: white;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    text-align: center;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(156, 39, 176, 0.2);
    border-color: #9c27b0;
}

.payment-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.payment-card h3 {
    color: #2d3748;
    margin: 0 0 20px;
    font-size: 1.4rem;
}

.payment-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
}

.payment-card ul li {
    padding: 8px 0;
    color: #4a5568;
    font-size: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.payment-card ul li:last-child {
    border-bottom: none;
}

.payment-card ul li::before {
    content: '✓ ';
    color: #9c27b0;
    font-weight: bold;
    margin-right: 8px;
}

.payment-note {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: #2d3748;
    margin: 0;
    font-weight: 500;
}

/* === FAQ === */
.teatia-faq {
    max-width: 1000px;
}

.faq-category {
    margin-bottom: 48px;
}

.faq-category h2 {
    background: linear-gradient(135deg, #9c27b0 0%, #ff4081 100%);
    color: white;
    padding: 16px 28px;
    border-radius: 12px;
    margin: 0 0 24px;
    font-size: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #9c27b0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.15);
    transform: translateX(4px);
}

.faq-item h3 {
    color: #9c27b0;
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.faq-item a {
    color: #9c27b0;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item a:hover {
    border-bottom-color: #9c27b0;
}

/* === RESPONSIVO === */
@media (max-width: 968px) {
    .teatia-info-page {
        padding: 40px 20px;
    }

    .teatia-info-page h1 {
        margin-bottom: 32px;
    }

    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin: 32px 0;
    }

    .step-card {
        padding: 28px;
    }

    .payment-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
    }

    .payment-card {
        padding: 32px;
    }

    .info-section {
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .teatia-info-page {
        padding: 30px 16px;
    }

    .teatia-info-page h1 {
        margin-bottom: 28px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin: 28px 0;
    }

    .step-card {
        padding: 24px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 32px 0;
    }

    .payment-card {
        padding: 28px;
    }

    .payment-icon {
        font-size: 3.5rem;
    }

    .info-section {
        padding: 24px;
        margin-bottom: 24px;
    }

    .info-section p {
        font-size: 1rem;
    }

    .faq-category {
        margin-bottom: 36px;
    }

    .faq-category h2 {
        padding: 14px 24px;
        font-size: 1.3rem;
    }

    .faq-item {
        padding: 24px;
        margin-bottom: 16px;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .teatia-info-page {
        padding: 25px 12px;
    }

    .step-card,
    .payment-card,
    .info-section,
    .faq-item {
        padding: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .payment-icon {
        font-size: 3rem;
    }

    .faq-category h2 {
        padding: 12px 20px;
        font-size: 1.2rem;
    }
}
