/* Seção de Chamada para Ação */
.cta-section {
    background-color: #282831; /* Fundo escuro igual às outras seções */
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    text-align: center;
}

/* Cabeçalho da seção */
.cta-header {
    margin-bottom: 60px;
}

.cta-title {
    color: #9b59b6; /* Roxo igual aos outros títulos */
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 30px 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.cta-subtitle {
    color: #ffffff; /* Texto branco */
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Container dos botões */
.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Estilos base dos botões */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    min-width: 250px;
    justify-content: center;
}

/* Ícones dos botões */
.cta-btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Texto dos botões */
.cta-btn-text {
    font-size: 16px;
    font-weight: 600;
}

/* Botão WhatsApp (Verde) */
.cta-btn-whatsapp {
    background-color: #25d366; /* Verde do WhatsApp */
    color: #333;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-btn-whatsapp:hover {
    background-color: #20b954;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #333;
}

.cta-btn-whatsapp:active {
    transform: translateY(-1px);
}

/* Botão Contato (Rosa Vazado) */
.cta-btn-contact {
    background-color: transparent;
    color: #FF79C6; /* Rosa */
    border: 2px solid #FF79C6;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

.cta-btn-contact:hover {
    background-color: #FF79C6;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.cta-btn-contact:active {
    transform: translateY(-1px);
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-header {
    animation: fadeInUp 0.8s ease-out;
}

.cta-buttons {
    animation: fadeInScale 0.8s ease-out 0.3s both;
}

.cta-btn:nth-child(1) {
    animation-delay: 0.5s;
}

.cta-btn:nth-child(2) {
    animation-delay: 0.7s;
}

/* Responsividade */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
        min-height: 70vh;
    }
    
    .cta-container {
        padding: 0 15px;
    }
    
    .cta-header {
        margin-bottom: 50px;
    }
    
    .cta-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .cta-subtitle {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .cta-subtitle br {
        display: none; /* Remove quebras de linha no mobile */
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .cta-btn {
        min-width: auto;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        padding: 16px 24px;
    }
    
    .cta-btn-text {
        font-size: 15px;
    }
    
    .cta-btn-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-btn {
        padding: 14px 20px;
        gap: 10px;
    }
    
    .cta-btn-text {
        font-size: 14px;
    }
    
    .cta-btn-icon {
        width: 18px;
        height: 18px;
    }
}

/* Estados de foco para acessibilidade */
.cta-btn:focus {
    outline: 3px solid rgba(155, 89, 182, 0.5);
    outline-offset: 2px;
}

/* Efeitos adicionais */
.cta-btn {
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

