:root {
    --primary-green: #2E7D32;
    --dark-green: #1b5e20;
    --accent-orange: #E65100;
    --accent-yellow: #FBC02D;
    --alert-red: #D32F2F;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f4f7f6;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sobrinhar {
    background-color: #2E7D32;
    color: white;
    padding: 2.5px 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; position: relative;}
body { background-color: var(--bg-light); color: var(--text-dark); }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.header { background: var(--white); padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.header nav a { color: var(--text-dark); margin-left: 20px; font-weight: 500; transition: 0.3s; }
.header .btn-nav { background: var(--primary-green); color: var(--white); padding: 10px 20px; border-radius: 50px; }

.hero { background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%); padding: 60px 0; overflow: hidden; }
.hero-content { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero-text { flex: 1; }
.alert-tag { background: #1B5E20; color: white; padding: 5px 10px; font-size: 0.8rem; font-weight: 800; border-radius: 4px; display: inline-block; margin-bottom: 15px; }
.hero-text h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 15px; color: #000; font-weight: 800; text-transform: uppercase; }
.hero-text .hero-sub { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 30px; line-height: 1.5; }
.btn-cta { display: inline-block; background: linear-gradient(to right, var(--primary-green), #43A047); color: var(--white); padding: 18px 40px; border-radius: 50px; font-weight: 700; font-size: 1.1rem; box-shadow: 0 5px 20px rgba(46, 125, 50, 0.4); transition: transform 0.3s; text-align: center;}
.btn-cta:hover { transform: translateY(-3px); }
.badges { margin-top: 20px; display: flex; gap: 15px; font-size: 0.8rem; color: var(--text-light); }
.badges span { display: flex; align-items: center; gap: 5px; }

.hero-img { flex: 1; position: relative; height: 350px; display: flex; align-items: center; justify-content: center; }
.hero-img .float-item { position: absolute; transition: 0.5s; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15)); }
.p1 { z-index: 2; width: 140px; transform: translateX(-80px) rotate(-10deg); }
.p2 { z-index: 3; width: 160px; transform: translateY(20px); }
.p3 { z-index: 1; width: 130px; transform: translateX(80px) rotate(10deg); }

.video-section-alert { padding: 40px 0; background: #fff; }
.video-showcase.urgent-style { max-width: 800px; margin: 0 auto; border: 2px solid #1B5E20; border-radius: 10px; overflow: hidden; background: #000; }
.news-banner { background: #1B5E20; color: white; padding: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 10px; animation: flash 2s infinite; }
.video-frame video { width: 100%; display: block; aspect-ratio: 16/9; }
.video-caption { background: white; padding: 25px; text-align: center; }
.video-caption h3 { color: var(--text-dark); margin-bottom: 10px; }
.video-caption .btn-buy { margin-top: 20px; width: 95%; text-align: center; }

@keyframes flash { 0%, 100% { opacity: 1; } 50% { opacity: 0.8; } }

.checklist-section { padding: 50px 0; background: var(--bg-light); }
.checklist-box { background: white; padding: 40px; border-radius: 20px; box-shadow: var(--shadow); max-width: 900px; margin: 0 auto; }
.checklist-box h2 { text-align: center; margin-bottom: 30px; color: var(--primary-green); }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; list-style: none; }
.check-grid li { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; font-weight: 500; }
.check-grid li i { color: var(--primary-green); }

.products-section { padding: 60px 0; background: var(--bg-light); }

.products-section h2 { text-align: center; margin-bottom: 50px; color: var(--primary-green); }

.product-card { 
    display: flex; 
    align-items: center; 
    background: var(--white); 
    border-radius: 20px; 
    padding: 40px; 
    margin-bottom: 40px; 
    box-shadow: var(--shadow); 
    gap: 40px; 
    border: 1px solid #eee;
}

.product-card.reverse { flex-direction: row-reverse; }

.p-img { flex: 1; display: flex; justify-content: center; }
.p-img img { max-height: 280px; transition: transform 0.3s; }
.product-card:hover .p-img img { transform: scale(1.05); }

.p-info { flex: 1; }

.tag { 
    padding: 5px 15px; 
    border-radius: 20px; 
    font-size: 0.8rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    color: white; 
    display: inline-block; 
    margin-bottom: 15px; 
}
.tag.green { background: var(--primary-green); }
.tag.orange { background: var(--accent-orange); }
.tag.yellow { background: var(--accent-yellow); color: #333; }

.p-info h3 { font-size: 2rem; margin-bottom: 15px; color: var(--text-dark); }
.p-info p { color: var(--text-light); line-height: 1.6; margin-bottom: 20px; font-size: 1rem; }

.benefits-list { list-style: none; }
.benefits-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.95rem; font-weight: 500; color: #444; }
.benefits-list li i { color: var(--primary-green); font-size: 1.2rem; }

@media (max-width: 768px) {
    .product-card, .product-card.reverse { flex-direction: column; padding: 25px; text-align: center; }
    
    .benefits-list { display: inline-block; text-align: left; margin-top: 15px; }
    
    .p-img img { max-height: 200px; margin-bottom: 20px; }
    .p-info h3 { font-size: 1.5rem; }
}

.transformation-section { padding: 60px 0; background: white; }
.transformation-section h2 { text-align: center; margin-bottom: 40px; font-size: 2.2rem; }
.transformation-grid { display: grid; gap: 30px; }
/* .trans-card { display: flex; gap: 0; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); flex-direction: row; } */
.problem {background: #ffebee; padding: 30px; color: #c62828; }
.solution {background: #e8f5e9; padding: 30px; color: var(--dark-green); }
/*.trans-card h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 1.2rem; } */

.kits-section { padding: 60px 0 100px; background: var(--bg-light); }
.offer-box-header { text-align: center; border: 2px dashed var(--alert-red); padding: 20px; border-radius: 10px; margin-bottom: 40px; background: #fff3e0; }
.offer-box-header h2 { color: var(--alert-red); margin: 0; font-size: 1.8rem; }

.kits-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 30px; 
    align-items: stretch;
}

.kit-card { 
    background: white; 
    border-radius: 15px; 
    padding: 30px 20px; 
    text-align: center; 
    border: 1px solid #eee; 
    transition: 0.3s; 
    position: relative;
    width: 325px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.kit-card.featured { 
    border: 3px solid var(--primary-green); 
    background: #fafffa;
    order: -1;
}

@media(min-width: 900px) { .kit-card.featured { order: 0; transform: scale(1.05); z-index: 10; } }

.best-seller-badge { 
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%); 
    background: var(--primary-green); color: white; padding: 5px 20px; 
    border-radius: 20px; font-weight: 700; font-size: 0.9rem; text-transform: uppercase;
}

.kit-header h3 { font-size: 1.4rem; margin-bottom: 5px; color: var(--text-dark); }
.kit-header p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 15px; height: 40px; }

.kit-thumb {
    position: relative;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 20px;
}

.k-item {
    position: absolute;
    width: 90px;
    transition: 0.3s;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.2));
}

.k-center { 
    z-index: 2; 
    transform: translateX(-68px) rotate(0deg) scale(0.9); 
    bottom: 5px;
    width: 110px;

    /*z-index: 3; 
    width: 100px;
    bottom: 0;*/
}
.k-left { 
    /*z-index: 2; 
    transform: translateX(-60px) rotate(-10deg) scale(0.9); 
    bottom: 5px;*/

    z-index: 3; 
    width: 75px;
    bottom: 19px;
}
.k-right { 
    z-index: 2; 
    transform: translateX(55px) rotate(0deg) scale(0.9); 
    bottom: 10px;
}

.qtd-badge {
    position: absolute;
    top: 0;
    right: 10px;
    background: var(--alert-red);
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 20;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.kit-price .old-price { text-decoration: line-through; color: #999; font-size: 0.9rem; display: block; }
.kit-price .price-box { font-size: 2.2rem; font-weight: 800; color: var(--text-dark); display: flex; justify-content: center; align-items: baseline; gap: 5px; margin: 5px 0; }
.kit-price .currency { font-size: 1rem; color: var(--text-light); font-weight: 500; }
.kit-price .cash-price { font-size: 0.9rem; color: var(--primary-green); font-weight: 700; display: block; margin-bottom: 15px; }

.kit-features { list-style: none; padding: 0; margin-bottom: 20px; border-top: 1px solid #eee; padding-top: 15px; }
.kit-features li { margin-bottom: 5px; color: var(--text-dark); font-size: 0.9rem; font-weight: 600; }
.kit-features li:before { content: '✓'; color: var(--primary-green); margin-right: 5px; font-weight: 800; }

.btn-buy { 
    display: block; 
    background: linear-gradient(to right, var(--primary-green), #43A047); 
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.3);
    color: white; 
    padding: 15px; 
    border-radius: 50px;
    font-weight: 700; 
    text-transform: uppercase;
    margin-top: auto;
    margin-bottom: 13px;
}
.featured .btn-buy { background: linear-gradient(to right, var(--primary-green), #43A047); box-shadow: 0 5px 20px rgba(46, 125, 50, 0.3); }
.btn-buy:hover { transform: translateY(-2px); opacity: 0.9; }

@media (max-width: 768px) {
    .kit-card { width: 100%; max-width: 320px; }
    .kits-grid { flex-direction: column; align-items: center; }
}

.guarantee-section { background: #e8f5e9; padding: 60px 0; text-align: center; }
.guarantee-section h2 { margin: 20px 0 10px; color: var(--primary-green); }
.guarantee-section p { max-width: 700px; margin: 0 auto; color: var(--text-dark); }

.testimonials-section { background: #DAE0DA; padding: 60px 0; text-align: center; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 30px;
    margin-top: 30px; 
}
.testimonial-card { background: var(--bg-light); padding: 20px; border-radius: 10px; }
.testimonial-card .stars { color: var(--accent-yellow); margin-bottom: 10px; }
.testimonial-card .author-info { font-size: 0.9rem; margin-top: 15px; }

.marquee-strip { background-color:  var(--dark-green); color: white; padding: 15px 0; overflow: hidden; margin: 0; width: 100%; border-top: 3px solid #deb887; border-bottom: 3px solid #deb887; }
.marquee-track { display: flex; width: fit-content; animation: scrollText 40s linear infinite; }
.marquee-content { display: flex; align-items: center; white-space: nowrap; flex-shrink: 0; }
.marquee-content span { font-size: 1.2rem; font-weight: 800; margin-left: 40px; }
.marquee-content i { color: white; margin-left: 40px; }
@keyframes scrollText { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.sticky-cta { position: fixed; margin-left: 50px; margin-right: 50px; margin-bottom: 15px; bottom: 20px; left: 20px; right: 20px; background: linear-gradient(to right, var(--primary-green), #43A047); color: white; text-align: center; padding: 18px; border-radius: 50px; font-weight: 700; box-shadow: 0 5px 20px rgba(255, 109, 0, 0.4); z-index: 999; display: none; animation: pulse 2s infinite; }

.pulse {
    display: inline-block;
    
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-btn.pulse {
    display: flex;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7);
    }
    
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 15px rgba(46, 125, 50, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0);
    }
}

.footer { text-align: center; padding: 40px; background: #222; color: #888; }
.secure-footer { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 10px; color: #4CAF50; }

@media (max-width: 1120px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-img { height: 300px; width: 100%; margin-top: 20px; }
}

@media (max-width: 768px) {
    .trans-card { flex-direction: column; }
    .check-grid { grid-template-columns: 1fr; }
    .sticky-cta { display: block; }
    .footer { padding-bottom: 100px; }
    .kit-card.featured { transform: scale(1); padding-top: 30px; }
}

.faq-section { padding: 60px 0; }
.faq-item { margin-bottom: 10px; border-bottom: 1px solid #ddd; }
.faq-question { width: 100%; padding: 15px; text-align: left; background: none; border: none; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.3s; padding: 0 15px; }

.hero-scene {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    perspective: 1000px;
    transform: translateY(40px); 
}

.hero-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.25) 0%, rgba(255,255,255,0) 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.base-rock {
    position: absolute;
    bottom: 80px; 
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
    height: 300px;
    margin-right: -25px;
    pointer-events: none; 
}

.products-stage {
    position: absolute;
    bottom: 137px; 
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
    height: 300px;
    pointer-events: none; 
}

.hero-prod {
    position: absolute;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 18px 10px rgba(0,0,0,0.5));
    pointer-events: auto;
}

.p-center {
    width: 180px; 
    left: 50%;
    transform: translateX(-220px) /* rotate(-10deg) */; 
    bottom: 0px;
    z-index: 5;
/*
    width: 190px;
    z-index: 10;
    bottom: 0px; */
}

.p-left {
    /* width: 140px; 
    left: 50%;
    transform: translateX(-155px) rotate(-12deg); 
    bottom: 15px;
    z-index: 5; */

    width: 130px;
    z-index: 10;
    bottom: 15px;
}

.p-right {
    width: 140px; 
    right: 50%;
    transform: translateX(180px) /* rotate(8deg) */; 
    bottom: 13px;
    z-index: 5;
}

/*
.hero-scene:hover .p-center { transform: translateX(-165px) rotate(-15deg);}
.hero-scene:hover .p-left { transform: translateY(-10px) scale(1.02);}
.hero-scene:hover .p-right { transform: translateX(165px) rotate(10deg); }

*/

.leaf-blur {
    position: absolute;
    z-index: 20;
    pointer-events: none;
    filter: blur(3px); 
}

.leaf-1 {
    width: 110px;
    bottom: 0px;
    left: -150px;
    transform: rotate(45deg);
}

.leaf-2 {
    width: 90px;
    top: 0px;
    right: -150px;
    transform: rotate(-30deg) scaleX(-1);
    filter: blur(5px);
}

@media (min-width: 1121px) {
    .mobile-only {
        display: none !important;
    }
}

.hero {
    position: relative;
}

.hero-bg-person {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 1080px;
    height: auto;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.hero-bg-person img {
    width: 100%;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2; 
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

.whatsapp-btn svg {
    width: 35px;
    height: 35px;
    fill: white;
}

@media (max-width: 1120px) {
    .whatsapp-btn {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
}

.pain-points-section {
    padding: 80px 0;
    position: relative;
    /* background: linear-gradient(135deg, #fdc38a, #ffa852); */
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
    /* background: url('assets/img/textura-de-fundo.jpg') center/cover no-repeat; */
    color: white;
    text-align: center;
    overflow: hidden;
}

.pain-bg-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.1);
    z-index: 0;
}
.relative-z { position: relative; z-index: 2; }

.pain-header h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 800;
}
.pain-header .highlight { color: #ffca7a; }
.pain-header p {
    max-width: 700px; margin: 0 auto 50px; color: rgb(0, 0, 0); font-size: 1.1rem;
}

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

.pain-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s;
}
.pain-card:hover { transform: translateY(-5px); }

.pain-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: white;
}

.pain-box img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s;
}
.pain-card:hover .pain-box img { transform: scale(1.1); }

.pain-icon {
    position: absolute;
    bottom: -2px; 
    right: -2px;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 15px 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: -2px -2px 10px rgba(0,0,0,0.1);
}

.pain-icon i {
    color: #1B5E20;
    font-size: 24px;
}

.pain-card p {
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    font-size: 0.9rem;
    background: #1B5E20;
    padding: 5px;
    border-radius: 5px;
}

@media (max-width: 900px) {
    .pain-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .pain-header h2 { font-size: 1.6rem; }
    .pain-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .pain-box { border-radius: 15px; }
}

.pain-leaf {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.leaf-left {
    width: 200px;
    top: -40px;
    left: -80px;
    transform: rotate(110deg) scaleX(-1);
    filter: blur(2px);
}

.leaf-right {
    width: 250px;
    bottom: -80px;
    right: -80px;
    transform: rotate(-85deg);
    filter: blur(1px);
}

@media (max-width: 768px) {
    .leaf-left {
        width: 120px;
        top: 0;
        left: -40px;
    }

    .leaf-right {
        width: 95px;
        bottom: -20px;
        right: -40px;
    }
}

.tx-hero {
    line-height: 1.1;
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
    width: 480px;
    z-index: 10;

    background: #DAE1DB; 
    color: black; 
    padding: 5px 10px;
    border-radius: 24px; 
    display: inline-block;
}

.tx-red {
    position: relative;
    top: -300px;
    right: 210px;

    font-size: 1.3rem;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    width: auto;
    z-index: 10;

    background: var(--alert-red); 
    color: white; 
    padding: 5px 10px;
    border-radius: 4px; 
    display: inline-block;
}

.tx-green {
    position: relative;
    top: -300px;
    right: -230px;

    font-size: 1.3rem;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    width: auto;
    z-index: 10;

    background: var(--primary-green); 
    color: white; 
    padding: 5px 10px;
    border-radius: 4px; 
    display: inline-block;
}

    .transformation-section {
        background: #F4F7F6;
    }
    
.trans-card {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: stretch;
}

.trans-card .problem,
.trans-card .solution {
    flex: 1;
    padding: 20px;
    border-radius: 15px;
}

.trans-img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 1120px) {
    .trans-card {
        flex-direction: column;
        width: 70%;
        margin: 0 auto 40px auto;
    }

    @media (max-width: 480px) {
        .trans-card {
            width: 95%;
        }
    }
}

.video-card {
    padding: 15px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    margin-bottom: 15px;
    line-height: 0;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
}

.video-card .author-info {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 0;
}

.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonial-leaf {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
    width: 180px;
    opacity: 0.8;
}

.leaf-top-left {
    top: -30px;
    left: -60px;
    transform: rotate(180deg) scaleX(-1);
    filter: blur(1px);
}

.leaf-bottom-right {
    bottom: -40px;
    right: -70px;
    transform: rotate(-55deg);
    filter: blur(2px);
}

@media (max-width: 768px) {
    .testimonial-leaf {
        width: 90px;
    }
    .leaf-top-left { top: -10px; left: -30px; }
    .leaf-bottom-right { bottom: -20px; right: -30px; }
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    background: white;
    padding: 15px;
    border-radius: 10px;
    display: inline-flex;
}

.payment-icons img {
    height: 35px;
    width: auto;
    opacity: 1;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.payment-icons img:hover {
    transform: scale(1.1);
}

.footer-divider {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 20px auto;
    width: 80%;
}

.disclaimer {
    font-size: 0.75rem;
    color: #999;
    margin-top: 5px;
    font-style: italic;
}

.secure-footer {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #2E7D32;
    font-weight: 600;
    background: #e8f5e9;
    padding: 5px 15px;
    border-radius: 20px;
}

.secure-footer i {
    font-size: 16px;
}

.dev-credits {
    margin-top: 30px;
    font-size: 0.75rem;
    color: #aaa;
}

.dev-credits a {
    color: #555;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

.dev-credits a:hover {
    color: #E85D04;
    text-decoration: underline;
}