/**
 * ========================================
 * TRUST BADGES & SECURITY SIGNALS - YEONSKIN
 * ========================================
 * Diseño premium con tipografía elegante y clara
 * Paleta: Morado Loto, Turquesa Agua, Rosa Nude
 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Cormorant+Garamond:wght@400;600;700&display=swap');

/* ======================================
   CONTENEDOR PRINCIPAL DE BADGES
   ====================================== */
.trust-badges-container {
    background: linear-gradient(135deg, rgba(156, 125, 192, 0.04) 0%, rgba(126, 208, 198, 0.04) 100%);
    border: 2px solid rgba(156, 125, 192, 0.2);
    border-radius: 16px;
    padding: 28px 24px;
    margin: 25px 0;
    box-shadow: 0 4px 16px rgba(156, 125, 192, 0.08);
    font-family: 'Cormorant Garamond', serif;
}

.trust-badges-container.compact {
    padding: 20px 18px;
    margin: 20px 0;
}

.trust-badges-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #9C7DC0;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ======================================
   GRID DE BADGES
   ====================================== */
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.trust-badges-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.trust-badges-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.trust-badges-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
}

/* ======================================
   BADGE INDIVIDUAL
   ====================================== */
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 14px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(156, 125, 192, 0.15);
    min-height: 105px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(156, 125, 192, 0.2);
    border-color: #9C7DC0;
    background: linear-gradient(135deg, #ffffff 0%, rgba(156, 125, 192, 0.03) 100%);
}

.trust-badge-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(156, 125, 192, 0.15));
}

.trust-badge-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.3px;
}

.trust-badge-subtext {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #666;
    margin-top: 4px;
    line-height: 1.3;
}

/* ======================================
   BADGES DE PASARELAS DE PAGO
   ====================================== */
.payment-methods-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 20px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(156, 125, 192, 0.02) 100%);
    border-radius: 14px;
    border: 2px solid rgba(156, 125, 192, 0.15);
    margin: 20px 0;
    flex-wrap: wrap;
    box-shadow: 0 3px 12px rgba(156, 125, 192, 0.06);
}

.payment-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid rgba(156, 125, 192, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.payment-badge-item:hover {
    background: linear-gradient(135deg, #ffffff 0%, rgba(156, 125, 192, 0.05) 100%);
    border-color: #9C7DC0;
    box-shadow: 0 4px 16px rgba(156, 125, 192, 0.15);
    transform: translateY(-2px);
}

.payment-badge-logo {
    font-size: 1.8rem;
    line-height: 1;
}

.payment-badge-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.payment-badge-secure {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #7ED0C6;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ======================================
   BADGE DESTACADO/PRINCIPAL
   ====================================== */
.trust-badge-featured {
    background: linear-gradient(135deg, #9C7DC0 0%, #7ED0C6 100%);
    color: white;
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(156, 125, 192, 0.3);
    margin: 25px 0;
    border: none;
}

.trust-badge-featured .trust-badge-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.2));
}

.trust-badge-featured .trust-badge-text {
    font-family: 'Cormorant Garamond', serif;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
}

.trust-badge-featured .trust-badge-subtext {
    font-family: 'Cormorant Garamond', serif;
    color: rgba(255,255,255,0.95);
    font-size: 1rem;
    font-weight: 400;
}

/* ======================================
   SELLO DE GARANTÍAS
   ====================================== */
.guarantee-seal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #7ED0C6 0%, #9C7DC0 100%);
    color: white;
    border-radius: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(126, 208, 198, 0.3);
    margin: 15px 0;
    letter-spacing: 0.3px;
}

.guarantee-seal-icon {
    font-size: 1.4rem;
}

/* ======================================
   BARRA DE SEGURIDAD SSL
   ====================================== */
.ssl-security-bar {
    display: flex;
    align-4px;
    padding: 18px 28px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(126, 208, 198, 0.08) 100%);
    border-left: 5px solid #7ED0C6;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 3px 12px rgba(126, 208, 198, 0.1);
}

.ssl-lock-icon {
    font-size: 2rem;
    color: #7ED0C6;
    filter: drop-shadow(0 2px 4px rgba(126, 208, 198, 0.3));
}

.ssl-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ssl-text-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #7ED0C6;
    letter-spacing: 0.3px;
}

.ssl-text-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666
    font-size: 0.75rem;
    color: #6c757d;
}

/* ======================================
   SOCIAL 6px;
    padding: 20px 28px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(217, 165, 165, 0.05) 100%);
    border: 2px solid #D9A5A5;
    border-radius: 14px;
    margin: 20px 0;
    box-shadow: 0 3px 12px rgba(217, 165, 165, 0.15);
}

.social-proof-stars {
    font-size: 1.5rem;
    color: #D9A5A5;
    letter-spacing: 3px;
}

.social-proof-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.3px;
}

.social-proof-count {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #66600;
    color: #495057;
}

.social-proof-count {
    font-size: 0.75rem;
    color: #6c757d;
}

/* ======================================
   RESPONSIVE2px;
    }
    
    .trust-badges-grid.four-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-badge {
        padding: 14px 10px;
        min-height: 95px;
    }
    
    .trust-badge-icon {
        font-size: 1.9rem;
    }
    
    .trust-badge-text {
        font-size: 0.95rem;
    }
    
    .trust-badge-subtext {
        font-size: 0.8rem;
    }
    
    .payment-methods-badges {
        gap: 12px;
        padding: 18px 16px;
    }
    
    .payment-badge-item {
        padding: 10px 16px;
    }
    
    .payment-badge-name {
        font-size: 0.95rem;
    }
    
    .trust-badge-featured {
        padding: 20px 24px;
    }
    
    .trust-badge-featured .trust-badge-text {
        font-size: 1.2rem;
    }
    
    .ssl-text-main {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trust-badges-container {
        padding: 20px 16px;
    }
    
    .trust-badges-title {
        font-size: 1rem;
    }
    
    .trust-badges-grid {
        gap: 10px;
    }
    
    .trust-badge {
        padding: 12px 8px;
        min-height: 85px;
    }
    
    .trust-badge-icon {
        font-size: 1.7rem;
    }
    
    .trust-badge-text {
        font-size: 0.9rem;
    }
    elegant {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(156, 125, 192, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 28px rgba(156, 125, 192, 0.4);
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.trust-badge-featured {
    animation: pulse-elegant 4s ease-in-out infinite;
}

.trust-badge:hover {
    animation: none;
}

/* ======================================
   UTILIDADES
   ====================================== */
.text-secure {
    color: #7ED0C6 !important;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.text-verified {
    color: #9C7DC0 !important;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.text-luxury {
    color: #D9A5A5 !important;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.icon-shield {
    color: #9C7DC0;
}

.icon-lock {
    color: #7ED0C6;
}

.icon-check {
    color: #D9A5A5
/* ======================================
   ANIMACIONES
   ====================================== */
@keyframes pulse-subtle {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.trust-badge-featured {
    animation: pulse-subtle 3s ease-in-out infinite;
}

/* ======================================
   UTILIDADES
   ====================================== */
.text-secure {
    color: #28a745 !important;
    font-weight: 600;
}

.text-verified {
    color: #007bff !important;
    font-weight: 600;
}

.icon-shield {
    color: #667eea;
}

.icon-lock {
    color: #28a745;
}

.icon-check {
    color: #20c997;
}
