/**
 * Seção Calling WhatsApp - CINNDI
 * Ligações do WhatsApp direto na plataforma
 */

.calling {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.calling-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.calling-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Badge */
.calling-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    color: #3b82f6;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calling-badge svg {
    width: 16px;
    height: 16px;
}

/* Título */
.calling-titulo {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.calling-titulo span {
    color: #3b82f6;
}

/* Descrição */
.calling-descricao {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Lista de vantagens */
.calling-vantagens {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calling-vantagem {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.calling-vantagem-icone {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.calling-vantagem-icone svg {
    width: 18px;
    height: 18px;
    color: #16a34a;
}

.calling-vantagem strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.calling-vantagem span {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

/* Botão CTA */
.calling-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    background: #25d366;
    color: white;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.calling-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Visual / Imagem */
.calling-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calling-imagem-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.15);
    border: 2px solid #e2e8f0;
}

.calling-imagem {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
}

/* Card flutuante */
.calling-destaque-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    animation: calling-float 3s ease-in-out infinite;
}

.calling-destaque-icone {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calling-destaque-icone svg {
    width: 22px;
    height: 22px;
    color: #3b82f6;
}

.calling-destaque-card strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
}

.calling-destaque-card span {
    font-size: 0.8rem;
    color: #64748b;
}

/* Animação flutuante */
@keyframes calling-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* ======================== */
/* RESPONSIVO               */
/* ======================== */

@media (max-width: 968px) {
    .calling {
        padding: 80px 0;
    }

    .calling-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .calling-conteudo {
        order: 2;
        text-align: center;
    }

    .calling-visual {
        order: 1;
    }

    .calling-vantagens {
        text-align: left;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 36px;
    }

    .calling-imagem {
        max-width: 420px;
    }

    .calling-destaque-card {
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }

    @keyframes calling-float {
        0%, 100% { transform: translateX(-50%) translateY(0px); }
        50% { transform: translateX(-50%) translateY(-8px); }
    }

    .calling-btn {
        width: 100%;
        justify-content: center;
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .calling {
        padding: 60px 0;
    }

    .calling-grid {
        gap: 30px;
    }

    .calling-imagem-wrapper {
        border-radius: 16px;
    }

    .calling-imagem {
        max-width: 100%;
    }

    .calling-vantagem {
        gap: 12px;
    }

    .calling-vantagem-icone {
        width: 32px;
        height: 32px;
        min-width: 32px;
        border-radius: 8px;
    }

    .calling-vantagem-icone svg {
        width: 16px;
        height: 16px;
    }

    .calling-destaque-card {
        display: none;
    }
}
