/*
 * SEO ECONECT - Cards e Simuladores
 * Estilos para previews Google SERP, Facebook, etc
 */

/* Google SERP Simulator */
.google-card {
    border: 1px solid #dfe1e5;
    border-radius: 8px;
    padding: 16px;
    background: white;
    font-family: arial, sans-serif;
    box-shadow: 0 1px 6px rgba(32,33,36,.28);
}

.google-url {
    color: #202124;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.google-title {
    color: #1a0dab;
    font-size: 20px;
    line-height: 1.3;
    text-decoration: none;
    cursor: pointer;
}

.google-title:hover {
    text-decoration: underline;
}

.google-desc {
    color: #4d5156;
    font-size: 14px;
    line-height: 1.58;
    word-wrap: break-word;
}

/* Facebook Card Simulator */
.fb-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
    background: #f0f2f5;
}

.fb-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
}

.fb-content {
    padding: 10px 12px;
    background: #f0f2f5;
    border-top: 1px solid #ddd;
}

.fb-domain {
    font-size: 12px;
    color: #65676b;
    text-transform: uppercase;
}

.fb-title {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-top: 3px;
    color: #050505;
    line-height: 1.2;
}

.fb-desc {
    font-size: 13px;
    color: #65676b;
    margin-top: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
