/* === CSS EXCLUSIVO DA SEÇÃO LIGAÇÕES === */

/* Container padrão */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Seção principal de ligações */
.ligacoes-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    color: #334155;
}

/* Container principal */
.ligacoes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10; /* Aumentado para ficar bem acima das ondas */
}

/* Ondas sonoras de fundo */
.sound-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none; /* Permite cliques através das ondas */
}

.wave {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(220, 38, 38, 0.1);
    animation: sound-wave 3s infinite ease-in-out;
}

.wave-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.wave-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.wave-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 60%;
    animation-delay: 2s;
}

.wave-4 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 40%;
    animation-delay: 0.5s;
}

@keyframes sound-wave {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.1;
    }
}

/* Header da seção */
.ligacoes-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ligacoes-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-purple {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Simulador de telefone */
.phone-simulator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    justify-content: center;
    margin: 4rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.phone-interface {
    background: linear-gradient(145deg, #1e293b, #334155);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: white;
    height: 600px; /* Altura fixa para igualar com CRM */
    display: flex;
    flex-direction: column;
}

.phone-header {
    text-align: center;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.call-status {
    text-align: center;
    margin-bottom: 2rem;
}

.calling-animation {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.delay-1 {
    animation-delay: 0.5s;
    width: 80px;
    height: 80px;
    border-width: 2px;
}

.delay-2 {
    animation-delay: 1s;
    width: 100px;
    height: 100px;
    border-width: 1px;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.caller-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.call-type {
    color: #22c55e;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.phone-number {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.call-timer {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fbbf24;
}

/* Botões de ação */
.call-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.decline-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.accept-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.action-btn:hover {
    transform: scale(1.1);
}

/* Botões de simulação */
.call-simulation-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: auto;
    padding-top: 2rem;
}

.sim-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.speaker-btn {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
}

.speaker-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
}

.end-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.end-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
}

/* Controles da chamada */
.call-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.end-call {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Transcrição */
.transcript-section {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

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

.transcript-messages {
    max-height: 300px;
    overflow-y: auto;
}

.message {
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.message.ai {
    text-align: left;
}

.message.user {
    text-align: right;
}

.message-bubble {
    display: inline-block;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    max-width: 80%;
    font-size: 0.875rem;
    line-height: 1.4;
}

.message.ai .message-bubble {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    border-bottom-left-radius: 0.25rem;
}

.message.user .message-bubble {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    border-bottom-right-radius: 0.25rem;
}

.timestamp {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Features grid */
.ligacoes-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* Stats section */
.ligacoes-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dc2626;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
}

/* Comparativo de Produtividade */
.productivity-comparison {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    border-radius: 1rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

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

.productivity-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.productivity-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.productivity-card.human {
    border-top: 4px solid #ef4444;
}

.productivity-card.ai {
    border-top: 4px solid #22c55e;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(34, 197, 94, 0.02));
}

.productivity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.productivity-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.productivity-stats {
    text-align: left;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.stat-metric {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.stat-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

.productivity-total {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 0.5rem;
    text-align: center;
}

.productivity-total.highlight {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.productivity-vs {
    font-size: 3rem;
    color: #dc2626;
    text-align: center;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productivity-conclusion {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.productivity-conclusion p {
    font-size: 1.125rem;
    color: #1e293b;
    line-height: 1.6;
}

.highlight-number {
    color: #dc2626;
    font-weight: 900;
    font-size: 1.2em;
}

/* Responsividade */
@media (max-width: 768px) {
    .ligacoes-title {
        font-size: 2rem;
    }
    
    .ligacoes-subtitle {
        font-size: 1rem;
    }
    
    .phone-simulator {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .phone-interface {
        height: auto;
        min-height: 500px;
    }
    
    .ligacoes-crm-sim {
        height: auto;
        min-height: 400px;
    }
    
    .ligacoes-features {
        grid-template-columns: 1fr;
    }
    
    .call-actions {
        gap: 1rem;
    }
    
    /* Correção das setas do processo para mobile */
    .process-steps {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    /* Correção da productivity grid para mobile */
    .productivity-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .productivity-vs {
        order: 2;
        font-size: 2rem;
        padding: 1rem 0;
    }
    
    .productivity-card.ai {
        order: 3;
    }
    
    /* Correção da comparison grid para mobile */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vs-divider {
        order: 2;
        font-size: 1.5rem;
        padding: 1rem 0;
    }
    
    .comparison-column.cinndi {
        order: 3;
    }
    
    .action-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* === RESPONSIVIDADE MOBILE === */

/* Ajustes para tablets e móveis */
@media (max-width: 768px) {
    
    /* Comparison Section - Mobile */
    .comparison-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .comparison-column {
        padding: 1.5rem !important;
        margin-bottom: 1rem;
    }
    
    .vs-divider {
        order: 2;
        font-size: 1.5rem !important;
        margin: 1rem 0 !important;
        padding: 0.5rem 0;
        background: rgba(220, 38, 38, 0.1);
        border-radius: 0.5rem;
    }
    
    .traditional {
        order: 1;
    }
    
    .cinndi {
        order: 3;
    }
    
    .comparison-title {
        font-size: 1.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .comparison-column h4 {
        font-size: 1.1rem !important;
    }
    
    .comparison-column li {
        font-size: 0.8rem !important;
        padding: 0.4rem 0 !important;
    }
    
    .comparison-note {
        margin-top: 1rem !important;
    }
    
    .comparison-note small {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
    }
}

/* Ajustes para celulares pequenos */
@media (max-width: 640px) {
    
    .comparison-section {
        margin: 2rem 0 !important;
        padding: 2rem 1rem !important;
    }
    
    .comparison-title {
        font-size: 1.3rem !important;
        margin-bottom: 1.5rem !important;
        padding: 0 0.5rem;
    }
    
    .comparison-column {
        padding: 1rem !important;
    }
    
    .comparison-column h4 {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .comparison-column li {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
    }
    
    .vs-divider {
        font-size: 1.2rem !important;
        margin: 0.5rem 0 !important;
    }
    
    /* Correções específicas para process-steps em telas pequenas */
    .process-step {
        min-width: 150px;
        margin-bottom: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    /* Correções para productivity cards */
    .productivity-card {
        padding: 1.5rem;
    }
    
    .productivity-card h4 {
        font-size: 1.1rem;
    }
    
    .stat-row {
        margin-bottom: 0.5rem;
    }
    
    .stat-metric,
    .stat-value {
        font-size: 0.8rem;
    }
}

/* Features específicas */
.feature-stats {
    margin-top: 1rem;
}

.stat {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Stats grid e título */
.stats-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

/* Processo de ligação */
.call-process {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

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

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

.process-arrow {
    font-size: 2rem;
    color: #dc2626;
    font-weight: bold;
}

/* Seção de comparação */
.comparison-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

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

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
}

.comparison-column {
    padding: 2rem;
    border-radius: 1rem;
}

.traditional {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.cinndi {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.comparison-column h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-column ul {
    list-style: none;
    padding: 0;
}

.comparison-column li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.5;
}

.vs-divider {
    font-size: 2rem;
    font-weight: 900;
    color: #dc2626;
    text-align: center;
    align-self: center;
}

/* CTA Final */
.ligacoes-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-radius: 1rem;
    color: white;
    position: relative;
    z-index: 1000;
    pointer-events: auto;
    user-select: auto;
}

.cta-content {
    position: relative;
    z-index: 1001;
    pointer-events: auto;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    pointer-events: auto;
    user-select: text;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    pointer-events: auto;
    user-select: text;
}

.cta-button {
    background: linear-gradient(135deg, #ffffff, #f8fafc) !important;
    color: #dc2626 !important;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
    text-decoration: none !important;
    display: inline-block !important;
    user-select: none;
    touch-action: manipulation;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #dc2626 !important;
    text-decoration: none !important;
    pointer-events: auto !important;
}

.cta-button:active {
    transform: translateY(0px);
    pointer-events: auto !important;
}

.cta-button:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    pointer-events: auto !important;
}

/* CRM simulado da seção ligações */
.ligacoes-crm-sim {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 600px; /* Mesma altura do phone-interface */
    display: flex;
    flex-direction: column;
}

.crm-sim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.crm-sim-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: #1e293b;
}

.crm-status {
    font-size: 0.875rem;
    color: #22c55e;
    font-weight: 600;
}

.crm-sim-pipeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.crm-sim-stage {
    background: rgba(248, 250, 252, 0.8);
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    min-height: 300px;
}

.stage-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #64748b;
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
    text-transform: uppercase;
}

.stage-cards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sim-card {
    background: white;
    border-radius: 0.375rem;
    padding: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 3px solid;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sim-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.sim-card.leads {
    border-left-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
}

.sim-card.ligacao {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    animation: pulse-call 2s infinite;
}

.sim-card.perdido {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
}

.sim-card.ganho {
    border-left-color: #22c55e;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
}

@keyframes pulse-call {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.card-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.card-phone {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.card-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e;
}

/* Destaque para CINNDI IA */
.highlight-cinndi {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 1.1em;
}

.comparison-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    text-align: center;
}

.comparison-note small {
    font-style: italic;
    color: #64748b;
}

/* Responsividade do CRM */
@media (max-width: 768px) {
    .phone-simulator {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .crm-sim-pipeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .crm-sim-stage {
        min-height: 200px;
        padding: 0.75rem;
    }
    
    .ligacoes-crm-sim {
        padding: 1.5rem;
        height: auto;
    }
    
    .phone-interface {
        height: auto;
        min-height: 500px;
    }
}

@media (max-width: 640px) {
    .crm-sim-pipeline {
        grid-template-columns: 1fr;
    }
    
    .crm-sim-stage {
        min-height: 150px;
    }
}

/* Correção para garantir interatividade na seção */
.ligacoes-section {
    position: relative;
    z-index: 1;
}

.ligacoes-section * {
    pointer-events: auto;
    user-select: auto;
}

.ligacoes-section .sound-waves {
    pointer-events: none;
    z-index: 1;
}

.ligacoes-section .sound-waves .wave {
    pointer-events: none;
}

/* Garantir que todos os elementos interativos sejam clicáveis */
.ligacoes-section a,
.ligacoes-section button,
.ligacoes-section input,
.ligacoes-section select,
.ligacoes-section textarea,
.ligacoes-section .cta-button {
    pointer-events: auto !important;
    user-select: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 1000;
}

/* Força máxima para o CTA */
.ligacoes-cta,
.ligacoes-cta * {
    pointer-events: auto !important;
    user-select: auto !important;
}

.ligacoes-cta .cta-button {
    z-index: 99999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* === FORÇAR INTERATIVIDADE DO CTA === */
/* CSS adicional para garantir que o botão CTA seja sempre clicável */
.cta-button {
    /* Forçar propriedades de clique */
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 999999 !important;
    
    /* Garantir que não há elementos invisíveis bloqueando */
    isolation: isolate !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
    
    /* Para dispositivos touch */
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
    
    /* Remover qualquer interferência de seleção */
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    
    /* Garantir que o elemento seja tratado como link */
    text-decoration: none !important;
    color: #dc2626 !important;
    
    /* Forçar dimensões mínimas para clique fácil */
    min-width: 250px !important;
    min-height: 50px !important;
    
    /* Adicionar border invisível para aumentar área de clique */
    border: 10px solid transparent !important;
    margin: -10px !important;
    
    /* Background para debug (pode ser removido depois) */
    background-color: rgba(255, 255, 255, 0.95) !important;
    background-image: linear-gradient(135deg, #ffffff, #f8fafc) !important;
}

/* Estado hover mais agressivo */
.cta-button:hover,
.cta-button:focus,
.cta-button:active {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 999999 !important;
    color: #dc2626 !important;
    text-decoration: none !important;
}

/* Garantir que o container do CTA não interfira */
.ligacoes-cta {
    isolation: isolate !important;
    transform: translateZ(0) !important;
}

.cta-content {
    isolation: isolate !important;
    transform: translateZ(0) !important;
}

/* Garantir que nenhum pseudo-elemento interfira */
.cta-button::before,
.cta-button::after {
    display: none !important;
}

/* Reset de qualquer transform que possa interferir */
.ligacoes-section {
    transform: none !important;
}

.ligacoes-container {
    transform: none !important;
}

/* Forçar que os elementos da seção não capturem eventos quando desnecessário */
.phone-simulator,
.phone-interface,
.crm-sim,
.ligacoes-crm-sim {
    pointer-events: auto;
}

.phone-simulator > *:not(.cta-button),
.phone-interface > *:not(.cta-button),
.crm-sim > *:not(.cta-button),
.ligacoes-crm-sim > *:not(.cta-button) {
    pointer-events: auto;
    z-index: 1;
}

/* Debug: tornar visível qualquer elemento que possa estar bloqueando */
/*
.ligacoes-section::before,
.ligacoes-section::after,
.ligacoes-container::before,
.ligacoes-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 0, 0, 0.1);
    pointer-events: none;
    z-index: 10000;
}
*/

/* === DEBUG E FALLBACK PARA BOTÃO CTA === */
/* Adicionar um indicador visual para confirmar que o botão está ativo */
.cta-button {
    /* Adicionar uma sombra diferenciada quando ativo */
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3), 0 0 0 2px rgba(220, 38, 38, 0.1) !important;
}

.cta-button:hover {
    /* Sombra mais intensa no hover */
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4), 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
    transform: translateY(-3px) !important;
}

.cta-button:active {
    /* Feedback visual no clique */
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.5), 0 0 0 2px rgba(220, 38, 38, 0.3) !important;
}

/* Garantir que não há nenhum overlay invisível */
.ligacoes-section::after {
    content: none !important;
    display: none !important;
}

/* Fallback: se algo estiver bloqueando, criar uma zona de clique expandida */
.cta-button::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    z-index: 1;
    cursor: pointer;
    background: transparent;
    pointer-events: auto;
}

/* Garantir que o texto do botão fique sobre a zona de clique */
.cta-button {
    position: relative;
    z-index: 2;
}
