/**
 * AZENIS TRUST CENTER - Verificación de Evaluaciones
 * VERSIÓN: 3.2 - Efectos mejorados y más visibles
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #040A14;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}

/* ============================================
   FONDO CON SOC GRID - MÁS VISIBLE
   ============================================ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(212, 175, 55, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08), transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.06), transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: bgPulse 6s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ============================================
   PARTÍCULAS - MÁS VISIBLES
   ============================================ */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: floatParticle linear infinite;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.2);
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; transform: translateY(90vh) scale(1) rotate(90deg); }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(0.5) rotate(180deg); opacity: 0; }
}

/* ============================================
   NOISE OVERLAY - MÁS VISIBLE
   ============================================ */
.noise-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    animation: noiseMove 0.5s steps(2) infinite;
}

@keyframes noiseMove {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-5%, -5%); }
    100% { transform: translate(5%, 5%); }
}

/* ============================================
   LOGOTIPO - Vertical
   ============================================ */
.brand-logo-vertical {
    display: block;
    margin: 0 auto 16px;
    max-width: 180px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 30px rgba(212, 175, 55, 0.08));
    transition: all 0.4s ease;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 4px 30px rgba(212, 175, 55, 0.08)); }
    50% { filter: drop-shadow(0 4px 50px rgba(212, 175, 55, 0.2)); }
}

.brand-logo-vertical:hover {
    filter: drop-shadow(0 4px 60px rgba(212, 175, 55, 0.3));
    transform: scale(1.02);
}

/* ============================================
   HERO SUPERIOR
   ============================================ */
.trust-hero {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 40px;
    animation: heroFadeIn 0.8s ease-out;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin: 16px auto;
    border-radius: 2px;
    animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% { opacity: 0.6; width: 80px; }
    50% { opacity: 1; width: 120px; }
}

.trust-hero h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #E5E7EB;
    letter-spacing: 2px;
}

.trust-hero p {
    color: #8CA0B5;
    font-size: 0.9rem;
    margin-top: 6px;
    font-weight: 300;
}

/* ============================================
   WRAPPER PRINCIPAL
   ============================================ */
.verify-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 680px;
}

/* ============================================
   CARD PREMIUM - EFECTOS MEJORADOS
   ============================================ */
.verify-card {
    width: 100%;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    padding: 48px 44px;
    text-align: center;
    box-shadow: 
        0 30px 80px -20px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.04),
        inset 0 1px 0 rgba(212, 175, 55, 0.04);
    animation: cardSlideIn 0.6s ease-out;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.verify-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 30px 80px -20px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(212, 175, 55, 0.05),
        0 0 0 1px rgba(212, 175, 55, 0.08);
}

/* Borde animado (glow dorado) - MÁS VISIBLE */
.verify-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(
        45deg,
        transparent 25%,
        rgba(212, 175, 55, 0.15) 50%,
        transparent 75%
    );
    background-size: 300% 300%;
    animation: borderGlow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; opacity: 0.3; }
    50% { background-position: 100% 50%; opacity: 1; }
    100% { background-position: 0% 50%; opacity: 0.3; }
}

/* Shine diagonal al cargar - MÁS VISIBLE */
.verify-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.08),
        transparent
    );
    animation: cardShine 2s ease-out 0.5s forwards;
    pointer-events: none;
}

@keyframes cardShine {
    0% { left: -100%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 200%; opacity: 0; }
}

@keyframes cardSlideIn {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.verify-card-wide { max-width: 680px; }

/* ============================================
   SELLO INSTITUCIONAL - EFECTOS MEJORADOS
   ============================================ */
.institutional-seal {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    animation: sealAppear 0.8s ease-out 0.3s both;
}

@keyframes sealAppear {
    0% { opacity: 0; transform: scale(0.6) rotate(-15deg); }
    60% { transform: scale(1.1) rotate(2deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.seal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 0;
    animation: sealFloat 3s ease-in-out infinite;
}

@keyframes sealFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.seal-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 4px 30px rgba(212, 175, 55, 0.15));
    transition: all 0.4s ease;
}

.seal-icon img:hover {
    filter: drop-shadow(0 4px 50px rgba(212, 175, 55, 0.35));
    transform: scale(1.08) rotate(5deg);
}

.seal-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4AF37;
    font-weight: 600;
    animation: sealTextPulse 2s ease-in-out infinite;
}

@keyframes sealTextPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; text-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
}

/* ============================================
   ENCABEZADOS
   ============================================ */
.verify-card h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: #E5E7EB;
    animation: titleFadeIn 0.8s ease-out 0.2s both;
}

@keyframes titleFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.verify-card h1 .highlight {
    color: #D4AF37;
    position: relative;
    display: inline-block;
}

/* Eliminado subrayado del highlight */

.verify-subtitle {
    color: #8CA0B5;
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.6;
    font-weight: 300;
    animation: subtitleFadeIn 0.8s ease-out 0.4s both;
}

@keyframes subtitleFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   ESTADOS DE VALIDACIÓN - MÁS VISIBLES
   ============================================ */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.status-valid {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.05);
    animation: validGlow 2s ease-in-out infinite;
}

@keyframes validGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.05); }
    50% { box-shadow: 0 0 50px rgba(16, 185, 129, 0.15); }
}

.status-expired {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.05);
    animation: expiredGlow 2s ease-in-out infinite;
}

@keyframes expiredGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(245, 158, 11, 0.05); }
    50% { box-shadow: 0 0 50px rgba(245, 158, 11, 0.15); }
}

.status-invalid {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.05);
    animation: invalidGlow 2s ease-in-out infinite;
}

@keyframes invalidGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(239, 68, 68, 0.05); }
    50% { box-shadow: 0 0 50px rgba(239, 68, 68, 0.15); }
}

.status-badge i {
    font-size: 1rem;
    animation: iconSpin 4s linear infinite;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   FORMULARIO
   ============================================ */
.verify-card input {
    width: 100%;
    padding: 18px 20px;
    background: rgba(3, 8, 20, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 2px;
    color: #E5E7EB;
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

.verify-card input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.08), inset 0 0 30px rgba(212, 175, 55, 0.02);
    background: rgba(3, 8, 20, 0.9);
    transform: scale(1.01);
}

.verify-card input::placeholder {
    color: #4A5A6E;
    letter-spacing: normal;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.input-hint {
    font-size: 0.7rem;
    color: #4A5A6E;
    margin-top: -10px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

/* ============================================
   BOTONES PREMIUM - EFECTOS MEJORADOS
   ============================================ */
.btn-verify {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #D4AF37, #C5A030);
    border: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #040A14;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: btnAppear 0.6s ease-out 0.6s both;
}

@keyframes btnAppear {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.btn-verify:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35);
}

.btn-verify:active {
    transform: translateY(0) scale(0.98);
}

.btn-verify::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 35%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 65%
    );
    animation: btnShine 2s ease-in-out infinite;
}

@keyframes btnShine {
    0% { transform: translateX(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) rotate(45deg); opacity: 0; }
}

.btn-back {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    color: #D4AF37;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.4s ease;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.btn-back i {
    font-size: 0.9rem;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.btn-back:hover i {
    transform: translateX(-4px);
}

.btn-back:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.btn-back::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.05),
        transparent
    );
    transition: all 0.6s ease;
}

.btn-back:hover::after {
    left: 200%;
}

.btn-back-gold {
    border-color: #D4AF37;
    color: #D4AF37;
}

.btn-back-gold:hover {
    background: rgba(212, 175, 55, 0.12);
}

/* ============================================
   INFO TABLE
   ============================================ */
.info-table {
    width: 100%;
    text-align: left;
    background: rgba(3, 8, 20, 0.5);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.04);
    animation: tableFadeIn 0.6s ease-out 0.2s both;
}

@keyframes tableFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.04);
    animation: rowFadeIn 0.5s ease-out both;
}

.info-row:nth-child(1) { animation-delay: 0.1s; }
.info-row:nth-child(2) { animation-delay: 0.2s; }
.info-row:nth-child(3) { animation-delay: 0.3s; }
.info-row:nth-child(4) { animation-delay: 0.4s; }
.info-row:nth-child(5) { animation-delay: 0.5s; }
.info-row:nth-child(6) { animation-delay: 0.6s; }
.info-row:nth-child(7) { animation-delay: 0.7s; }
.info-row:nth-child(8) { animation-delay: 0.8s; }

@keyframes rowFadeIn {
    from { opacity: 0; transform: translateX(-15px); }
    to { opacity: 1; transform: translateX(0); }
}

.info-row:hover {
    background: rgba(212, 175, 55, 0.02);
    border-radius: 4px;
    padding-left: 8px;
    padding-right: 8px;
    transition: all 0.3s ease;
}

.info-row:last-child { border-bottom: none; }

.info-row-col {
    flex-direction: column;
    align-items: flex-start;
}

.info-label {
    font-size: 0.7rem;
    color: #8CA0B5;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.info-label-mb { margin-bottom: 10px; }

.info-value {
    font-size: 0.95rem;
    color: #E5E7EB;
    font-weight: 500;
    text-align: right;
}

.info-mono {
    font-family: 'Courier New', monospace;
    color: #D4AF37;
    letter-spacing: 0.5px;
}

/* ============================================
   AEGIS SCORE™
   ============================================ */
.score-premium {
    display: flex;
    align-items: center;
    gap: 16px;
}

.score-gauge {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    animation: gaugeAppear 1s ease-out 0.3s both;
}

@keyframes gaugeAppear {
    from { opacity: 0; transform: scale(0.5) rotate(-180deg); }
    to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.score-gauge svg {
    transform: rotate(-90deg);
}

.score-gauge .bg {
    fill: none;
    stroke: rgba(212, 175, 55, 0.08);
    stroke-width: 4;
}

.score-gauge .progress {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease-out;
    filter: drop-shadow(0 0 8px currentColor);
}

.score-gauge .center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: 800;
    color: #E5E7EB;
    animation: scoreCount 1.5s ease-out 0.5s both;
}

@keyframes scoreCount {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.score-meta {
    text-align: left;
}

.score-meta .label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8CA0B5;
    font-weight: 600;
}

.score-meta .level {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ============================================
   BLOQUE DE AUTENTICIDAD
   ============================================ */
.authenticity-block {
    background: rgba(3, 8, 20, 0.4);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.04);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    animation: authBlockFade 0.6s ease-out 0.4s both;
}

@keyframes authBlockFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: authItemFade 0.4s ease-out both;
}

.auth-item:nth-child(1) { animation-delay: 0.5s; }
.auth-item:nth-child(2) { animation-delay: 0.6s; }
.auth-item:nth-child(3) { animation-delay: 0.7s; }
.auth-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes authItemFade {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.auth-item .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8CA0B5;
    font-weight: 600;
}

.auth-item .value {
    font-size: 0.85rem;
    color: #E5E7EB;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    font-weight: 500;
}

.auth-item .value.valid {
    color: #10b981;
    font-weight: 600;
    animation: validPulse 2s ease-in-out infinite;
}

@keyframes validPulse {
    0%, 100% { text-shadow: 0 0 0 rgba(16, 185, 129, 0); }
    50% { text-shadow: 0 0 20px rgba(16, 185, 129, 0.2); }
}

.auth-item .value i {
    font-size: 0.8rem;
    margin-right: 6px;
}

/* ============================================
   DOMINIOS
   ============================================ */
.domain-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 8px;
    width: 100%;
}

.domain-item {
    text-align: center;
    padding: 10px 6px;
    background: rgba(3, 8, 20, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.04);
    transition: all 0.3s ease;
    animation: domainFade 0.4s ease-out both;
}

.domain-item:nth-child(1) { animation-delay: 0.6s; }
.domain-item:nth-child(2) { animation-delay: 0.7s; }
.domain-item:nth-child(3) { animation-delay: 0.8s; }

@keyframes domainFade {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.domain-item:hover {
    background: rgba(3, 8, 20, 0.7);
    border-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.domain-name {
    font-size: 0.6rem;
    color: #8CA0B5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.domain-score {
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 2px;
}

/* ============================================
   DISCLAIMER
   ============================================ */
.disclaimer {
    font-size: 0.75rem;
    color: #8CA0B5;
    margin-top: 16px;
    font-style: italic;
    line-height: 1.8;
    padding: 14px 20px;
    background: rgba(3, 8, 20, 0.3);
    border-radius: 8px;
    border-left: 3px solid rgba(212, 175, 55, 0.15);
    text-align: left;
    animation: disclaimerFade 0.6s ease-out 0.6s both;
}

@keyframes disclaimerFade {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.disclaimer i {
    margin-right: 8px;
    color: #D4AF37;
    font-size: 0.9rem;
    animation: infoIconPulse 2s ease-in-out infinite;
}

@keyframes infoIconPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ============================================
   FOOTER CORPORATIVO
   ============================================ */
.verify-footer {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.06);
    text-align: center;
    animation: footerFade 0.6s ease-out 0.8s both;
}

@keyframes footerFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.verify-footer .frameworks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    margin-bottom: 16px;
}

.verify-footer .frameworks span {
    font-size: 0.7rem;
    color: #6A8A9E;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.verify-footer .frameworks span:hover {
    color: #D4AF37;
    transform: translateY(-1px);
}

.verify-footer .frameworks span::before {
    content: '◆ ';
    color: rgba(212, 175, 55, 0.25);
    font-size: 0.5rem;
    transition: color 0.3s ease;
}

.verify-footer .frameworks span:hover::before {
    color: rgba(212, 175, 55, 0.5);
}

/* Eliminado subrayado de frameworks span */

.verify-footer p {
    color: #6A8A9E;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.verify-footer p:last-of-type {
    font-size: 0.65rem;
    color: #4A6A7E;
    margin-top: 4px;
}

.verify-footer a {
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
}

/* Eliminado subrayado de enlaces del footer */

.verify-footer a:hover {
    color: #F5E56B;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 640px) {
    .verify-card {
        padding: 32px 20px;
        border-radius: 16px;
    }
    
    .brand-logo-vertical {
        max-width: 140px;
    }
    
    .domain-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .authenticity-block {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px;
    }
    
    .verify-footer .frameworks {
        gap: 10px 16px;
    }
    
    .info-table {
        padding: 16px;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 12px 0;
    }
    
    .info-value {
        text-align: left;
    }
    
    .score-premium {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .score-gauge {
        width: 60px;
        height: 60px;
    }
    
    .score-gauge .center {
        font-size: 1.1rem;
    }
    
    .seal-icon img {
        width: 52px;
        height: 52px;
    }
    
    .verify-card h1 {
        font-size: 1.4rem;
    }
}

@media (max-width: 400px) {
    .verify-card {
        padding: 24px 16px;
    }
    
    .brand-logo-vertical {
        max-width: 110px;
    }
    
    .trust-hero h2 {
        font-size: 1rem;
    }
    
    .domain-list {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    
    .status-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
    
    .btn-back {
        padding: 12px 24px;
        font-size: 0.7rem;
    }
}