* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f97316;
    --secondary-color: #10b981;
    --accent-color: #f97316;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.hero {
    background: var(--white);
    padding: 60px 0 80px;
    text-align: center;
}

.hero-badge {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

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

.hero-badge i {
    margin-right: 0.3rem;
}

.hero-content {
    margin-bottom: 3rem;
}

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

.hero-title-secondary {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-bonus {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--text-color);
    font-weight: 600;
}

.hero-video {
    max-width: 700px;
    margin: 0 auto;
}

.video-placeholder {
    background: var(--text-color);
    border-radius: var(--border-radius);
    padding: 4rem 2rem;
    color: white;
    text-align: center;
}

.video-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.video-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
}

.o-que-recebe {
    padding: 80px 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.feature-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list li {
    padding: 0.4rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.feature-list i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.por-que-escolher {
    padding: 80px 0;
    background: var(--white);
}

.social-proof {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    max-width: 500px;
    margin: 0 auto 3rem;
    border: 2px solid var(--border-color);
    position: relative;
}

.social-proof-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.social-proof-badge i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.social-proof-badge span {
    font-weight: 700;
    color: var(--text-color);
}

.social-proof-badge p {
    margin: 0;
    font-size: 0.9rem;
}

.social-proof-badge strong {
    color: var(--primary-color);
}

.social-proof-badge small {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
}

.social-proof-fire {
    text-align: center;
    margin: 0;
    font-weight: 600;
    color: var(--text-color);
}

.social-proof-fire i {
    color: #f97316;
}

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

.benefit-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 0.8rem;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-color);
}

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

.bonus {
    padding: 80px 0 40px;
    background: white;
}

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

.bonus-header {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.bonus-header i {
    margin-right: 0.3rem;
}

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

.bonus-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.bonus-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.bonus-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bonus-content {
    padding: 2rem;
    text-align: center;
}

.bonus-icon {
    width: 60px;
    height: 60px;
    margin: -50px auto 1rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--accent-color);
    position: relative;
}

.bonus-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.bonus-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.bonus-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.bonus-value {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.9rem;
}

.bonus-total {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    margin: 0 auto;
}

.bonus-total p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.bonus-total-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: line-through;
}

.bonus-total-free {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.oferta {
    padding: 40px 0 80px;
    background: var(--white);
}

.countdown-box {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 550px;
    margin: 0 auto 3rem;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.countdown-box p {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    min-width: 60px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.countdown-label {
    font-size: 0.7rem;
    margin-top: 0.3rem;
    opacity: 0.95;
    font-weight: 600;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.7;
    margin: 0 -0.2rem;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.plano-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.plano-destaque {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.plano-badge {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.plano-pessoas {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plano-nome {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.plano-preco {
    margin-bottom: 2rem;
}

.preco-antigo {
    display: block;
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cifrao {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    vertical-align: top;
}

.valor {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.pagamento-unico {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.plano-beneficios {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plano-beneficios li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.plano-beneficios li i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.plano-beneficios li strong {
    color: var(--text-color);
}

.oferta-seguranca {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.oferta-seguranca i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.depoimentos {
    padding: 40px 0 80px 0;
    background: var(--white);
    text-align: center;
}

.depoimentos-header {
    background: var(--primary-color);
    color: white;
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.depoimento-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.depoimento-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.depoimento-aspas {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.depoimento-texto {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.autor-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.autor-nome {
    font-weight: 700;
    color: var(--text-color);
    font-size: 0.95rem;
}

.autor-cargo {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.sobre-autor {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.autor-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem 4rem 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: visible;
}

.autor-nome-destaque {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.autor-subtitulo {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.autor-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: var(--bg-light);
    padding: 1.2rem 0.8rem;
    border-radius: 12px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-number-big {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    word-wrap: break-word;
    width: 100%;
}

.stat-label-big {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    word-wrap: break-word;
    width: 100%;
    padding: 0 0.3rem;
}

.autor-quote {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 auto 1.5rem;
    padding: 0 1rem;
}

.autor-foto-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    padding-bottom: 1rem;
}

.autor-foto-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.faq {
    padding: 80px 0;
    background: var(--white);
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: left;
    transition: var(--transition);
}

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

.faq-toggle {
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 1.2rem;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-light);
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--text-light);
}

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

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.garantia {
    padding: 60px 0;
    background: var(--white);
}

.garantia-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--secondary-color);
}

.garantia-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.garantia-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.garantia-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.garantia-texto {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.garantia-btn {
    margin-top: 0.5rem;
}

.footer {
    background: var(--text-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .autor-stats-grid {
        gap: 0.8rem;
    }

    .stat-box {
        padding: 1rem 0.6rem;
    }

    .stat-label-big {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .hero-title,
    .hero-title-secondary {
        font-size: 2.5rem;
    }

    .hero-bonus {
        font-size: 1.8rem;
    }

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

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

    .countdown-separator {
        font-size: 1.5rem;
    }

    .valor {
        font-size: 3rem;
    }

    .autor-stats {
        justify-content: center;
    }

    .autor-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .stat-box {
        padding: 1.5rem 1rem;
    }

    .stat-label-big {
        font-size: 0.85rem;
    }

    .cards-grid,
    .cards-grid-3,
    .benefit-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0 60px;
    }

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

    .hero-bonus {
        font-size: 1.5rem;
    }

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

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

    .valor {
        font-size: 2.5rem;
    }

    .plano-card {
        padding: 2rem;
    }
}

/* MODAL SUPER DESCONTO */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.modal-show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 1.2rem;
    max-width: 360px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.modal-overlay.modal-show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #1f2937;
    transform: rotate(90deg);
}

.modal-badge {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    animation: pulse 2s infinite;
}

.modal-badge i {
    margin-right: 0.3rem;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.4rem;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.modal-preco {
    margin: 0.7rem 0;
}

.modal-cifrao {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    vertical-align: top;
}

.modal-valor {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f97316;
    line-height: 1;
}

.modal-economia {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.btn-modal {
    width: 100%;
    padding: 0.75rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .modal-content {
        padding: 1.2rem;
        max-width: 95%;
    }
    
    .modal-title {
        font-size: 1.3rem;
    }
    
    .modal-valor {
        font-size: 2.5rem;
    }
    
    .btn-modal {
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
    }
}
