:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --dark-color: #2d3436;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 15px 35px rgba(0,0,0,0.1);
    --accent-color: #ffeaa7;
}




:root {
    /* Cores principais */
    --color-primary: #FF6B6B;
    --color-secondary: #4ECDC4;
    --color-accent: #FFE66D;
    --color-purple: #6C5CE7;
    
    /* Cores de texto */
    --color-text: #2D3436;
    --color-text-light: #636E72;
    --color-white: #FFFFFF;
    --color-background: #FAFAFA;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Bordas */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.top-badge {
    background: var(--accent-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.main-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.main-title span {
    color: var(--primary-color);
}

.sub-title {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 35px;
}

.cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 18px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
    transition: 0.3s;
}

.btn-secondary {
    background: white;
    color: var(--dark-color);
    padding: 18px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--dark-color);
    transition: 0.3s;
}

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

.hero-image img {
    width: 100%;
    max-width: 900px;
    display: block;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    object-fit: contain;
}

/* Challenges Section */
.challenges {
    padding: 80px 0;
    background: var(--white);
}

.challenges-list {
    max-width: 700px;
    margin: 0 auto;
}

.challenge-item {
    padding: 15px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.challenge-item i {
    color: #ff7675;
}

.highlight-check {
    background: #e3fcef;
    border-radius: 10px;
    font-weight: 700;
    color: #00b894;
}

.highlight-check i {
    color: #00b894;
}

/* Kit Content */
.kit-content {
    padding: 100px 0;
    background: var(--light-bg);
}

/* Problem Section: image + text 50/50 */
.problem-section {
    padding: 80px 0;
    background: var(--white);
}

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

.problem-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.problem-content {
    padding: 0 10px;
}

/* Align check icon and text on same line */
.problem-list .problem-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.problem-list .problem-item p {
    margin: 0;
}

.check-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex: 0 0 36px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.kit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.kit-card:hover {
    transform: translateY(-10px);
}

.kit-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Product image inside kit cards */
.kit-card .product-img,
.bonus-card .product-img,
.problem-image img {
    display: block;
    width: 100%;
    
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 12px;
    margin-bottom: 18px;
    max-height: none !important;
}

.kit-card h3 {
    margin: 10px 0 8px;
    font-size: 1.25rem;
}

.kit-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Bonus Section */
.bonus {
    padding: 100px 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: white;
    color: var(--dark-color);
    padding: 24px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
}

.bonus-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary-color);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.8rem;
}

/* Bonus product image */
.bonus-card .product-img {
    width: 100%;
    height: 180px;
    max-height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    margin-bottom: 14px;
}

.bonus-card h3 {
    margin: 8px 0 6px;
    font-size: 1.1rem;
}

.bonus-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f0f9ff;
}

.pricing-card {
    max-width: 550px;
    margin: 0 auto;
    background: white;
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow);
}

.price-container {
    margin: 30px 0;
}

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

.current-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.currency { font-size: 1.5rem; margin-right: 5px; }
.cents { font-size: 1.5rem; }

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    display: inline-block;
}

.pricing-features li {
    margin-bottom: 10px;
    font-weight: 500;
}

.pricing-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.btn-buy {
    display: block;
    background: #00b894;
    color: white;
    padding: 22px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.secure-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.85rem;
    color: #636e72;
}

/* Animations */
.pulse {
    animation: pulse 2s infinite;
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .cta-group { justify-content: center; }
    .main-title { font-size: 2.8rem; }
    .hero-image img { width: 90%; max-width: none; }
}

@media (max-width: 600px) {
    .kit-card .product-img,
    .bonus-card .product-img,
    .problem-image img {
        height: 140px !important;
        max-height: none !important;
    }
}

@media (max-width: 992px) {
    .problem-grid { grid-template-columns: 1fr; text-align: center; }
    .problem-image img { width: 90%; margin: 0 auto 20px; }
    .problem-content { padding: 0 10px; }
}

/* Footer improvements and global font standardization */
html, body {
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p, a, span, li {
    font-family: inherit;
}

.footer-divider {
    background: #f2f2f2;
    padding: 30px 0;
}

.footer-divider .divider-content {
    text-align: center;
    color: var(--dark-color);
    font-size: 1rem;
}

.footer-divider .divider-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

footer {
    background: #ffffff;
    padding: 30px 0 50px;
    color: var(--dark-color);
}

footer .footer-links a {
    color: var(--dark-color);
    text-decoration: none;
    margin: 0 6px;
    opacity: 0.9;
}

footer .footer-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Usage tip highlighted card */
.usage-tip {
    padding: 60px 0;
    background: transparent;
}

.usage-tip .tip-box {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(90deg, rgba(255,234,167,0.15) 0%, rgba(78,204,196,0.06) 100%);
    border-left: 6px solid var(--primary-color);
    padding: 28px 26px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(45,52,54,0.06);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    text-align: left;
}

.usage-tip .tip-box h3 {
    font-size: 1.25rem;
    margin: 0 0 6px;
}

.usage-tip .tip-box p {
    margin: 0;
    color: #444;
}

.usage-tip .tip-box i {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 4px;
}

@media (max-width: 720px) {
    .usage-tip .tip-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .usage-tip .tip-box i { margin-top: 0; }
}

.check-icon {
    background: var(--color-primary);
    color: var(--color-white);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.solution-box {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 107, 107, 0.2);
    margin-top: 2rem;
    text-align: center;
}

.solution-box p {
    margin: 0;
}