/* CSS para ViK CTA Simples - Angie Snippets */

.vik-cta-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease, padding 0.3s ease, border-radius 0.3s ease;
}

/* Modo Full Width: Expansão com calculo vw */
.vik-cta-wrapper.vik-cta-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Elementos Decorativos */
.vik-cta-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.vik-cta-decorations .decor-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    background: #FFFFFF;
}

.vik-cta-decorations .decor-circle.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
}

.vik-cta-decorations .decor-circle.circle-2 {
    width: 250px;
    height: 250px;
    bottom: -100px;
    right: -100px;
}

.vik-cta-decorations .decor-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 70%);
    filter: blur(40px);
    pointer-events: none;
}

.vik-cta-decorations .decor-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

/* Conteúdo Interno */
.vik-cta-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Badge */
.vik-cta-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.vik-cta-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 11px;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

/* Título */
.vik-cta-title {
    margin: 0 0 16px 0;
    line-height: 1.15;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

/* Descrição */
.vik-cta-desc {
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    font-size: 16px;
}

/* Botões */
.vik-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    width: 100%;
}

.vik-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    border: 2px solid transparent;
}

.vik-cta-btn .btn-icon {
    display: inline-flex;
    align-items: center;
}

.vik-cta-btn .btn-icon svg {
    width: 16px;
    height: 16px;
    transition: fill 0.25s ease, color 0.25s ease;
}

.vik-cta-btn .btn-icon.align-left {
    margin-right: 8px;
}

.vik-cta-btn .btn-icon.align-right {
    margin-left: 8px;
}

/* Botões - Primário */
.vik-cta-btn.primary {
    /* Custom controls map here */
}

/* Botões - Secundário */
.vik-cta-btn.secondary {
    /* Custom controls map here */
}

/* Responsividade */
@media (max-width: 1024px) {
    .vik-cta-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .vik-cta-wrapper {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    
    .vik-cta-wrapper.vik-cta-fullwidth {
        width: 100vw;
        margin-left: -24px;
        margin-right: -24px;
        left: 0;
        right: 0;
    }

    .vik-cta-title {
        font-size: 32px;
    }

    .vik-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .vik-cta-btn {
        width: 100%;
    }
}
