/* Basic Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Inter', sans-serif;
    background-color: #f4f4f4;
    /* Light background for contrast */
}

/* Header Container */
.sales-header {
    width: 100%;
    position: relative;
    z-index: 1000;
}

/* BARRA 1: Top Bar */
.top-bar {
    width: 100%;
    height: 55px;
    /* Reduced from 64px */
    background-color: #c40000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.menu-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.logo {
    color: white;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* BARRA 2: Marquee Bar */
.marquee-bar {
    width: 100%;
    height: 34px;
    background-color: #a80000;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    align-items: center;
    overflow: hidden;
    animation: scroll-left 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee-content span {
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding-right: 0px;
    /* Adjust spacing as needed, space is in text */
    margin-right: 50px;
    /* Add margin instead of padding to span if needed */
}

/* Keyframes for Marquee Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move by 50% of the track width (which contains 2 sets) */
    }
}

/* Main Content Area */
.content-container {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
}

.article-box {
    background-color: white;
    width: 100%;
    max-width: 900px;
    padding: 15px 25px;
    /* Reduced from 20px 30px */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

/* Meta Header (Author & Socials) */
.meta-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    /* Reduced from 15px */
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    /* Reduced from 15px */
}

.author-info-wrapper {
    display: flex;
    gap: 15px;
}

.red-line {
    width: 3px;
    background-color: #c40000;
    height: auto;
    min-height: 50px;
    /* Minimal height to span the text block */
}

.author-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.author-name {
    font-weight: bold;
    color: #000;
    font-size: 14px;
    /* Slightly smaller */
    margin-bottom: 2px;
}

.meta-date {
    color: #666;
    font-size: 12px;
    /* Slightly smaller */
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons svg {
    cursor: pointer;
    transition: transform 0.2s;
}

.social-icons svg:hover {
    transform: scale(1.1);
}

/* Article Content Typography */
.article-content {
    text-align: left;
}

.sub-headline {
    color: #333;
    font-style: italic;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Main Headline Styling */
.main-headline {
    font-size: 24px;
    /* Adjusted size */
    line-height: 1.1;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
    width: 100%;
    /* Force full width usage */
    max-width: 600px;
    /* Reduced width to force more lines */
    margin-left: auto;
    margin-right: auto;
}

.underline-black {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    font-weight: 800;
}

.highlight-red {
    color: #c40000;
}

.sub-text {
    color: #666;
    font-style: italic;
    font-size: 16px;
}

/* Credibility Section */
.credibility-section {
    width: 100%;
    background-color: white;
    padding: 10px 0;
    /* Reduced from 20px 0 */
    margin-top: 0px;
    /* Removed top margin to be closer to video */
    margin-bottom: 15px;
    /* Reduced from 30px */
    border-top: 1px solid #eee;
    /* Optional divider */
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.credibility-banner {
    height: 60px;
    /* Increased from 35px */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .logo {
        font-size: 22px;
    }

    .top-bar {
        height: 50px;
        /* Slightly smaller top bar for mobile */
    }

    .content-container {
        padding: 5px 10px;
        /* Very tight container padding */
    }

    .article-box {
        padding: 15px 15px;
        /* Minimal padding inside box */
    }

    .main-headline {
        font-size: 20px;
        /* Smaller than desktop to fit well */
        line-height: 1.1;
    }

    .sub-headline {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .meta-header {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }

    /* Mobile adjustments for credibility logos */
    .credibility-banner {
        height: auto;
        max-width: 90%;
        /* Ensure it fits with some margin */
    }
}

/* Facebook Comments Style */
/* Facebook Comments Style */
.fb-comments-section {
    width: 100%;
    max-width: 800px;
    /* Matched the image width request */
    margin: 20px auto;
    font-family: Helvetica, Arial, sans-serif;
    color: #1d2129;
    text-align: left;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    /* Slight container rounding */
}

.fb-header {
    font-weight: bold;
    font-size: 16px;
    color: #1d2129;
    margin-bottom: 10px;
    border-bottom: 1px solid #e9ebee;
    padding-bottom: 8px;
}

.fb-thread {
    margin-bottom: 8px;
    /* Spacing between distinct conversations */
}

.fb-comment {
    display: flex;
    margin-bottom: 8px;
    /* Tighter spacing for comments */
    position: relative;
    align-items: flex-start;
}

.fb-reply {
    margin-left: 50px;
    /* Indent for reply */
    margin-top: 5px;
    /* Spacing for nested reply */
}

.fb-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.fb-reply .fb-avatar {
    width: 28px;
    /* Slightly smaller for replies */
    height: 28px;
}

.fb-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 
   To match "Modern" FB (Bubble) vs "Classic" (Text):
   The prompt asks for "Profile - Name Blue - Text Black - Actions Below".
   Modern FB puts Name+Text inside a Gray Bubble.
   Classic FB puts Name+Text essentially inline or block.
   Let's use the 'Bubble' style as it is the current standard and looks most "Real".
*/
.fb-bubble-content {
    background-color: #f0f2f5;
    padding: 8px 12px;
    border-radius: 18px;
    display: inline-block;
    width: fit-content;
}

.fb-name {
    color: #050505;
    /* Modern FB Name is actually black/dark, but user asked for BLUE */
    color: #385898;
    /* Classic FB Blue forced by user request */
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    display: block;
    /* Name on own line inside bubble? Or inline? Modern is block-ish */
    margin-bottom: 2px;
}

.fb-name:hover {
    text-decoration: underline;
}

.fb-text {
    color: #050505;
    font-size: 15px;
    /* Slightly larger for readability */
    line-height: 1.3333;
    display: block;
}

.fb-actions {
    margin-left: 12px;
    /* Align with bubble start */
    margin-top: 2px;
    font-size: 12px;
    color: #65676b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fb-action {
    font-weight: bold;
    color: #65676b;
    /* Modern action color */
    cursor: pointer;
    text-decoration: none;
}

.fb-action:hover {
    text-decoration: underline;
}

.fb-time {
    color: #65676b;
    font-weight: normal;
}

.fb-likes {
    display: flex;
    /* Flex to align icon if we add it, or just text */
    align-items: center;
    color: #65676b;
}

/* Like Icon Floating on Bubble (Facebook Style) */
/* Actually, user asked for "Like count visible" usually next to actions or floating on bubble */
/* If we follow the "Like - Reply - Count - Time" order in the prompt example: "Curtir · Responder · 113 · 2 h"
   It implies the count is inline with actions. */

.fb-likes::before {
    /* Optional: Small like icon inline */
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231877F2'%3E%3Cpath d='M14 6h-4V3c0-1.103-.897-2-2-2-.63 0-1.199.309-1.57.808C6.12 2.227 6 2.628 6 3v2.08L3.08 8.03C3.03 8.08 3 8.13 3 8.19V14c0 .55.45 1 1 1h8c.7 0 1.33-.37 1.68-.96l2-4.04c.16-.29.24-.61.24-.95 0-1.68-1.37-3.05-2.92-3.05zM5 13H4V9h1v4zm9.32-4.96l-2 4.04A.46.46 0 0112 11.5H7V5.7l1.37-1.37c.1-.1.13-.24.13-.33 0-.08 0-.12-.04-.15-.07-.07-.15-.12-.25-.12.44 0 .79.35.79.77v1.5h4c.97 0 1.95.78 1.95 2.05 0 .19-.05.37-.13.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    margin-right: 4px;
}