/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(39, 174, 96, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-content,
.sidebar {
    animation: fadeIn 0.8s ease-out forwards;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #fdfdfd;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.g1-logo-container {
    margin-right: 30px;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-nav a {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 0;
    transition: opacity 0.2s;
}

.top-nav a:hover {
    opacity: 0.7;
}

.top-nav a.g1-link {
    color: #c4170c;
}

.top-nav a.globo-link {
    color: #006700;
}

.top-nav a.gshow-link {
    color: #ff8200;
}

.top-nav a.videos-link {
    color: #0669ce;
}

.entrar-btn {
    background: linear-gradient(to bottom, #ffffff 0%, #f3f3f3 100%);
    border: 1px solid #dcdcdc;
    padding: 6px 16px;
    font-size: 11px;
    color: #666;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    position: absolute;
    right: 0;
    text-transform: uppercase;
}

/* ===== RED NAV BAR ===== */
.red-bar {
    background: #c4170c;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.red-bar-inner {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
}

.menu-btn {
    color: #fff;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 2;
}

.menu-btn .hamburger {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.menu-btn .hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
}

.g1-bar-logo {
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    font-weight: 900;
    font-style: italic;
    font-size: 20px;
    margin-left: 20px;
    z-index: 2;
}

.bem-estar-title {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* ===== MAIN CONTENT WRAPPER ===== */
.content-wrapper {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 30px 20px;
    align-items: flex-start;
}

.main-content {
    flex: 1;
    max-width: 740px;
}

.sidebar {
    width: 290px;
    flex-shrink: 0;
}

/* ===== ARTICLE HEADER ===== */
.article-title {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.article-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin-bottom: 24px;
}

.meta-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    justify-content: space-between;
}

.meta-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 700;
}

.date-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #777;
}

.social-icons {
    display: flex;
    gap: 6px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
}

.si-fb {
    background: #3b5998;
}

.si-tw {
    background: #1da1f2;
}

.si-wpp {
    background: #25d366;
}

.si-lin {
    background: #0077b5;
}

.si-pin {
    background: #bd081c;
}

/* ===== ARTICLE BODY ===== */
.article-body p {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 22px;
}

.article-body p strong {
    color: #000;
}

.article-body a.red-link {
    color: #cc0000;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(204, 0, 0, 0.3);
}

.article-body a.red-link:hover {
    border-bottom: 1px solid #cc0000;
}

/* ===== IMAGES ===== */
.art-img {
    width: 100%;
    display: block;
    margin-bottom: 8px;
}

.img-caption {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #666;
    margin-bottom: 28px;
    line-height: 1.5;
    padding: 0 10px;
}

.red-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #cc0000;
    border-radius: 50%;
    margin-right: 6px;
}

/* ===== SECTION HEADINGS ===== */
.heading-serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 40px 0 24px;
    line-height: 1.2;
}

.heading-serif-bold {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 36px 0 20px;
    line-height: 1.35;
}

/* COMPARISON BARS */
.comp-section {
    margin: 30px 0;
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
}

.comp-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.comp-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comp-bottle {
    width: 80px;
    height: 110px;
    background: #eee;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #eee;
}

.comp-bottle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comp-info {
    flex: 1;
}

.comp-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 4px;
}

.comp-stars {
    font-size: 12px;
    margin-bottom: 12px;
}

.comp-stars.gold {
    color: #f1c40f;
}

.comp-stars.gray {
    color: #ccc;
}

.bar-row {
    margin-bottom: 10px;
}

.bar-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 4px;
    display: block;
}

.bar-label.red {
    color: #cc0000;
}

.bar-label.green {
    color: #27ae60;
}

.bar-track {
    background: #e0e0e0;
    height: 10px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.bar-fill-r {
    height: 100%;
    background: #cc0000;
}

.bar-fill-g {
    height: 100%;
    background: #27ae60;
}

/* ===== OFFER SECTION ===== */
.offer-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px 20px;
    background: #f9f9f9;
    border: 2px dashed #cc0000;
    border-radius: 12px;
}

.offer-heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #cc0000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.offer-valid {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.offer-cta-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.4;
}

.offer-stock {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #cc0000;
    text-transform: uppercase;
    background: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #cc0000;
    margin-bottom: 25px;
}

.btn-compre {
    display: block;
    background: #27ae60;
    color: #fff !important;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    padding: 20px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    animation: pulse 2s infinite ease-in-out;
}

.btn-compre:hover {
    transform: scale(1.1);
    background: #219a52;
    animation: none;
}

/* ===== COMMENTS SECTION ===== */
.comments-section {
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
    margin-top: 40px;
}

.comments-header {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comments-header span {
    color: #f00;
}

.comment-item {
    display: flex;
    gap: 15px;
    padding-bottom: 30px;
    position: relative;
}

.comment-item:last-child {
    padding-bottom: 0;
}

/* The vertical line */
.comment-item::before {
    content: "";
    position: absolute;
    left: 25px;
    /* Half of avatar width */
    top: 50px;
    /* Start below first avatar */
    bottom: -30px;
    /* Connect to next */
    width: 1px;
    background: #dcdcdc;
    z-index: 1;
}

.comment-item:last-child::before {
    display: none;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    background: #eee;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    z-index: 2;
    border: 1px solid #eee;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-name {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.comment-time {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.comment-text {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
    background: #333;
    padding: 30px 0;
    color: #fff;
    margin-top: 50px;
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: #aaa;
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-weight: 900;
    font-size: 24px;
    color: #cc0000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .content-wrapper {
        flex-direction: column;
    }

    .sidebar {
        display: none;
    }

    .article-title {
        font-size: 28px;
    }

    .article-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        padding: 10px 15px;
    }

    .top-nav {
        display: none;
    }

    .red-bar-inner {
        padding: 10px 15px;
    }

    .menu-btn {
        font-size: 16px;
    }

    .bem-estar-title {
        font-size: 20px;
    }

    .article-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .article-subtitle {
        font-size: 16px;
    }

    .meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .art-img {
        margin-bottom: 15px;
    }

    .img-caption {
        font-size: 12px;
    }

    p {
        font-size: 16px;
        line-height: 1.5;
    }

    .heading-serif {
        font-size: 22px;
    }

    .btn-compre {
        width: 100%;
        font-size: 22px;
        padding: 18px 25px;
        margin-top: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .meta-row {
        gap: 20px;
    }

    .offer-stock {
        font-size: 14px;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        text-align: center;
    }
}