/* Kit da Turtuguinha - Custom Styles */

:root {
    --primary-color: #8B4513;
    --secondary-color: #DEB887;
    --accent-color: #FF6B35;
    --success-color: #90EE90;
    --background-light: #FFF8F0;
    --background-cream: #F5F2E8;
    --text-dark: #2C1810;
    --text-muted: #6B5B54;
}

* {
    box-sizing: border-box;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Comic Neue', 'Fredoka', cursive;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: 0;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    color: var(--primary-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* Navigation */
.navbar-brand {
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-color) !important;
    border-radius: 20px;
    padding: 8px 16px !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--primary-color);
    color: white !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-cream) 100%);
    padding: 0 0 1.5rem 0;
    margin-top: 0;
}

.hero-row {
    min-height: 100vh;
    padding-top: 56px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Hero image styles */
.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

.hero-product-image {
    max-width: 100%;
    height: auto;
    background: transparent;
    transition: transform 0.3s ease;
}

.hero-product-image:hover {
    transform: translateY(-5px) scale(1.02);
}

.hero-image-placeholder {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px dashed var(--secondary-color);
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(135deg, var(--accent-color), #FF8C42);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Pain Points Cards */
.pain-point-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    border: 2px solid var(--background-cream);
}

.pain-point-card:hover {
    transform: translateY(-5px);
}

.pain-icon {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.pain-point-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Story Section */
.story-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.story-headline {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.author-image {
    text-align: center;
    padding: 1.5rem;
}

.lucia-photo {
    width: 100%;
    max-width: 320px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.lucia-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Testimonials */
.testimonials {
    background: var(--background-cream);
    border-radius: 15px;
    padding: 2rem;
}

.testimonial {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--success-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Method Cards */
.method-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    border-left: 4px solid var(--success-color);
}

.method-icon {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pedagogy-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.number {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.result-item {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid var(--success-color);
}

.result-item i {
    color: var(--success-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Final Testimonials */
.final-testimonials .testimonial {
    background: var(--background-light);
    border-left: 4px solid var(--accent-color);
}

/* Activity Examples */
.activity-examples {
    background: var(--background-cream);
    border-radius: 20px;
    padding: 2rem;
}

.activity-preview {
    text-align: center;
}

.activity-image-placeholder {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px dashed var(--secondary-color);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Learning Lists */
.learning-list, .goodbye-list, .hello-list, .unique-features {
    margin: 2rem 0;
}

.learning-item, .goodbye-item, .hello-item, .unique-item {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.learning-item i {
    color: var(--success-color);
    margin-right: 1rem;
}

.goodbye-item i {
    color: var(--accent-color);
    margin-right: 1rem;
}

.hello-item i {
    color: #FF69B4;
    margin-right: 1rem;
}

.unique-item i {
    color: #FFD700;
    margin-right: 1rem;
}

/* Offer Section */
.offer-main {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid var(--success-color);
}

.main-product {
    text-align: center;
}

.offer-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.offer-features {
    text-align: left;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.feature i {
    color: var(--success-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1rem;
}

.feature.special i {
    color: var(--accent-color);
}

.feature-note {
    background: var(--background-light);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    font-style: italic;
    border-left: 4px solid var(--accent-color);
}

.offer-value {
    background: var(--success-color);
    color: white;
    border-radius: 25px;
    padding: 1rem 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 1rem;
}

/* Bonus Items */
.bonus-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.bonus-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--background-cream);
}

.bonus-icon {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bonus-value {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

/* Value Calculation */
.value-calculation {
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    padding: 2rem;
}

.value-calculation h3 {
    color: white;
    font-size: 2.5rem;
}

.effort-calculation {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.effort-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.effort-item {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.effort-total, .effort-cost {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Final Offer */
.final-offer {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid var(--accent-color);
}

.price-options {
    margin: 2rem 0;
}

.price-installment {
    background: var(--accent-color);
    color: white;
    border-radius: 15px;
    padding: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-cash {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Purchase Form */
.purchase-form {
    background: var(--background-light);
    border-radius: 15px;
    padding: 2rem;
}

.form-control {
    border-radius: 25px;
    border: 2px solid var(--background-cream);
    padding: 15px 20px;
    font-size: 1.1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(139, 69, 19, 0.2);
}

/* Mobile-First Responsive Design */
@media (max-width: 992px) {
    body {
        padding-top: 0;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        display: block;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        text-align: center;
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .pain-point-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .pain-point-card h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .story-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .story-headline {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .method-card, .pedagogy-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .bonus-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bonus-item {
        padding: 1.5rem;
    }
    
    .offer-main {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .purchase-form {
        padding: 1.5rem;
    }
    
    .form-control {
        font-size: 1rem;
        padding: 12px 18px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .hero-section {
        padding: 0 0 1rem 0;
        margin-top: 0;
    }
    
    .hero-row {
        min-height: 100vh;
        padding-top: 56px;
    }
    
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.2;
        padding: 0 0.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
        padding: 0 0.5rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-image-container {
        margin: 0.5rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 0.5rem;
        text-align: center;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 16px 25px;
        border-radius: 30px;
    }
    
    .pain-point-card {
        padding: 1.2rem;
        text-align: center;
    }
    
    .pain-point-card h3 {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .pain-point-card p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .story-section {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .story-headline {
        font-size: 1.2rem;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .story-text {
        font-size: 1rem;
        line-height: 1.5;
        text-align: left;
    }
    
    .author-image-placeholder {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonials {
        padding: 1.2rem;
    }
    
    .testimonial {
        padding: 1rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .method-card, .pedagogy-card {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .method-card h4, .pedagogy-card h4 {
        font-size: 1.1rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .method-card p, .pedagogy-card p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .result-item {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .activity-examples {
        padding: 1.2rem;
    }
    
    .activity-image-placeholder {
        height: 150px;
        padding: 1rem;
    }
    
    .activity-image-placeholder i {
        font-size: 2rem !important;
    }
    
    .activity-image-placeholder p {
        font-size: 0.85rem;
    }
    
    .learning-list, .goodbye-list, .hello-list, .unique-features {
        margin: 1.5rem 0;
    }
    
    .learning-item, .goodbye-item, .hello-item, .unique-item {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        line-height: 1.3;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .learning-item i, .goodbye-item i, .hello-item i, .unique-item i {
        margin-right: 0.8rem;
        margin-top: 0.1rem;
        flex-shrink: 0;
    }
    
    .offer-main {
        padding: 1.2rem;
    }
    
    .offer-icon {
        font-size: 2.5rem;
    }
    
    .bonus-item {
        padding: 1.2rem;
    }
    
    .bonus-icon {
        font-size: 1.8rem;
    }
    
    .bonus-item h4 {
        font-size: 1.1rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .feature {
        padding: 0.3rem 0;
        font-size: 0.95rem;
        line-height: 1.3;
        align-items: flex-start;
    }
    
    .feature i {
        margin-top: 0.1rem;
        flex-shrink: 0;
    }
    
    .feature-note {
        padding: 0.8rem;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .offer-value, .bonus-value {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        margin-top: 1rem;
        border-radius: 20px;
    }
    
    .value-calculation {
        padding: 1.5rem;
    }
    
    .value-calculation h3 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .effort-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .effort-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .final-offer {
        padding: 1.2rem;
    }
    
    .price-installment {
        font-size: 1.6rem;
        padding: 1.2rem;
        line-height: 1.2;
        text-align: center;
    }
    
    .price-cash {
        font-size: 1.3rem;
        text-align: center;
        display: block;
        margin-top: 0.5rem;
    }
    
    .purchase-form {
        padding: 1.2rem;
    }
    
    .form-control {
        font-size: 1rem;
        padding: 12px 18px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        padding: 0 0.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.3;
        padding: 0 0.3rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
        padding: 0 0.3rem;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 14px 20px;
        border-radius: 25px;
    }
    
    .pain-point-card {
        padding: 1rem;
    }
    
    .pain-point-card h3 {
        font-size: 1rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .pain-point-card p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .story-section {
        padding: 1rem;
    }
    
    .story-headline {
        font-size: 1.1rem;
        line-height: 1.1;
    }
    
    .story-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .testimonial {
        padding: 0.8rem;
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .method-card, .pedagogy-card {
        padding: 1rem;
    }
    
    .method-card h4, .pedagogy-card h4 {
        font-size: 1rem;
        line-height: 1.1;
    }
    
    .method-card p, .pedagogy-card p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .result-item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .activity-image-placeholder {
        height: 120px;
        padding: 0.8rem;
    }
    
    .activity-image-placeholder i {
        font-size: 1.5rem !important;
    }
    
    .activity-image-placeholder p {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .learning-item, .goodbye-item, .hello-item, .unique-item {
        padding: 0.6rem;
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .offer-main, .bonus-item, .final-offer {
        padding: 1rem;
    }
    
    .offer-icon {
        font-size: 2rem;
    }
    
    .bonus-icon {
        font-size: 1.5rem;
    }
    
    .bonus-item h4 {
        font-size: 1rem;
        line-height: 1.1;
    }
    
    .feature {
        font-size: 0.9rem;
        line-height: 1.2;
        padding: 0.2rem 0;
    }
    
    .feature-note {
        padding: 0.6rem;
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .offer-value, .bonus-value {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .value-calculation {
        padding: 1.2rem;
    }
    
    .value-calculation h3 {
        font-size: 1.7rem;
    }
    
    .effort-item {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .price-installment {
        font-size: 1.4rem;
        padding: 1rem;
    }
    
    .price-cash {
        font-size: 1.1rem;
    }
    
    .purchase-form {
        padding: 1rem;
    }
    
    .form-control {
        font-size: 0.95rem;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.05;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.25;
    }
    
    .section-title {
        font-size: 1.4rem;
        line-height: 1.15;
    }
    
    .pain-point-card h3 {
        font-size: 0.95rem;
    }
    
    .story-headline {
        font-size: 1rem;
    }
    
    .price-installment {
        font-size: 1.2rem;
        padding: 0.8rem;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 400px) {
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.05;
        padding: 0 0.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.2;
        padding: 0 0.2rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        line-height: 1.1;
        padding: 0 0.2rem;
    }
    
    .cta-button {
        font-size: 0.9rem;
        padding: 12px 18px;
        border-radius: 20px;
    }
    
    .pain-point-card, .story-section, .method-card, .pedagogy-card {
        padding: 0.8rem;
    }
    
    .offer-main, .bonus-item, .final-offer, .purchase-form {
        padding: 0.8rem;
    }
    
    .price-installment {
        font-size: 1.1rem;
        padding: 0.6rem;
    }
    
    .form-control {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

/* Image Responsive Styles */
.activity-image-placeholder img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .activity-image-placeholder img {
        max-height: 150px;
    }
}

@media (max-width: 576px) {
    .activity-image-placeholder img {
        max-height: 120px;
    }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    .cta-button, .btn {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    .nav-link {
        padding: 12px 16px !important;
        margin: 4px 0;
    }
    
    .form-control {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    /* Improve button spacing */
    .btn + .btn {
        margin-top: 0.5rem;
    }
    
    /* Better tap targets */
    .testimonial, .pain-point-card, .method-card {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    }
    
    /* Prevent zoom on input focus for iOS */
    input[type="text"], input[type="email"], input[type="tel"] {
        font-size: 16px;
    }
}

/* Photo Placeholder Styles */
.photo-placeholder {
    margin: 2rem 0;
}

.photo-frame {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 3px dashed var(--secondary-color);
    transition: all 0.3s ease;
}

.photo-frame:hover {
    border-color: var(--accent-color);
    background-color: var(--background-light);
}

/* Main Product Image Styles */
.product-main-image {
    margin: 2rem 0;
}

.main-image-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.main-product-image {
    max-width: 100%;
    height: auto;
    background: transparent;
    transition: transform 0.3s ease;
}

.main-product-image:hover {
    transform: translateY(-5px) scale(1.02);
}

.main-image-frame {
    background: white;
    border-radius: 20px;
    padding: 4rem 2rem;
    border: 3px dashed var(--secondary-color);
    max-width: 400px;
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.main-image-frame:hover {
    border-color: var(--accent-color);
    background-color: var(--background-light);
}

/* Product Description Styles */
.product-subheadline {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

.product-promise-section {
    max-width: 700px;
    margin: 0 auto;
}

.product-promise {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

/* Guarantee Section Styles */
.guarantee-section {
    padding: 2rem;
}

.guarantee-badge {
    display: inline-block;
}

.guarantee-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.guarantee-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
}

.guarantee-detailed {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-highlights {
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.highlight-icon {
    margin-right: 1rem;
    font-size: 1.5rem;
}

/* Testimonial Cards Styles */
.testimonials-grid {
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    border-left: 5px solid;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card.blue {
    border-left-color: #4A90E2;
}

.testimonial-card.purple {
    border-left-color: #8E44AD;
}

.testimonial-card.green {
    border-left-color: #27AE60;
}

.testimonial-card.yellow {
    border-left-color: #F39C12;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.5rem;
}

.testimonial-avatar.blue-bg {
    background-color: #4A90E2;
}

.testimonial-avatar.purple-bg {
    background-color: #8E44AD;
}

.testimonial-avatar.green-bg {
    background-color: #27AE60;
}

.testimonial-avatar.yellow-bg {
    background-color: #F39C12;
}

.testimonial-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.testimonial-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    font-style: italic;
}

/* FAQ Section Styles */
.faq-section {
    margin-top: 2rem;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Fredoka', cursive;
}

.accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.25);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Purchase Section Styles */
.purchase-section {
    margin: 2rem 0;
}

/* New Offer Section Styles */
.offer-headline {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.offer-subheadline {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2rem;
}

.product-image-container {
    margin: 2rem 0;
}

.product-image-frame {
    background: white;
    border-radius: 20px;
    padding: 4rem 2rem;
    border: 3px dashed var(--secondary-color);
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.product-image-frame:hover {
    border-color: var(--accent-color);
    background-color: var(--background-light);
}

.offer-items-list h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.item-price-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.item-price-card.bonus {
    border-left-color: var(--accent-color);
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.item-price-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.item-info {
    display: flex;
    align-items: center;
    flex: 1;
}

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

.item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-value {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-breakdown {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 600;
}

.total-label {
    color: var(--text-dark);
}

.original-price {
    color: #dc3545;
    text-decoration: line-through;
    position: relative;
}

.discount-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

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

.final-pricing {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    padding: 3rem 2rem;
    color: white;
    max-width: 500px;
    margin: 0 auto;
}

.price-card {
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.price-text {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cash-text {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.cta-button-main {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border: none;
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
    transition: all 0.3s ease;
    min-height: 60px;
}

.cta-button-main:hover {
    background: linear-gradient(135deg, #F7931E, #FF6B35);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,107,53,0.5);
    color: white;
}

/* Mobile optimizations for new sections */
@media (max-width: 768px) {
    .photo-frame {
        padding: 2rem 1rem;
    }
    
    .main-image-container {
        max-width: 400px;
    }
    
    .hero-image-container {
        max-width: 400px;
        margin: 1.5rem auto;
    }
    
    .main-image-frame {
        width: 300px;
        height: 300px;
        padding: 3rem 1.5rem;
    }
    
    .product-subheadline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .product-promise {
        font-size: 1rem;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .offer-headline {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .offer-subheadline {
        font-size: 1.1rem;
    }
    
    .product-image-frame {
        padding: 2.5rem 1.5rem;
    }
    
    .item-price-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .item-info {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .item-name {
        font-size: 1rem;
        text-align: center;
    }
    
    .price-breakdown {
        padding: 1.5rem;
    }
    
    .total-line {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .discount-badge {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .final-pricing {
        padding: 2rem 1.5rem;
    }
    
    .price-text {
        font-size: 1.6rem;
    }
    
    .cash-text {
        font-size: 1.1rem;
    }
    
    .cta-button-main {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }
    
    .guarantee-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .guarantee-item h4 {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .guarantee-highlights {
        margin-top: 2rem;
    }
    
    .highlight-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .photo-frame {
        padding: 1.5rem 0.8rem;
    }
    
    .main-image-container {
        max-width: 350px;
    }
    
    .hero-image-container {
        max-width: 350px;
        margin: 1rem auto;
    }
    
    .main-image-frame {
        width: 250px;
        height: 250px;
        padding: 2.5rem 1rem;
    }
    
    .product-subheadline {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .product-promise {
        font-size: 0.95rem;
        padding: 1.2rem;
    }
    
    .offer-headline {
        font-size: 1.5rem;
        line-height: 1.05;
    }
    
    .offer-subheadline {
        font-size: 1rem;
    }
    
    .product-image-frame {
        padding: 2rem 1rem;
    }
    
    .offer-items-list h3 {
        font-size: 1.4rem;
    }
    
    .item-price-card {
        padding: 0.8rem;
    }
    
    .item-name {
        font-size: 0.9rem;
    }
    
    .item-price {
        font-size: 1rem;
    }
    
    .price-breakdown {
        padding: 1rem;
    }
    
    .total-line {
        font-size: 1.1rem;
    }
    
    .discount-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .final-pricing {
        padding: 1.5rem 1rem;
    }
    
    .price-text {
        font-size: 1.4rem;
    }
    
    .cash-text {
        font-size: 1rem;
    }
    
    .cta-button-main {
        font-size: 1.1rem;
        padding: 0.9rem 1.2rem;
    }
    
    .guarantee-item {
        padding: 0.8rem;
    }
    
    .guarantee-item h4 {
        font-size: 0.95rem;
        line-height: 1.2;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .testimonial-info h4 {
        font-size: 1.1rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .accordion-button {
        padding: 0.8rem;
        font-size: 0.95rem;
        line-height: 1.2;
    }
    
    .accordion-body {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .highlight-item {
        padding: 0.8rem;
    }
}

@media (max-width: 400px) {
    .photo-frame {
        padding: 1rem 0.5rem;
    }
    
    .main-image-container {
        max-width: 300px;
    }
    
    .hero-image-container {
        max-width: 300px;
        margin: 1rem auto;
    }
    
    .main-image-frame {
        width: 200px;
        height: 200px;
        padding: 2rem 0.8rem;
    }
    
    .product-subheadline {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        line-height: 1.3;
    }
    
    .product-promise {
        font-size: 0.9rem;
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .offer-headline {
        font-size: 1.3rem;
        padding: 0 0.5rem;
    }
    
    .offer-subheadline {
        font-size: 0.95rem;
    }
    
    .product-image-frame {
        padding: 1.5rem 0.8rem;
    }
    
    .offer-items-list h3 {
        font-size: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .item-price-card {
        padding: 0.7rem;
        margin-bottom: 0.8rem;
    }
    
    .item-name {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .price-breakdown {
        padding: 0.8rem;
        margin: 0 0.5rem;
    }
    
    .discount-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .final-pricing {
        padding: 1.2rem 0.8rem;
        margin: 0 0.5rem;
    }
    
    .price-text {
        font-size: 1.2rem;
    }
    
    .cta-button-main {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    
    .guarantee-item, .testimonial-card {
        padding: 0.8rem;
    }
    
    .accordion-button {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
}

/* Global overflow and layout fixes */
.container, .container-fluid {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: 0;
    margin-right: 0;     
    width: 100%;
    max-width: 100%;
}

.row > * {
    padding-left: 12px;
    padding-right: 12px;
}

/* Prevent any element from causing horizontal overflow */
section {
    width: 100%;
    max-width: 100%;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Fix any potential grid issues in offer section */
.offer-items-list .row {
    justify-content: center;
}

.offer-items-list .col-lg-6 {
    max-width: 100%;
}

/* Additional centering for main sections */
.hero-section, 
#produto, 
#oferta, 
#garantia, 
#depoimentos, 
#faq {
    width: 100%;
    max-width: 100%;
}

/* Responsive adjustments for Bootstrap columns */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .row > * {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 540px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .row > * {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 400px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .row > * {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.cta-button:hover {
    animation: bounce 1s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* New Offer Section Styles */
.offer-main-image {
    margin: 2rem 0;
}

.offer-image-container {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-product-image {
    max-width: 100%;
    height: auto;
    background: transparent;
    transition: transform 0.3s ease;
}

.offer-product-image:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Kit Principal */
.offer-item.main-kit {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-color);
}

.offer-item-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.benefits-list {
    margin: 1.5rem 0;
}

.benefit-item {
    margin: 0.8rem 0;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
}

.kit-description {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    font-style: italic;
    color: var(--text-muted);
    margin: 1rem 0;
}

.item-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: right;
}

/* Bônus Items */
.bonus-items {
    margin: 3rem 0;
}

.bonus-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--accent-color);
}

.bonus-item:hover {
    transform: translateY(-5px);
}

.bonus-image-placeholder {
    text-align: center;
    color: var(--secondary-color);
}

.bonus-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.bonus-benefits {
    margin: 1rem 0;
}

/* Valor Total */
.total-value-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 3rem auto;
}

.total-value-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.total-amount {
    color: var(--accent-color);
    font-size: 2rem;
}

/* DIY Section */
.diy-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.diy-section h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.time-cost-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.time-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0.5rem 0;
}

.time-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.total-time {
    background: #fff3cd;
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.time-summary, .cost-summary {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: var(--text-dark);
}

/* Special Offer Section */
.special-offer-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.offer-headline {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.offer-subheadline {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
}

.offer-summary {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offer-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0.8rem 0;
    font-size: 1rem;
    color: var(--text-dark);
    padding: 0.3rem 0;
    position: relative;
}

.item-description {
    flex: 1;
    text-align: left;
    padding-right: 1rem;
    position: relative;
}

.item-description::after {
    content: "................................................................................................................................................................................................";
    position: absolute;
    right: 0;
    bottom: 0;
    color: #ccc;
    overflow: hidden;
    white-space: no-wrap;
    width: calc(100% - 20px);
    z-index: 1;
    text-align: right;
    letter-spacing: 2px;
}

.item-price {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
    background: #f8f9fa;
    padding-left: 0.5rem;
    z-index: 2;
    position: relative;
    flex-shrink: 0;
}

.total-summary {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    border-top: 2px solid var(--secondary-color);
    padding-top: 1rem;
}

.final-price-section {
    margin: 2rem 0;
}

.final-price-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.price-options {
    max-width: 400px;
    margin: 0 auto;
}

.price-text-highlight {
    color: var(--accent-color);
    padding: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    background: rgba(255, 107, 53, 0.1);
}

.cash-option {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    text-align: center;
}

/* Main CTA Button */
.main-cta-button {
    background: linear-gradient(135deg, var(--accent-color), #FF8C42);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    border: 3px solid transparent;
}

.main-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
    border-color: var(--primary-color);
}

/* Guarantee Section in Offer */
.guarantee-section {
    background: #f0f8f0;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
}

.guarantee-content h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guarantee-content p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Responsive adjustments for new offer section */
@media (max-width: 768px) {
    .offer-item-content h3 {
        font-size: 1.3rem;
    }
    
    .bonus-item h4 {
        font-size: 1.1rem;
    }
    
    .offer-headline {
        font-size: 1.8rem;
        padding: 0 0.5rem;
    }
    
    .offer-subheadline {
        font-size: 1rem;
    }
    
    .final-price-label {
        font-size: 1.3rem;
    }
    
    .price-text-highlight {
        font-size: 1.5rem;
        padding: 0.4rem;
    }
    
    .main-cta-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .total-value-card h3 {
        font-size: 1.5rem;
    }
    
    .total-amount {
        font-size: 1.7rem;
    }
    
    .diy-section h3 {
        font-size: 1.3rem;
    }
    
    .time-amount {
        font-size: 1.5rem;
    }
    
    .offer-main-image {
        margin: 1.5rem 0;
    }
    
    .offer-image-container {
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .offer-item-content h3 {
        font-size: 1.2rem;
    }
    
    .bonus-item h4 {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .offer-headline {
        font-size: 1.5rem;
        padding: 0 0.3rem;
    }
    
    .final-price-label {
        font-size: 1.2rem;
    }
    
    .price-text-highlight {
        font-size: 1.3rem;
        padding: 0.3rem;
    }
    
    .main-cta-button {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
    
    .total-value-card h3 {
        font-size: 1.3rem;
    }
    
    .total-amount {
        font-size: 1.5rem;
    }
    
    .diy-section h3 {
        font-size: 1.2rem;
    }
    
    .time-amount {
        font-size: 1.3rem;
    }
    
    .offer-image-container {
        max-width: 350px;
    }
    
    .bonus-item, .offer-item.main-kit {
        padding: 1.2rem;
    }
    
    .special-offer-section, .diy-section, .total-value-section {
        padding: 1.5rem;
    }
    
    .offer-summary-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }
    
    .item-description::after {
        display: none;
    }
    
    .item-price {
        font-size: 1rem;
        padding-left: 0.3rem;
    }
}

/* Simple Smooth Transitions for Leveza */
.btn, .card, .nav-link, .cta-button {
    transition: all 0.3s ease;
}

/* Subtle hover effects */
.card:hover, .bonus-item:hover, .testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
