/* Link Delícia CTA - Sexy as Hell */

.ldcta-container {
    width: 100%;
    margin: 50px 0 30px 0;
    padding: 0;
    position: relative;
}

.ldcta-inner {
    position: relative;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 50%, #FF1493 100%);
    background-size: 200% 200%;
    border-radius: 20px;
    padding: 3px;
    overflow: hidden;
    animation: ldcta-gradient-shift 4s ease infinite;
}

/* Animação do gradiente de fundo */
@keyframes ldcta-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Brilho animado na borda */
.ldcta-inner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    border-radius: 20px;
    animation: ldcta-border-glow 3s linear infinite;
    z-index: -1;
}

@keyframes ldcta-border-glow {
    0% { transform: translateX(-100%) rotate(0deg); }
    100% { transform: translateX(100%) rotate(360deg); }
}

.ldcta-content {
    background: linear-gradient(135deg, #1a0a1f 0%, #2d1435 100%);
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Degradê animado INTENSO e bem visível */
.ldcta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 20, 147, 0.25) 40%,
        rgba(255, 105, 180, 0.35) 50%,
        rgba(255, 20, 147, 0.25) 60%,
        transparent 100%
    );
    animation: ldcta-shine-sweep 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes ldcta-shine-sweep {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Orbe pulsante bem visível */
.ldcta-content::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 20, 147, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    animation: ldcta-pulse-orb 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes ldcta-pulse-orb {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.7;
    }
}

.ldcta-title {
    font-size: 28px;
    font-weight: 700;
    color: #FF1493;
    margin: 0 0 15px 0;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
    animation: ldcta-pulse-glow 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes ldcta-pulse-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 20, 147, 0.5); }
    50% { text-shadow: 0 0 30px rgba(255, 20, 147, 0.8); }
}

.ldcta-text {
    font-size: 16px;
    line-height: 1.6;
    color: #E8D4F0;
    margin: 0 0 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.ldcta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
    z-index: 2;
}

/* Força branco em todos os elementos do botão */
.ldcta-button,
.ldcta-button *,
.ldcta-button span {
    color: #ffffff !important;
}

.ldcta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.ldcta-button:hover::before {
    left: 100%;
}

.ldcta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 20, 147, 0.6);
}

.ldcta-button-text {
    position: relative;
    z-index: 1;
    color: #ffffff !important;
}

.ldcta-button-icon {
    position: relative;
    z-index: 1;
    font-size: 24px;
    transition: transform 0.3s ease;
    color: #ffffff !important;
}

.ldcta-button:hover .ldcta-button-icon {
    transform: translateX(5px);
}

/* Responsivo */
@media (max-width: 768px) {
    .ldcta-content {
        padding: 30px 20px;
    }
    
    .ldcta-title {
        font-size: 22px;
    }
    
    .ldcta-text {
        font-size: 14px;
    }
    
    .ldcta-button {
        font-size: 16px;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .ldcta-title {
        font-size: 20px;
    }
    
    .ldcta-text {
        font-size: 13px;
    }
    
    .ldcta-button {
        font-size: 15px;
        padding: 14px 25px;
    }
}
