.custom-cta-container {
    text-align: center;
    margin: 30px 0;
}

.custom-cta-button {
    background: var(--theme-palette-color-1);
    color: #fff !important;
    padding: 14px 24px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    max-width: 100%;
    width: 100%;
    max-width: 400px;
    line-height: 1.4;
    box-shadow: 0 0 0 rgba(0,0,0,0.2);
    animation: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
}

.custom-cta-button:hover {
    opacity: 0.95;
    transform: scale(1.02);
    color: #fff !important;
}

.custom-cta-button i {
    margin-left: 8px;
}

.cta-aux-text {
    margin-top: 8px;
    font-size: 0.9em;
    color: #666;
}

/* Animação Pulse visível */
.pulse-animation {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 153, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 153, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 153, 255, 0);
    }
}

/* Referência para ícones FontAwesome:
   https://fontawesome.com/icons
*/
