/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --primary-green: #0d4a2d;
    --dark-green: #063a1f;
    --light-green: #4a9b6a;
    --accent-green: #6b9f3d;
    --bright-green: #7dd87f;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --bg-gray: #f5f5f5;
    --bg-dark: #1a1a1a;
    --border-gray: #e0e0e0;
    --yellow: #ffd700;
    --purple: #9b59b6;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

section {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Promo Banner */
.promo-banner {
    background: var(--primary-green);
    color: var(--text-light);
    padding: 10px 15px;
    text-align: center;
    font-size: 0.8rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.promo-banner .container {
    padding: 0;
}

.promo-banner p {
    margin: 0;
    line-height: 1.4;
}

.promo-banner strong {
    color: #ffd700;
}

/* Header */
.header {
    position: fixed;
    top: 38px;
    width: 100%;
    background: var(--bg-light);
    box-shadow: var(--shadow);
    z-index: 1000;
}

@media (max-width: 768px) {
    .promo-banner {
        font-size: 0.7rem;
        padding: 8px 10px;
    }

    .header {
        top: 50px;
    }
}

.header-top {
    padding: 12px 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-item {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: all 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item:hover {
    color: var(--accent-green);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    background-image: url('https://greenrush.com.br/bannerdesktop.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    margin-top: 110px;
    width: 100%;
}

@media (min-width: 769px) {
    .hero-banner {
        background-image: url('https://greenrush.com.br/bannermobile.jpg');
        min-height: 600px;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 30px 0;
    background: var(--bg-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    padding: 20px 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    color: var(--primary-green);
    font-size: 0.8rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.benefit-text p {
    color: #666;
    font-size: 0.75rem;
    line-height: 1.3;
}

/* Shop by Objective */
.shop-objective {
    padding: 40px 0;
    background: var(--bg-gray);
}

.section-title-center {
    text-align: center;
    font-size: 2.2rem;
    color: #2E7D32;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title-green {
    text-align: center;
    font-size: 2rem;
    color: var(--accent-green);
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 700;
}

.objective-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 25px;
    border: 2px solid var(--border-gray);
    background: var(--bg-light);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-green);
    color: var(--text-light);
    border-color: var(--primary-green);
}

/* Featured Products */
.featured-products {
    padding: 60px 0;
    background: var(--bg-light);
}

.section-header-products {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title-left {
    font-size: 2rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.section-header-products .view-all-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.section-header-products .view-all-link:hover {
    color: var(--accent-green);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    padding: 0;
}

.product-favorite:hover {
    background: var(--bg-light);
    transform: scale(1.1);
}

.product-image {
    width: 100%;
    height: 320px;
    margin-bottom: 0;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 600;
}

.product-category {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    padding: 16px 16px 0;
}

.product-name {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
    padding: 0 16px;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
    padding: 0 16px;
}

.star {
    color: var(--accent-green);
    font-size: 0.95rem;
}

.star.yellow {
    color: var(--yellow);
}

.product-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px;
    padding: 0 16px;
}

.product-price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.product-price-old {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.product-installment {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 16px;
    padding: 0 16px;
}

.btn-add-cart {
    width: calc(100% - 32px);
    margin: 0 16px 16px;
    padding: 14px;
    background: var(--accent-green);
    color: var(--text-light);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

.btn-add-cart:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 159, 61, 0.4);
}

.cart-icon-btn {
    font-size: 1rem;
}

/* Who Used Section */
.who-used-section {
    padding: 60px 0;
    background: var(--bg-light);
    color: var(--text-dark);
    position: relative;
}

.videos-container {
    position: relative;
    margin-top: 40px;
}

.videos-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px;
    padding-right: 40px;
}

.videos-carousel::-webkit-scrollbar {
    display: none;
}

.video-item {
    flex: 0 0 24%;
    min-width: 220px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--bg-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.testimonial-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .who-used-section .container {
        padding: 0;
    }

    .videos-container {
        margin-top: 20px;
    }

    .videos-carousel {
        padding: 10px 15px;
        gap: 10px;
    }

    .video-item {
        flex: 0 0 calc(100vw - 30px);
        min-width: calc(100vw - 30px);
        border-radius: 20px;
    }

    .testimonial-video {
        border-radius: 20px;
    }

    .carousel-controls {
        display: none;
    }
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn {
    background: rgba(107, 159, 61, 0.1);
    border: 2px solid var(--accent-green);
    color: var(--primary-green);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--accent-green);
    color: var(--text-light);
    transform: scale(1.1);
}

/* Combos Section */
.combos-section {
    padding: 60px 0;
    background: var(--bg-gray);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.view-all-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: var(--accent-green);
}

.combos-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    flex: 1;
}

.combo-info-panel {
    width: 320px;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.combo-info-title {
    font-size: 1.3rem;
    color: #2E7D32;
    margin-bottom: 20px;
    text-align: center;
}

.combo-info-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.combo-info-item:last-child {
    margin-bottom: 0;
}

.combo-info-item h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 8px;
}

.combo-info-item p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.combo-info-item ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.combo-info-item ul li {
    color: #555;
    font-size: 0.8rem;
    padding: 3px 0;
    padding-left: 15px;
    position: relative;
}

.combo-info-item ul li::before {
    content: "✓";
    color: #2E7D32;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.combo-info-tag {
    display: inline-block;
    background: #2E7D32;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .combos-wrapper {
        flex-direction: column;
    }

    .combo-info-panel {
        width: 100%;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .combos-grid {
        grid-template-columns: 1fr;
    }
}

.combo-card {
    background: var(--bg-light);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.combo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.combo-header {
    background: var(--primary-green);
    padding: 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.combo-badge {
    background: var(--accent-green);
    color: var(--text-light);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    position: absolute;
    top: 10px;
    left: 10px;
}

.combo-header-title {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
    text-align: center;
    padding: 0 40px;
}

.combo-favorite {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.combo-favorite:hover {
    transform: translateY(-50%) scale(1.2);
}

.combo-image {
    width: 100%;
    overflow: hidden;
    background: var(--bg-light);
    padding: 15px;
}

.combo-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.combo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 600;
}

.combo-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.combo-category {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.combo-name {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
}

.combo-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.combo-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px;
}

.price-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.combo-installment {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 16px;
}

.combo-card .btn-add-cart {
    border-radius: 8px;
    margin-top: auto;
}

/* Results Section */
.results-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.result-card {
    text-align: center;
}

.comparison-slider {
    margin-bottom: 20px;
}

.comparison-container {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.img-depois {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-antes-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.img-antes {
    display: block;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.label-antes {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.75rem;
    z-index: 10;
}

.label-depois {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-green);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.75rem;
    z-index: 10;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.handle-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.handle-arrows {
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
    letter-spacing: 2px;
}

.result-title {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.result-description {
    color: #666;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: var(--bg-gray);
}

.section-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.star-icon {
    font-size: 2.5rem;
    color: #F5A623;
    filter: drop-shadow(0 2px 4px rgba(245, 166, 35, 0.3));
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #e8f5e9;
    color: var(--accent-green);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.verified-badge svg {
    width: 12px;
    height: 12px;
}

.testimonial-date {
    color: #999;
    font-size: 0.75rem;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.testimonial-rating .star {
    font-size: 0.9rem;
}

.testimonial-text {
    color: #444;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.testimonial-midias {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.testimonial-media-item {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.testimonial-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.testimonial-product-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border-gray);
}

.product-icon {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    object-fit: cover;
}

.product-name {
    font-size: 0.8rem;
    color: #666;
}

.testimonials-footer {
    text-align: center;
}

.btn-view-more {
    background: var(--accent-green);
    color: var(--text-light);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-view-more:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.testimonials-pagination {
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--bg-gray);
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.blog-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-green);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 25px;
}

.blog-date {
    display: block;
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.blog-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-link:hover {
    color: var(--primary-green);
}

.blog-footer {
    text-align: center;
}

.btn-view-articles {
    background: var(--accent-green);
    color: var(--text-light);
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-view-articles:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 159, 61, 0.4);
}

/* Community Section */
.community-section {
    padding: 80px 0;
    background: var(--bg-gray);
}

.community-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.community-content {
    text-align: left;
}

.whatsapp-icon-box {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.community-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.text-green {
    color: #25D366;
}

.community-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.community-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.community-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.community-icon-small {
    width: 36px;
    height: 36px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.community-benefit-text strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.community-benefit-text p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

.btn-community {
    background: #25D366;
    color: var(--text-light);
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-community:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.community-features {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 0.85rem;
}

.community-features span {
    color: #25D366;
}

.community-image {
    display: flex;
    justify-content: center;
}

.community-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 20px;
    padding: 30px;
    max-width: 350px;
}

.community-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

.members-badge {
    position: absolute;
    top: 20px;
    right: 10px;
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: var(--text-light);
    padding: 40px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-brand {
    max-width: 220px;
}

.footer-logo-img {
    height: 35px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.8rem;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.social-icon:hover {
    color: white;
}

.footer-column h4 {
    margin-bottom: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 6px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.footer-column ul li a:hover {
    color: var(--text-light);
}

.footer-contact h4,
.footer-newsletter h4 {
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
    font-size: 0.8rem;
}

.contact-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-icon {
    font-size: 0.85rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
}

.btn-newsletter {
    background: var(--accent-green);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: var(--light-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-badge {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-icon {
    font-size: 1rem;
}

.security-badge {
    color: #4CAF50;
    font-size: 0.75rem;
}

/* Pop-up */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    position: relative;
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    color: var(--text-dark);
}

.popup-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.popup-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-input {
    padding: 12px;
    border: 2px solid var(--border-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.popup-input:focus {
    outline: none;
    border-color: var(--accent-green);
}

.popup-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.popup-checkbox input {
    width: 18px;
    height: 18px;
}

.btn-popup {
    background: var(--accent-green);
    color: var(--text-light);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-popup:hover {
    background: var(--primary-green);
}

/* Modal de Tamanhos */
.size-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.size-modal-overlay.active {
    display: flex;
}

.size-modal-content {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: popupFadeIn 0.3s ease;
}

.size-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-modal-close:hover {
    color: var(--text-dark);
}

.size-modal-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.size-modal-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
}

.size-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.size-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}

.size-option:hover {
    border-color: var(--accent-green);
    background: rgba(107, 159, 61, 0.05);
    transform: translateX(5px);
}

.size-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-green);
    min-width: 40px;
}

.size-text {
    font-size: 0.95rem;
    color: #666;
    flex: 1;
    text-align: right;
}

/* SlimShot Modal */
.slimshot-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.slimshot-modal-overlay.active {
    display: flex;
}

.slimshot-modal {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.slimshot-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.slimshot-modal-close:hover {
    color: #333;
}

.slimshot-modal-title {
    text-align: center;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 25px;
}

.slimshot-kits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.slimshot-kit-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.slimshot-kit-card:hover {
    border-color: #F5A623;
    box-shadow: 0 5px 20px rgba(245, 166, 35, 0.2);
}

.slimshot-kit-card.featured {
    border-color: #F5A623;
    box-shadow: 0 5px 20px rgba(245, 166, 35, 0.2);
}

.kit-badge-desconto {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #F5A623;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.kit-badge-frete {
    display: inline-block;
    background: #FFF3C4;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.kit-image {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.kit-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.kit-name {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.kit-desc {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 15px;
}

.kit-price {
    margin-bottom: 15px;
}

.kit-installment {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
}

.kit-cash {
    display: block;
    font-size: 0.85rem;
    color: #666;
}

.kit-btn {
    display: block;
    background: #F5A623;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.kit-btn:hover {
    background: #e09000;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .slimshot-kits {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .slimshot-modal {
        padding: 20px;
    }

    .slimshot-modal-title {
        font-size: 1.2rem;
    }
}

/* Chá Detox Green Theme */
.cha-detox-theme .slimshot-kit-card:hover {
    border-color: #2E7D32;
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.2);
}

.cha-detox-theme .slimshot-kit-card.featured {
    border-color: #2E7D32;
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.2);
}

.cha-detox-theme .kit-badge-desconto {
    background: #2E7D32;
}

.cha-detox-theme .kit-badge-frete {
    background: #C8E6C9;
    color: #1B5E20;
}

.cha-detox-theme .kit-btn {
    background: #2E7D32;
}

.cha-detox-theme .kit-btn:hover {
    background: #1B5E20;
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 500px;
        margin-top: 115px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .benefit-card {
        padding: 15px 10px;
        gap: 8px;
    }

    .benefit-icon {
        font-size: 1.2rem;
    }

    .benefit-text h3 {
        font-size: 0.7rem;
    }

    .benefit-text p {
        font-size: 0.65rem;
    }


    .section-header-products {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-image {
        height: 300px;
        border-radius: 0;
        background: white;
    }

    .product-img {
        object-fit: contain;
        object-position: center;
    }

    .product-card {
        border-radius: 15px;
        overflow: hidden;
    }

    .product-card-cover .product-img {
        object-fit: cover;
    }

    .combos-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-main-title {
        font-size: 1.8rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-container {
        height: 300px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .percent-icon {
        display: none;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .community-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .community-content {
        text-align: center;
    }

    .whatsapp-icon-box {
        margin: 0 auto 25px;
    }

    .community-benefits {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .community-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .community-image {
        order: -1;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-content {
        justify-content: space-between;
    }

    .logo {
        position: relative;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-light);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }

    .header-nav.active {
        display: flex;
    }

    .nav-item {
        font-size: 0.95rem;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-gray);
        width: 100%;
        text-align: center;
    }

    .nav-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .header-nav {
        gap: 10px;
        font-size: 0.8rem;
    }

    .nav-item {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title-center,
    .section-title-left {
        font-size: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 250px;
    }

    .product-price-current {
        font-size: 1.3rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Size Selection Modal */
.size-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.size-modal-overlay.active {
    display: flex;
}

.size-modal {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    max-width: 450px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.size-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.size-modal-close:hover {
    color: var(--text-dark);
}

.size-modal-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    text-align: center;
}

.size-modal-product {
    text-align: center;
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 20px;
}

.size-guide-modal {
    background: var(--bg-gray);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.size-guide-modal .size-guide-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.size-guide-modal .size-guide-item {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.size-guide-modal .size-guide-label {
    font-weight: 600;
    color: var(--primary-green);
}

.size-buttons-modal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.size-btn-modal {
    padding: 12px 8px;
    border: 2px solid var(--border-gray);
    background: var(--bg-light);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.size-btn-modal:hover {
    border-color: var(--accent-green);
}

.size-btn-modal.selected {
    background: var(--accent-green);
    color: var(--text-light);
    border-color: var(--accent-green);
}

.size-modal-cta {
    width: 100%;
    padding: 15px;
    background: var(--accent-green);
    color: var(--text-light);
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-modal-cta:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.size-modal-cta:not(:disabled):hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .size-buttons-modal {
        grid-template-columns: repeat(3, 1fr);
    }
}
