/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D4527B;
    --primary-dark: #B23960;
    --secondary-color: #F8B500;
    --text-dark: #2D2D2D;
    --text-light: #666666;
    --bg-light: #FFF5F8;
    --bg-white: #FFFFFF;
    --success: #4CAF50;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

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

/* Banner de Oferta no Topo */
.top-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

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

.banner-text {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.banner-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-timer-label {
    font-size: 0.9rem;
    font-weight: 600;
}

.banner-countdown {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Placeholders de Imagem */
.placeholder-image {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    margin: 0 auto;
}

.placeholder-image.circular {
    border-radius: 50%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #FFF 100%);
    padding: 40px 0 60px;
    text-align: center;
}

.logo {
    margin-bottom: 30px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-image {
    margin: 40px auto;
    max-width: 600px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* CTA Box */
.cta-box {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

/* Hero Price Display */
.hero-price-display {
    text-align: center;
    margin-bottom: 30px;
}

.hero-price-label {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-price-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

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

.hero-current-price {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(212, 82, 123, 0.2);
}

.price-section {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.price-option {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #E0E0E0;
    transition: all 0.3s ease;
}

.price-option.recommended {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-light) 0%, #FFF 100%);
    position: relative;
    transform: scale(1.05);
}

.price-option .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: #FFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.price-option .label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

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

.price-option .price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-option .economy {
    display: block;
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 600;
    margin-top: 8px;
}

.price-divider {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Botões CTA */
.cta-button,
.cta-button-secondary,
.cta-button-large {
    width: 100%;
    padding: 20px 40px;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button,
.cta-button-large {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    margin-bottom: 15px;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(76, 175, 80, 0.8), 0 0 30px rgba(76, 175, 80, 0.3);
    }
}

.cta-button:hover,
.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(76, 175, 80, 0.6);
    animation: none;
}

.cta-button-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 0.95rem;
    padding: 16px 30px;
    font-weight: 600;
    max-width: 450px;
    margin: 0 auto;
    display: block;
}

.cta-button-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.guarantee {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.guarantee span {
    font-size: 0.9rem;
    color: var(--success);
    font-weight: 600;
}

/* Social Proof */
.social-proof {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.95;
}

/* Seções Gerais */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.section-title.white {
    color: white;
}

/* Produtos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.product-card.featured {
    border: 3px solid var(--secondary-color);
    position: relative;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 10;
}

.product-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-value {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 600;
    text-decoration: line-through;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.product-description {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Para Quem É */
.for-who {
    background: var(--bg-light);
}

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

.audience-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.audience-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.audience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Benefícios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Depoimentos */
.testimonials {
    background: var(--bg-light);
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.stars {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
}

/* Comparação */
.comparison {
    background: var(--bg-white);
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-column {
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.comparison-column.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: scale(1.05);
}

.comparison-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.comparison-title.negative {
    color: #E53935;
}

.comparison-title.positive {
    color: white;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 12px 0;
    font-size: 1rem;
    line-height: 1.5;
}

.comparison-list li.negative {
    color: var(--text-dark);
}

.comparison-list li.positive {
    color: white;
}

/* Urgência */
.urgency {
    background: linear-gradient(135deg, #FF6B6B 0%, #E53935 100%);
    color: white;
    padding: 50px 0;
}

.urgency-box {
    text-align: center;
}

.urgency-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.urgency-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px 30px;
    border-radius: 10px;
    min-width: 100px;
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.9;
}

/* CTA Final */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
}

.final-offer {
    max-width: 800px;
    margin: 0 auto;
}

.offer-summary {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.offer-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.offer-summary ul {
    list-style: none;
    margin-bottom: 30px;
}

.offer-summary ul li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.final-price {
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.final-old-price {
    display: block;
    text-decoration: line-through;
    font-size: 1.3rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.final-current-price {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.installment {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
}

.payment-methods {
    text-align: center;
    margin-top: 20px;
}

.payment-methods p {
    margin-bottom: 10px;
    font-weight: 600;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 35px 28px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid #f0f0f0;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pricing-card.basic {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
    border: 3px solid var(--success);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.25);
}

.pricing-card.featured:hover {
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.35);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--success) 0%, #45a049 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.4);
}

.pricing-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    margin-top: 10px;
    text-align: center;
}

.pricing-card.featured .pricing-title {
    color: var(--success);
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.pricing-price {
    text-align: center;
    padding: 25px 15px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 12px;
}

.pricing-card.featured .pricing-price {
    background: linear-gradient(135deg, #f0fff4 0%, #e8f5e9 100%);
}

.pricing-old-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.pricing-current-price {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 8px 0;
    line-height: 1;
}

.pricing-card.featured .pricing-current-price {
    color: var(--success);
    text-shadow: 0 2px 4px rgba(76, 175, 80, 0.1);
}

.pricing-installment {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card.featured .pricing-features li {
    color: #2d5016;
}

.pricing-card button {
    width: 100%;
    margin-bottom: 12px;
}

.pricing-economy {
    text-align: center;
    color: var(--success);
    font-weight: 700;
    font-size: 1rem;
    background: rgba(76, 175, 80, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-top: 5px;
}

.payment-methods-footer {
    text-align: center;
    margin-top: 30px;
    color: white;
}

.payment-methods-footer p {
    margin: 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* FAQ */
.faq {
    background: var(--bg-light);
}

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

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-dark);
}

/* Responsividade */
@media (max-width: 768px) {
    .banner-content {
        gap: 10px;
        text-align: center;
    }

    .banner-text {
        font-size: 0.95rem;
    }

    .banner-timer {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .price-section {
        flex-direction: column;
    }

    .price-option.recommended {
        transform: scale(1);
    }

    .price-divider {
        display: none;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px auto;
        padding: 0 15px;
    }

    .pricing-card:hover {
        transform: translateY(0);
    }

    .pricing-current-price {
        font-size: 2.8rem !important;
    }

    .pricing-title {
        font-size: 1.4rem !important;
    }

    .pricing-features li {
        font-size: 0.9rem !important;
    }

    .cta-button,
    .cta-button-large {
        font-size: 1rem;
        padding: 18px 30px;
    }

    .stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .products-grid,
    .audience-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }

    .comparison-column.highlight {
        transform: scale(1);
    }

    .countdown {
        flex-wrap: wrap;
    }

    .countdown-item {
        min-width: 80px;
        padding: 15px 20px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .final-current-price {
        font-size: 2.5rem;
    }

    .cta-box {
        padding: 25px;
    }

    .offer-summary {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 50px 0;
    }

    .price-option .price {
        font-size: 2rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Performance - Lazy Loading */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Impressão otimizada */
@media print {
    .cta-button,
    .cta-button-secondary,
    .cta-button-large,
    .modal,
    .urgency {
        display: none;
    }
}