/* =============================================
   GARANTIA BLINDADA - ULTRA PREMIUM STYLING
   Com estilo dos PLANOS
   ============================================= */

.guarantee-section-premium {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.guarantee-card-premium {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 80px;
    background: linear-gradient(145deg, #0a0a0a, #2a0505) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.8) !important;
    border-radius: 24px;
    padding: 80px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

/* Borda Energizada Estática */
.guarantee-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
    opacity: 0;
}

/* Luz de LED no fundo */
.guarantee-card-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.3) 0%, transparent 70%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    pointer-events: none;
}

.guarantee-card-premium:hover::after {
    opacity: 1;
}

.guarantee-card-premium:hover {
    border-color: #ff0000 !important;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6), 0 0 50px rgba(255, 0, 0, 0.3), inset 0 0 20px rgba(255, 0, 0, 0.1);
    transform: translateY(-10px);
}

.guarantee-content-premium {
    z-index: 2;
    position: relative;
}

.guarantee-title-premium {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #fff;
    background: linear-gradient(to right, #fff, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guarantee-title-premium .highlight {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

.guarantee-subtitle-premium {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.6;
}

.guarantee-features-premium {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item-premium {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 10px;
    transition: all 0.3s;
}

.feature-item-premium:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: translateX(10px);
}

.icon-premium {
    font-size: 2rem;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item-premium h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.feature-item-premium p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-premium-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #cc0000, #ff0000) !important;
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-premium-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
}

.btn-premium-cta i {
    font-size: 1rem;
}

/* ========================================
   SELO DE GARANTIA - IMAGEM PREMIUM
   ======================================== */

.guarantee-seal-premium {
    width: 420px;
    height: 420px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
}

.seal-inner {
    width: 100%;
    height: 100%;
    background-image: url('../assets/guarantee_seal.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: sealHover 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.4));
}

@keyframes sealHover {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.seal-glow {
    display: none;
}

/* Responsividade */
@media (max-width: 1200px) {
    .guarantee-card-premium {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        gap: 50px;
    }
    
    .guarantee-seal-premium {
        order: -1;
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .guarantee-card-premium {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .guarantee-title-premium {
        font-size: 2.2rem;
    }
    
    .guarantee-seal-premium {
        width: 300px;
        height: 300px;
    }
    
    .guarantee-subtitle-premium {
        font-size: 1rem;
    }
    
    .feature-item-premium {
        padding: 15px;
    }
    
    .feature-item-premium h3 {
        font-size: 1.1rem;
    }
    
    .feature-item-premium p {
        font-size: 0.9rem;
    }
    
    .btn-premium-cta {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}
