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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

.product-benefits .container {
    max-width: 1500px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 50%, #6b8e23 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo i {
    font-size: 4rem;
    margin-right: 20px;
    color: #90EE90;
}

.logo h1 {
    font-size: 4.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header-text h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #90EE90;
}

.header-text p {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Leaves Animation */
.leaves-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #90EE90;
    border-radius: 0 100% 0 100%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.leaf-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(45deg);
}

.leaf-3 {
    top: 40%;
    left: 80%;
    animation-delay: 4s;
    transform: rotate(-30deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Alert Section */
.alert-section {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.alert-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="20" cy="80" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.alert-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.alert-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.alert-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.alert-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
}

.alert-highlights {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.highlight {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 160px;
    flex: 1;
    max-width: 220px;
    white-space: nowrap;
}

.highlight:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

@keyframes glow {
    0% { 
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(255,215,0,0.3);
    }
    100% { 
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(255,215,0,0.6), 0 0 30px rgba(255,215,0,0.4);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.more-text {
    margin-top: 40px;
}

.more-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f0f9f7 0%, #e8f5f3 100%);
    padding: 80px 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(120, 200, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(95, 179, 161, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5a4a;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4a6b5d;
    margin-bottom: 50px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 255, 254, 0.95) 100%);
    border: 1px solid rgba(120, 200, 180, 0.2);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #78c8b4, #5fb3a1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(120, 200, 180, 0.15);
    border-color: rgba(120, 200, 180, 0.4);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    position: relative;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #78c8b4;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar img {
    transform: scale(1.1);
}

.testimonial-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #78c8b4, #5fb3a1);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(120, 200, 180, 0.3);
}

.testimonial-preview h4 {
    font-size: 1.2rem;
    color: #2d5a4a;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.testimonial-preview p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a6b5d;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #78c8b4;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more i {
    transition: transform 0.3s ease;
}

.testimonial-card:hover .read-more {
    color: #5fb3a1;
}

.testimonial-card:hover .read-more i {
    transform: translateX(4px);
}

/* Product Details Section */
.product-details {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
    position: relative;
    overflow: hidden;
}

.product-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 200, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(100, 180, 160, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.product-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-header {
    text-align: center;
    margin-bottom: 30px;
}

.product-header h2 {
    font-size: 3.2rem;
    color: #2d5a4a;
    margin-bottom: 12px;
    font-weight: 700;
}

.product-header .subtitle {
    font-size: 1.3rem;
    color: #4a6b5d;
    margin: 0;
    font-weight: 500;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.product-info h3,
.product-benefits h3 {
    font-size: 1.8rem;
    color: #2d5a4a;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.tea-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 255, 254, 0.9) 100%);
    border: 1px solid rgba(120, 200, 180, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    font-size: 1.3rem;
    color: #2d5a4a;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-left: 5px solid #78c8b4;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tea-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(120, 200, 180, 0.2);
    border-left-color: #5fb3a1;
}

.tea-card span {
    font-weight: 500;
}

.benefits-list {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 255, 254, 0.9) 100%);
    border: 1px solid rgba(120, 200, 180, 0.3);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    border-left: 5px solid #78c8b4;
    transition: all 0.3s ease;
    margin-top: 65px;
}

.benefits-list:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(120, 200, 180, 0.2);
    border-left-color: #5fb3a1;
}

.benefits-list h4 {
    font-size: 1.4rem;
    color: #2d5a4a;
    margin-bottom: 16px;
    font-weight: 600;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #2d5a4a;
    border-bottom: 1px solid rgba(120, 200, 180, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li:hover {
    color: #1e3d33;
    transform: translateX(3px);
}

.benefits-list li:before {
    content: "✓";
    color: #78c8b4;
    font-weight: bold;
    font-size: 0.8rem;
}

.more-info {
    font-size: 0.95rem;
    color: #4a6b5d;
    text-align: center;
    font-style: italic;
    margin: 0;
}

/* CTA Discount Section */
.cta-discount {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.cta-discount::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-compact {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
}



.cta-badge {
    color: white;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.price-inline {
    display: flex;
    align-items: center;
    gap: 15px;
}

.old-price-inline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-decoration: line-through;
    white-space: nowrap;
}

.new-price-inline {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}



.cta-button-compact {
    background: linear-gradient(135deg, #78c8b4 0%, #5fb3a1 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cta-button-compact:hover {
    transform: translateY(-2px);
}





.benefits-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.benefit-tag {
    background: linear-gradient(135deg, #78c8b4 0%, #5fb3a1 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefit-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(120, 200, 180, 0.3);
}

.disclaimer-compact {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    font-style: italic;
    margin: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(120, 200, 180, 0.2);
}

/* Product Benefits Section */
.product-benefits {
    padding: 70px 0;
    background: linear-gradient(135deg, #e8f5f3 0%, #d1f2eb 100%);
    position: relative;
}

.product-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(120, 200, 180, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(100, 180, 160, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-header {
    text-align: left;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.benefits-header h2 {
    font-size: 2.6rem;
    color: #2d5a4a;
    margin-bottom: 12px;
    font-weight: 700;
}

.benefits-subtitle {
    font-size: 1.4rem;
    color: #4a6b5d;
    margin: 0;
    font-weight: 500;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* IMAGEM À ESQUERDA - DESKTOP */
@media (min-width: 769px) {
    .product-benefits .benefits-layout {
        display: flex !important;
        flex-direction: row-reverse !important;
        gap: 15px !important;
        align-items: flex-start !important;
    }
    
    .product-benefits .benefits-info {
        flex: 1 !important;
    }
    
    .product-benefits .benefits-showcase {
        flex: 0 0 40% !important;
        margin-top: 10px !important;
    }
    
    .product-benefits .showcase-image img {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .product-benefits .benefits-header {
        text-align: center !important;
    }
    
    /* Product Details Desktop Layout */
    .product-details .product-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
        align-items: start !important;
    }
    
    /* CTA Discount Desktop Layout */
    .cta-compact {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 25px !important;
        text-align: center !important;
        max-width: 500px !important;
        padding: 30px !important;
    }
    
    .price-inline {
        display: flex !important;
        flex-direction: row !important;
        gap: 25px !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .cta-button-compact {
        width: auto !important;
        padding: 18px 40px !important;
        font-size: 1.3rem !important;
        white-space: nowrap !important;
    }
}

.benefits-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.showcase-image {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.showcase-image img {
    max-width: 1200px;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.benefits-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefits-grid-compact {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
    margin-bottom: 15px;
    width: 100%;
    grid-auto-flow: row;
}

.benefits-info-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-card {
    background: linear-gradient(135deg, #78c8b4 0%, #5fb3a1 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(120, 200, 180, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(120, 200, 180, 0.3);
    background: linear-gradient(135deg, #5fb3a1 0%, #4a9d8e 100%);
}

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

.benefit-text {
    font-size: 1rem;
}

.benefits-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 255, 254, 0.95) 100%);
    border: 1px solid rgba(120, 200, 180, 0.3);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(120, 200, 180, 0.1);
}

.info-card h4 {
    font-size: 1.2rem;
    color: #2d5a4a;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.info-tag {
    background: linear-gradient(135deg, rgba(120, 200, 180, 0.2) 0%, rgba(100, 180, 160, 0.2) 100%);
    color: #2d5a4a;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(120, 200, 180, 0.3);
}

.highlight-card {
    background: linear-gradient(135deg, #78c8b4 0%, #5fb3a1 100%);
    color: white;
    padding: 18px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(120, 200, 180, 0.2);
}

.highlight-card p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.disclaimer-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(120, 200, 180, 0.2);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.disclaimer-card p {
    margin: 0;
    font-size: 0.85rem;
    color: #6b7280;
    font-style: italic;
}

/* Health Problems Section */
.health-problems {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.health-problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q30,10 40,20 T60,20" stroke="rgba(76,175,80,0.1)" stroke-width="2" fill="none"/><path d="M10,50 Q20,40 30,50 T50,50" stroke="rgba(76,175,80,0.1)" stroke-width="1.5" fill="none"/><path d="M60,70 Q70,60 80,70 T100,70" stroke="rgba(76,175,80,0.1)" stroke-width="1" fill="none"/></svg>');
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.health-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.health-problems h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.problem-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.4);
}

.problem-item i {
    font-size: 1.5rem;
    color: #4caf50;
    min-width: 24px;
    text-align: center;
}

.problem-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.4;
}

.health-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid rgba(76, 175, 80, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.urgency-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.health-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.health-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
}

.health-cta-button i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: sparkle 3s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #FFD700;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.cta-content > p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #ffffff;
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.highlight-item i {
    color: #90EE90;
    font-size: 1rem;
}

.highlight-item span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Price Info */
.price-info {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.old-price {
    display: block;
    color: #ffcccc;
    font-size: 1rem;
    text-decoration: line-through;
    margin-bottom: 5px;
    opacity: 0.8;
}

.new-price {
    display: block;
    color: #90EE90;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.timer-container {
    margin: 25px 0;
}

.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.15);
    padding: 20px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    max-width: 250px;
    margin: 0 auto;
}

.time-unit {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.time-unit span {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.time-unit label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    color: #ffffff;
}

.separator {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFD700;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.cta-content h3 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #90EE90;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,107,107,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,107,107,0.4);
}

.cta-button i {
    margin-right: 10px;
}

.guarantee {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.guarantee i {
    color: #90EE90;
    font-size: 1.3rem;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-button {
    background: linear-gradient(45deg, #2d5016, #4a7c59);
    font-size: 1.4rem;
    padding: 25px 50px;
}

.final-button:hover {
    background: linear-gradient(45deg, #4a7c59, #6b8e23);
}

/* Responsive Design */
@media (max-width: 767px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .header-text h2 {
        font-size: 1.5rem;
    }
    
    .alert-title {
        font-size: 1.8rem;
    }
    
    .big-text {
        font-size: 1.4rem;
    }
    
    .big-text strong {
        font-size: 1.6rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .revelation-text {
        padding: 20px;
        margin: 20px 0 30px;
    }
    
    .conditions-compact {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .condition-compact {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .health-problems {
        padding: 60px 0;
    }
    
    .health-problems h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .problem-item {
        padding: 15px;
        gap: 12px;
    }
    
    .problem-item i {
        font-size: 1.3rem;
    }
    
    .problem-item span {
        font-size: 0.95rem;
    }
    
    .health-cta {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .urgency-text {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .health-cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .cta-compact {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        max-width: 320px !important;
        padding: 20px 15px !important;
        margin: 0 auto;
    }
    
    .cta-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .price-inline {
        flex-direction: column;
        gap: 8px;
    }
    
    .cta-button-compact {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        font-size: 0.95rem !important;
        padding: 10px 16px !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .timer {
        padding: 20px;
        gap: 15px;
    }
    
    .time-unit {
        display: flex !important;
        align-items: baseline !important;
        gap: 5px !important;
    }
    
    .price-info {
        margin: 15px 0;
        padding: 12px;
    }
    
    .old-price {
        font-size: 0.9rem;
    }
    
    .new-price {
        font-size: 1.6rem;
    }
}

/* Sales Notification Popup */
.sales-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 280px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sales-popup.show {
    opacity: 1;
    transform: translateX(0);
}

/* Versão mobile - posição no topo */
@media (max-width: 767px) {
    .sales-popup {
        top: 20px !important;
        bottom: unset !important;
        left: 50% !important;
        right: unset !important;
        transform: translateX(-50%) translateY(-100%) !important;
        max-width: 260px !important;
        width: 260px !important;
        min-width: unset !important;
        margin: 0 auto !important;
        padding: 10px 14px !important;
    }
    
    .sales-popup.show {
        opacity: 1 !important;
        transform: translateX(-50%) translateY(0) !important;
    }
    
    .sales-popup .popup-content {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
    }
    
    .sales-popup .popup-text {
        font-size: 0.85rem !important;
        font-weight: 500 !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        flex: 1 !important;
    }
    
    .sales-popup .popup-icon {
        font-size: 1rem !important;
        flex-shrink: 0 !important;
    }
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.popup-text {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* CTA Discount Responsive - Tablet */
@media (max-width: 767px) {
    .cta-discount {
        padding: 40px 0;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .price-container {
        gap: 20px;
    }

    .new-price .price-value {
        font-size: 2rem;
    }

    .old-price .price-value {
        font-size: 1.5rem;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
}

/* Responsive adjustments for popup */
@media (max-width: 480px) {
    .sales-popup {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
        padding: 10px 14px;
    }
    
    .popup-text {
        font-size: 0.85rem;
    }
}
    
    .time-unit span {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .final-button {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .alert-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .big-text {
        font-size: 1.2rem;
    }
    
    .big-text strong {
        font-size: 1.4rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .revelation-text {
        padding: 15px;
        margin: 15px 0 25px;
    }
    
    .conditions-compact {
        gap: 15px;
    }
    
    .condition-compact {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    /* Product Details Responsive */
    .product-details {
        padding: 30px 0;
    }

    .product-header h2 {
        font-size: 2.8rem;
    }

    .product-header .subtitle {
        font-size: 1.2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-info h3,
    .product-benefits h3 {
        font-size: 1.2rem;
    }

    .tea-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .tea-card {
        font-size: 1.1rem;
        padding: 16px 20px;
        gap: 10px;
        border-radius: 12px;
    }

    .benefit-tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .disclaimer-compact {
        font-size: 0.8rem;
        padding: 8px;
    }

    /* Product Benefits Responsive */
    .product-benefits {
        padding: 40px 0;
    }

    .benefits-header h2 {
        font-size: 1.7rem;
    }

    .benefits-subtitle {
        font-size: 1rem;
    }

    .benefits-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .showcase-image img {
        max-width: 600px;
    }

    /* Alert Section Responsive */
    .alert-section {
        padding: 25px 0;
    }

    .alert-title {
        font-size: 1.8rem;
    }

    .alert-description {
        font-size: 0.95rem;
    }

    .alert-highlights {
        gap: 8px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .highlight {
         font-size: 0.8rem;
         padding: 6px 10px;
         min-width: 100px;
         max-width: 120px;
         flex: 1;
         white-space: normal;
         line-height: 1.3;
     }
     
    .health-problems {
        padding: 40px 0;
    }
    
    .health-problems h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .problems-grid {
        gap: 12px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .problem-item {
        padding: 12px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .problem-item i {
        font-size: 1.2rem;
    }
    
    .problem-item span {
        font-size: 0.9rem;
    }
    
    .health-cta {
        padding: 25px 15px;
        margin: 0 15px;
    }
    
    .urgency-text {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .health-cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .price-info {
        margin: 12px 0;
        padding: 10px;
    }
    
    .old-price {
        font-size: 0.85rem;
    }
    
    .new-price {
        font-size: 1.4rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 255, 254, 0.98) 100%);
    margin: 20px;
    padding: 0;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(120, 200, 180, 0.3);
    backdrop-filter: blur(20px);
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 30px 20px 30px;
    border-bottom: 1px solid rgba(120, 200, 180, 0.2);
    background: linear-gradient(135deg, rgba(120, 200, 180, 0.1) 0%, rgba(95, 179, 161, 0.1) 100%);
}

.modal-avatar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #78c8b4;
}

.modal-info h3 {
    font-size: 1.4rem;
    color: #2d5a4a;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.modal-rating {
    font-size: 1rem;
    color: #78c8b4;
}

.close {
    color: #4a6b5d;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(120, 200, 180, 0.1);
}

.close:hover {
    color: #2d5a4a;
    background: rgba(120, 200, 180, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: 60vh;
}

.modal-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a6b5d;
    margin: 0;
    text-align: justify;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Modal Responsive */
@media (max-width: 767px) {
    .modal-content {
        margin: 10px;
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 20px 20px 15px 20px;
    }
    
    .modal-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .modal-info h3 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-body p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Testimonials Responsive */
@media (max-width: 767px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-preview h4 {
        font-size: 1.1rem;
    }
    
    .testimonial-preview p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonials h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        display: grid !important;
    }
    
    .testimonial-card {
        padding: 16px;
        width: 100%;
        max-width: none;
    }
    
    .testimonial-avatar {
        gap: 12px;
    }
    
    .testimonial-badge {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
}
}

    .benefits-info {
        gap: 20px;
    }

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

    .benefits-info-cards {
        gap: 12px;
    }

    .benefit-card {
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    .benefit-text {
        font-size: 0.8rem;
    }

    .info-card {
        padding: 16px;
    }

    .info-card h4 {
        font-size: 1.1rem;
    }

    .info-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .highlight-card {
        padding: 15px;
    }

    .highlight-card p {
        font-size: 0.95rem;
    }

    /* Product Details Very Small Screens */
    .product-details {
        padding: 25px 0;
    }

    .product-header {
        margin-bottom: 20px;
    }

    .product-header h2 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .product-header .subtitle {
        font-size: 1.1rem;
    }

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

    .product-info {
        order: 1;
    }

    .benefits-list {
        order: 2;
    }

    .product-info h3,
    .product-benefits h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .tea-grid {
        gap: 10px;
        margin-bottom: 15px;
    }

    .tea-card {
        font-size: 1rem;
        padding: 14px 18px;
    }

    .more-info {
        font-size: 0.85rem;
    }

    .benefits-compact {
        gap: 6px;
        margin-bottom: 12px;
    }

    .benefit-tag {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .disclaimer-compact {
        font-size: 0.75rem;
        padding: 6px;
    }

    /* Product Benefits Very Small Screens */
    .product-benefits {
        padding: 30px 0;
    }

    .benefits-header {
        margin-bottom: 25px;
    }

    .benefits-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .benefits-subtitle {
        font-size: 0.9rem;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .benefits-showcase {
        order: 2;
    }

    .benefits-info {
        order: 1;
    }

    .showcase-image img {
        max-width: 500px;
    }

    .benefits-info {
        gap: 15px;
    }

    /* Alert Section Small Screens */
    .alert-section {
        padding: 20px 0;
    }

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

    .alert-highlights {
        flex-direction: row;
        justify-content: center;
        gap: 6px;
        flex-wrap: wrap;
    }

    .highlight {
         font-size: 0.75rem;
         padding: 5px 8px;
         min-width: 90px;
         max-width: 110px;
         flex: 1;
         white-space: normal;
         line-height: 1.2;
     }

    .benefits-grid-compact {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }

    .benefits-info-cards {
        gap: 15px;
    }

    .benefit-card {
        font-size: 0.9rem;
        padding: 12px 16px;
        border-radius: 10px;
    }

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

    .benefit-text {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .info-card {
        padding: 14px;
    }

    .info-card h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .info-tags {
        gap: 6px;
    }

    .info-tag {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .highlight-card {
        padding: 12px;
    }

    .highlight-card p {
        font-size: 0.9rem;
    }

    .disclaimer-card {
        padding: 10px;
    }

    .disclaimer-card p {
        font-size: 0.8rem;
    }
}
    
    .testimonial {
        padding: 20px;
    }
    
    .timer {
        flex-direction: row;
        gap: 10px;
    }
    
    .time-unit {
        display: flex !important;
        align-items: baseline !important;
        gap: 5px !important;
    }
    
    .time-unit span {
        font-size: 2rem;
    }

    /* CTA Discount Mobile */
    .cta-discount {
        padding: 30px 0;
    }

    .cta-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .price-container {
        flex-direction: column;
        gap: 15px;
    }

    .new-price .price-value {
        font-size: 1.8rem;
    }

    .old-price .price-value {
        font-size: 1.3rem;
    }

    .countdown-timer {
        padding: 12px 20px;
        max-width: 180px;
    }

    .timer-number {
        font-size: 1.5rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 14px 25px;
        width: 90%;
        max-width: 300px;
    }
}

/* Botão Flutuante Mobile */
.floating-button-mobile {
    display: none; /* Oculto por padrão */
}

/* Mostrar apenas no mobile */
@media (max-width: 767px) {
    .floating-button-mobile {
        display: block;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        color: white;
        border: none;
        padding: 15px 25px;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
        animation: subtle-float 3s ease-in-out infinite;
    }

    .floating-button-mobile:hover {
        transform: translateX(-50%) translateY(-3px);
        box-shadow: 0 6px 25px rgba(231, 76, 60, 0.6);
    }

    .floating-button-mobile:active {
        transform: translateX(-50%) translateY(-1px);
    }
}

/* Animação de pulso vermelho */
@keyframes pulse-red {
    0% {
        box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(231, 76, 60, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    }

    .cta-guarantee {
        font-size: 0.9rem;
    }
}

/* Animação sutil de flutuação */
@keyframes subtle-float {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
        box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    }
    50% {
        transform: translateX(-50%) translateY(-3px);
        box-shadow: 0 6px 22px rgba(231, 76, 60, 0.5);
    }
}