/* ZEMINIFYSHARE - ESTILOS */
/* Design minimalista e moderno para página de compartilhamento */

.share-page {
    padding: 0;
    background: transparent;
}

.share-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* TÍTULO E SUBTÍTULO */

.share-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
}

.share-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0 0 48px 0;
    line-height: 1.5;
    text-align: center;
}

/* VÍDEO */

.video-container {
    width: 100%;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.share-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* IFRAME DO YOUTUBE (embed) */
.share-video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}

/* DESCRIÇÃO */

.share-description {
    background: #000000;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.description-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 32px 0;
}

/* CAMPOS DE DESTAQUE */

.highlight-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(15, 15, 15, 0.8);
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    max-width: 100%;
    max-height: none;
}

.field-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.field-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.field-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

/* BOTÃO DE COPIAR */

.copy-btn {
    flex-shrink: 0;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    padding: 4px;
}

.copy-btn svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-secondary);
    opacity: 0.6;
}

.copy-btn:hover {
    background: transparent;
    border: none;
}

.copy-btn:hover svg {
    opacity: 1;
    stroke: var(--text-primary);
}

.copy-btn.copied {
    background: transparent;
    border: none;
}

.copy-btn.copied svg {
    stroke: #2ed573;
    opacity: 1;
}

/* RESPONSIVIDADE - TABLET */

@media (max-width: 1024px) {
    .share-content {
        padding: 48px 32px;
    }
    
    .share-title {
        font-size: 36px;
    }
    
    .share-subtitle {
        font-size: 17px;
        margin-bottom: 40px;
    }
}

/* RESPONSIVIDADE - MOBILE */

@media (max-width: 768px) {
    .share-content {
        padding: 32px 24px;
    }
    
    .share-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .share-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .video-container {
        margin-bottom: 20px;
        border-radius: 10px;
    }
    
    .share-description {
        padding: 24px;
        border-radius: 12px;
    }
    
    .description-text {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .highlight-field {
        flex-direction: row;
        padding: 12px 14px;
        gap: 12px;
        background: rgba(15, 15, 15, 0.8);
        border-radius: 8px;
    }
    
    .field-label {
        font-size: 11px;
    }
    
    .field-value {
        font-size: 14px;
    }
    
    .copy-btn {
        width: auto;
        height: auto;
    }
    
    .copy-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* RESPONSIVIDADE - MOBILE PEQUENO */

@media (max-width: 480px) {
    .share-content {
        padding: 24px 20px;
    }
    
    .share-title {
        font-size: 24px;
    }
    
    .share-subtitle {
        font-size: 15px;
    }
    
    .highlight-field {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        background: rgba(15, 15, 15, 0.8);
        border-radius: 8px;
    }
    
    .copy-btn {
        align-self: flex-end;
    }
}

/* ANIMAÇÕES */

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.share-page {
    animation: slideUp 0.4s ease;
}

.share-title,
.share-subtitle,
.video-container,
.share-description {
    animation: slideUp 0.5s ease backwards;
}

.share-title {
    animation-delay: 0.1s;
}

.share-subtitle {
    animation-delay: 0.2s;
}

.video-container {
    animation-delay: 0.3s;
}

.share-description {
    animation-delay: 0.4s;
}


