:root {
    --today-blue: #004b93;
    --pink-brand: #FF4B91;
    --bg-gray: #f0f2f5;
    --text-dark: #1c1e21;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: #fff;
    color: var(--text-dark);
    font-family: 'Roboto', -apple-system, sans-serif;
    line-height: 1.35;
}

.invisible { display: none !important; }

/* HEADER - ORIGINAL MATCH */
.today-header {
    background: #fff;
    border-bottom: 1px solid #eee; /* Borda mais suave e fina */
    height: 60px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.today-header-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
}

.today-logo-img {
    height: 36px;
    width: auto;
}

.today-header-right {
    display: flex;
    align-items: center;
}

.today-search-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #000;
}

.hide-mobile { display: none; }

/* HERO SECTION - ORIGINAL MATCH */
.hero-section {
    padding: 5px 15px; /* Reduzi o topo de 10px para 5px */
    text-align: left;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 17px; /* Authentic mobile font size from screenshot */
    font-weight: 700;
    margin-bottom: 15px;
    color: #212121;
    letter-spacing: -0.2px;
}

.video-container {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    background: #000;
    overflow: hidden;
    margin-bottom: 15px;
}

/* FIX GIANT ICON BUG */
.tags-section {
    padding: 15px 15px;
    border-top: 1px solid #eee;
}

.tags-title {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tags-title i, .tags-title span, .tags-title svg {
    font-size: 14px !important;
    width: 14px !important;
    height: 14px !important;
}

/* FACEBOOK COMMENTS */
#fb-comments {
    background: var(--bg-gray);
    padding: 30px 10px;
}

.comments-container {
    max-width: 550px;
    margin: 0 auto;
    background: #fff;
    padding: 15px 10px;
    border-radius: 10px;
}

.comment { display: flex; gap: 8px; margin-bottom: 15px; }
.user-avatar { width: 34px; height: 34px; border-radius: 50%; }
.user-background { background: #f0f2f5; padding: 8px 12px; border-radius: 18px; }
.name { font-weight: 700; font-size: 13px; color: #050505; }
.text { font-size: 14px; margin-top: 1px; }
.buttons { font-size: 11px; color: #65676b; margin-top: 5px; }

.comment.reply { margin-left: 20px; }

/* GUARANTEE */
.guarantee-section { padding: 30px 15px; text-align: center; }
.guarantee-badge img { width: 120px; margin-bottom: 15px; }
.guarantee-title { font-size: 24px; font-weight: 900; }
.red-highlight { color: #ec1b24; }

/* DESKTOP (768px+) */
@media (min-width: 768px) {
    .today-header { height: 65px; }
    .today-logo-img { height: 40px; }
    .hero-content h1 { font-size: 38px; text-align: center; }
    .hero-section { text-align: center; padding: 40px 15px; }
    .comment.reply { margin-left: 50px; }
    .hide-mobile { display: block; margin-left: 20px; font-weight: 700; cursor:pointer; }
}
