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

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

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

/* Paleta de cores */
:root {
    --primary-blue: #1e3a5f;
    --light-blue: #4a90e2;
    --soft-pink: #ff6b9d;
    --accent-yellow: #ffd93d;
    --success-green: #27ae60;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
}

/* Placeholder para imagens */
.placeholder-img {
    background: linear-gradient(45deg, #e3f2fd, #bbdefb);
    border: 2px dashed var(--light-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
    font-weight: 600;
    min-height: 200px;
    width: 100%;
    object-fit: cover;
}

.placeholder-img::before {
    content: "Imagem do produto";
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    padding: 80px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .highlight {
    color: var(--accent-yellow);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-button {
    background: linear-gradient(45deg, var(--soft-pink), #ff4081);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
    background: linear-gradient(45deg, #ff4081, var(--soft-pink));
}

.hero-badges {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.badge i {
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.hero-image {
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.hero-product-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.hero-product-preview {
    text-align: center;
    margin: 30px 0;
}

.hero-preview-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-preview-image:hover {
    transform: scale(1.02);
}

/* Curiosidade Section */
.curiosidade {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.curiosidade-content {
    max-width: 800px;
    margin: 0 auto;
}

.curiosidade-icon {
    font-size: 4rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.curiosidade h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.curiosidade p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

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

.stat {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--soft-pink);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Como Funciona Section */
.como-funciona {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.steps {
    display: grid;
    gap: 60px;
    margin-bottom: 80px;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}

.step:nth-child(even) {
    grid-template-columns: 1fr auto;
}

.step:nth-child(even) .step-content {
    order: -1;
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--soft-pink), #ff4081);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

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

.step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}



.beneficios {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.beneficios h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

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

.beneficio {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.beneficio i {
    color: var(--success-green);
    font-size: 1.5rem;
}

.beneficio span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Ofertas Especiais Section */
.ofertas-especiais {
    padding: 80px 0;
    background: var(--light-gray);
}

.ofertas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.oferta-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

.oferta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.oferta-card.premium {
    border-color: var(--soft-pink);
    transform: scale(1.05);
}

.oferta-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge-mais-vendido {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--soft-pink), #ff4081);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

.oferta-header h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.preco-oferta {
    margin-bottom: 30px;
}

.preco-antigo {
    display: block;
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.preco-atual {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--soft-pink);
}

.oferta-conteudo h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: left;
}

.lista-beneficios {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.lista-beneficios li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.lista-beneficios li i {
    color: var(--success-green);
    font-size: 1.2rem;
}

.lista-beneficios li.bonus i {
    color: var(--accent-yellow);
}

.lista-beneficios li.bonus {
    font-weight: 600;
    color: var(--soft-pink);
}

.garantias-oferta {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.garantia-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--light-gray);
    padding: 15px;
    border-radius: 15px;
    flex: 1;
    min-width: 120px;
}

.garantia-item i {
    color: var(--success-green);
    font-size: 1.5rem;
}

.garantia-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.btn-oferta {
    background: linear-gradient(45deg, var(--success-green), #2ecc71);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
    width: 100%;
    margin: 20px 0;
}

.btn-oferta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
}

.btn-oferta.premium {
    background: linear-gradient(45deg, var(--soft-pink), #ff4081);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.btn-oferta.premium:hover {
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.estatistica-vendas {
    font-size: 0.9rem;
    color: var(--success-green);
    font-weight: 600;
    margin-top: 15px;
    padding: 10px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 10px;
}

/* Bônus Section */
.bonus {
    padding: 80px 0;
    background: white;
}

.bonus-subtitle {
    color: var(--soft-pink) !important;
    font-weight: 700;
}

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

.bonus-item {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(45deg, var(--soft-pink), #ff4081);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.bonus-item img {
    margin: 20px 0;
    height: 150px;
}

.bonus-item h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.bonus-beneficios {
    margin: 20px 0;
}

.bonus-beneficios .beneficio {
    background: transparent;
    padding: 8px 0;
    box-shadow: none;
    justify-content: flex-start;
}

.bonus-beneficios .beneficio i {
    color: var(--accent-yellow);
}

.bonus-valor {
    display: inline-block;
    background: var(--success-green);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    margin-top: 15px;
}

.bonus-total {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    border-radius: 20px;
}

.bonus-total h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.valor-destaque {
    color: var(--accent-yellow);
    font-size: 2.5rem;
}

.bonus-total p {
    font-size: 1.4rem;
    font-weight: 600;
}

.oferta-destaque {
    background: linear-gradient(45deg, #ff6b9d, #ff4081);
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.3);
    animation: pulse 2s infinite;
}

.oferta-destaque h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Oferta Section */
.oferta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4081 100%);
    color: white;
}

.oferta-box {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.oferta-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.urgencia {
    background: var(--soft-pink);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    animation: pulse 2s infinite;
}

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

.preco-comparison {
    margin: 40px 0;
}

.preco-original {
    margin-bottom: 20px;
}

.preco-original .label {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
}

.preco-original .valor.riscado {
    font-size: 2rem;
    text-decoration: line-through;
    color: #999;
}

.preco-promocional .label {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 30px;
    display: block;
}

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

.opcao-pagamento {
    background: white;
    border: 3px solid #eee;
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.opcao-pagamento.destaque {
    border-color: var(--soft-pink);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}

.opcao-pagamento:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.preco-principal {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.preco-detalhes {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #666;
}

.economia {
    background: var(--success-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.garantias {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.garantia {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.garantia i {
    color: var(--success-green);
    font-size: 1.3rem;
}

.cta-button-main {
    background: linear-gradient(45deg, var(--success-green), #2ecc71);
    color: white;
    border: none;
    padding: 25px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
    margin: 30px 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.cta-button-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.4);
}

.cta-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

.pagamento-seguro {
    margin-top: 30px;
    font-size: 1rem;
    opacity: 0.8;
}

/* Depoimentos Section */
.depoimentos {
    padding: 80px 0;
    background: var(--light-gray);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

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

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

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

.foto-cliente {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.foto-cliente::before {
    content: "👤";
    font-size: 24px;
}

.cliente-info h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.estrelas {
    color: var(--accent-yellow);
}

.depoimento p {
    font-style: italic;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Garantia Section */
.garantia {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.garantia-content {
    max-width: 600px;
    margin: 0 auto;
}

.garantia-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: white;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-yellow);
}

.footer-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    color: var(--accent-yellow);
}

.aviso-legal {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    opacity: 0.8;
}

/* Floating Button */
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-cta {
    background: linear-gradient(45deg, var(--soft-pink), #ff4081);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    animation: bounce 2s infinite;
}

.floating-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.5);
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

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

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #000;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .steps {
        gap: 40px;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .step:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .step:nth-child(even) .step-content {
        order: 0;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin: 0 auto;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .incluso-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .preco-opcoes {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .garantias {
        flex-direction: column;
        gap: 20px;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .garantia-beneficios {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .oferta-box {
        padding: 30px 20px;
    }
    
    .bonus-total {
        padding: 30px 20px;
    }
    
    .floating-cta span {
        display: none;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .cta-button-main {
        padding: 20px 30px;
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .preco-principal {
        font-size: 2.2rem;
    }
    
    .valor-destaque {
        font-size: 2rem;
    }
    
    .oferta-header h2 {
        font-size: 1.8rem;
    }
    
    .bonus-total h3 {
        font-size: 1.5rem;
    }
    
    .bonus-total p {
        font-size: 1.2rem;
    }
}

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

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Print styles */
@media print {
    .floating-button,
    .cta-button,
    .cta-button-main {
        display: none;
    }
}
