/* === CSS PLATAFORMAS DE VENDA === */

.plataformas-venda-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.plataformas-venda-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(249,115,22,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(59,130,246,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.5;
}

.plataformas-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.plataformas-title {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #374151 50%, #f97316 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.plataformas-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.plataformas-content {
    position: relative;
    z-index: 2;
}

/* Grid das plataformas */
.plataformas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.plataforma-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.plataforma-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #ea580c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.plataforma-card:hover::before {
    transform: scaleX(1);
}

.plataforma-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.plataforma-icon {
    margin-bottom: 1.5rem;
}

.plataforma-icon div {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    transition: all 0.3s ease;
}

.hotmart .icon-hotmart {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.cakto .icon-cakto {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.kiwify .icon-kiwify {
    background: linear-gradient(135deg, #10b981, #059669);
}

.plataforma-card:hover .plataforma-icon div {
    transform: scale(1.1) rotate(5deg);
}

.plataforma-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.plataforma-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.plataforma-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature {
    color: #374151;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.25rem 0;
}

/* Benefícios da integração */
.integracao-beneficios {
    margin-bottom: 4rem;
}

.beneficios-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.beneficio-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.beneficio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.beneficio-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.beneficio-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.beneficio-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Call to action */
.plataformas-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 2rem;
    backdrop-filter: blur(10px);
}

.plataformas-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.plataformas-cta p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-plataformas {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary-plataformas:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    text-decoration: none;
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .plataformas-venda-section {
        padding: 3rem 0;
    }

    .plataformas-title {
        font-size: 2rem;
    }

    .plataformas-subtitle {
        font-size: 1rem;
    }

    .plataformas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plataforma-card {
        padding: 2rem 1.5rem;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .beneficio-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .beneficios-title {
        font-size: 1.5rem;
    }

    .plataformas-cta {
        padding: 2rem 1rem;
    }

    .plataformas-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .plataforma-card {
        padding: 1.5rem 1rem;
    }

    .plataforma-icon div {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .beneficio-item {
        padding: 1rem;
    }

    .beneficio-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
