/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 900;
    color: #2d5a27;
}

.plus {
    color: #ff6b35;
}

.tagline {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.btn-header {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.highlight {
    color: #ff6b35;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #2d5a27;
}

.stat-text {
    font-size: 0.9rem;
    color: #666;
}

.hero-features {
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.check {
    background: #2d5a27;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.9rem;
    font-weight: bold;
}

.hero-cta {
    text-align: left;
}

.btn-primary {
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.4);
}

.btn-primary.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.btn-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.guarantee-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    color: #2d5a27;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Social Proof */
.social-proof {
    background: #2d5a27;
    color: white;
    padding: 3rem 0;
}

.proof-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.proof-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.proof-text p {
    opacity: 0.9;
}

.proof-numbers {
    display: flex;
    gap: 2rem;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
}

.proof-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.problem-item p {
    color: #666;
    line-height: 1.6;
}

.problem-solution {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
    color: white;
    border-radius: 20px;
}

.problem-solution h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: white;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    text-align: center;
}

.solution-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.benefit-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #666;
    line-height: 1.6;
}

.solution-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Modules Section */
.modules {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.module-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.module-card.bonus {
    border: 3px solid #ff6b35;
    transform: scale(1.02);
}

.module-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.module-header {
    text-align: center;
    margin-bottom: 2rem;
}

.module-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.module-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.module-value {
    background: #e8f5e8;
    color: #2d5a27;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    display: inline-block;
}

.module-content ul {
    list-style: none;
}

.module-content li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

.module-content li:last-child {
    border-bottom: none;
}

.total-value {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-breakdown h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.value-items span {
    color: #666;
}

.total-line {
    padding-top: 1rem;
    border-top: 2px solid #e0e0e0;
    font-size: 1.3rem;
    color: #2d5a27;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

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

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-info h4 {
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 0.25rem;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.result {
    background: #ff6b35;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* Before/After */
.before-after {
    padding: 80px 0;
    background: #f8f9fa;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.result-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.result-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.result-info {
    padding: 1.5rem;
    text-align: center;
}

.result-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 0.5rem;
}

.result-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.result-quote {
    font-style: italic;
    color: #ff6b35;
    font-weight: 500;
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
    color: white;
}

.offer-header {
    text-align: center;
    margin-bottom: 3rem;
}

.offer-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.offer-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.offer-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    color: #333;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.offer-title {
    text-align: center;
    margin-bottom: 2rem;
}

.offer-title h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.offer-title p {
    color: #666;
    font-size: 1.1rem;
}

.offer-includes {
    margin-bottom: 3rem;
}

.offer-includes h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d5a27;
    text-align: center;
}

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

.include-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.include-item .check {
    background: #2d5a27;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.offer-pricing {
    text-align: center;
    margin-bottom: 2rem;
}

.price-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.original-price {
    text-align: center;
}

.original-price .price-label {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.original-price .price-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #999;
    text-decoration: line-through;
}

.discount-arrow {
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.final-price {
    text-align: center;
}

.final-price .price-label {
    display: block;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.final-price .price-value {
    font-size: 3rem;
    font-weight: 900;
    color: #2d5a27;
    display: block;
}

.price-installment {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

.offer-urgency {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff3f0;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
}

.urgency-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

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

.timer-text {
    font-weight: 600;
    color: #ff6b35;
}

.urgency-text {
    color: #666;
    font-style: italic;
}

.offer-cta {
    text-align: center;
}

.btn-buy {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.btn-main {
    font-size: 1.3rem;
    font-weight: 700;
}

.btn-sub {
    font-size: 1rem;
    opacity: 0.9;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.security-badge {
    background: #e8f5e8;
    color: #2d5a27;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Guarantee */
.guarantee {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.guarantee-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    font-size: 4rem;
}

.badge-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guarantee-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guarantee-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    background: #2d5a27;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2d5a27;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #2d5a27;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
}

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

.final-price {
    margin-bottom: 2rem;
}

.price-text {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.final-price .price-value {
    font-size: 3.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
}

.price-detail {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

.pulse {
    animation: pulse 2s infinite;
}

.final-guarantee {
    margin-top: 1.5rem;
}

.final-guarantee p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.footer-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.6;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: slideInRight 0.5s ease;
}

.floating-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.floating-price {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .proof-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .proof-numbers {
        justify-content: center;
        gap: 1rem;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-cta {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .btn-primary.large {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .offer-card {
        padding: 2rem 1.5rem;
    }
    
    .final-price .price-value {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}