/**
 * Viaja na Milha - Página de Preços
 * Estilos para a landing page de planos e preços
 */

/* ============================================
   HERO PREÇOS
   ============================================ */
.precos-hero {
    background: linear-gradient(135deg, var(--vnm-primary) 0%, var(--vnm-primary-dark) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.precos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.precos-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.precos-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.precos-badge i {
    color: var(--vnm-accent);
}

.precos-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.precos-hero h1 span {
    color: var(--vnm-accent);
    position: relative;
}

.precos-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.precos-hero .hero-subtitle strong {
    color: #fff;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--vnm-accent);
    color: var(--vnm-primary-dark);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    color: var(--vnm-primary-dark);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

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

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

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* ============================================
   SECTION BADGES
   ============================================ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 90, 58, 0.1);
    color: var(--vnm-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-badge.badge-red {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.section-badge.badge-green {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.section-badge.badge-gold {
    background: rgba(212, 175, 55, 0.15);
    color: #b8860b;
}

/* ============================================
   SEÇÃO PROBLEMA
   ============================================ */
.precos-problema {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.problema-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.problema-intro {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 35px;
}

.problema-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problema-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.problema-item > i {
    font-size: 1.3rem;
    color: #dc3545;
    flex-shrink: 0;
    margin-top: 3px;
}

.problema-item strong {
    display: block;
    font-size: 1.05rem;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.problema-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Chat Mockup */
.chat-mockup {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.chat-header {
    background: #25d366;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header i {
    font-size: 1.3rem;
}

.chat-header span {
    font-weight: 600;
    flex: 1;
}

.chat-header small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.chat-messages {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 350px;
    overflow: hidden;
}

.chat-msg {
    background: #dcf8c6;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
    max-width: 85%;
    animation: slideIn 0.3s ease;
}

.chat-msg:nth-child(even) {
    background: #fff;
    border: 1px solid #e5e5e5;
}

.chat-msg.typing {
    background: #e5e5e5;
    color: #888;
    font-style: italic;
}

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

.chat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(220, 53, 69, 0.95));
    padding: 60px 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.chat-overlay i {
    font-size: 2.5rem;
}

.chat-overlay span {
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================================
   SEÇÃO SOLUÇÃO
   ============================================ */
.precos-solucao {
    padding: 100px 0;
    background: #fff;
}

.solucao-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.solucao-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.solucao-intro {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.solucao-comparativo {
    display: flex;
    gap: 30px;
    align-items: stretch;
    justify-content: center;
}

.comparativo-card {
    flex: 1;
    max-width: 400px;
    padding: 40px;
    border-radius: 20px;
}

.comparativo-card.grupos {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
}

.comparativo-card.vnm {
    background: linear-gradient(135deg, var(--vnm-primary), var(--vnm-primary-dark));
    color: #fff;
    box-shadow: 0 20px 60px rgba(26, 90, 58, 0.3);
}

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

.comparativo-header i {
    font-size: 2rem;
}

.comparativo-header h3 {
    font-size: 1.4rem;
    margin: 0;
}

.comparativo-card.grupos .comparativo-header {
    color: #666;
}

.comparativo-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparativo-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.comparativo-card.grupos li {
    color: #666;
    border-bottom-color: #e9ecef;
}

.comparativo-card.grupos li i {
    color: #dc3545;
}

.comparativo-card.vnm li i {
    color: var(--vnm-accent);
}

.comparativo-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--vnm-accent);
    color: var(--vnm-primary-dark);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    align-self: center;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.comparativo-destaque {
    margin-top: 25px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparativo-destaque i {
    color: var(--vnm-accent);
}

/* ============================================
   CTA INTERMEDIÁRIO
   ============================================ */
.precos-cta-mid {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--vnm-accent), #e6c45a);
}

.cta-mid-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-mid-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--vnm-primary-dark);
    margin: 0 0 8px 0;
}

.cta-mid-text p {
    font-size: 1.1rem;
    color: rgba(26, 90, 58, 0.8);
    margin: 0;
}

.btn-cta-mid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--vnm-primary);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cta-mid:hover {
    background: var(--vnm-primary-dark);
    transform: translateX(5px);
    color: #fff;
}

/* ============================================
   SEÇÃO BENEFÍCIOS
   ============================================ */
.precos-beneficios {
    padding: 100px 0;
    background: #f8f9fa;
}

.beneficios-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.beneficios-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
}

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

.beneficio-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--vnm-primary);
}

.beneficio-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--vnm-primary), var(--vnm-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.beneficio-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.beneficio-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.beneficio-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   COMO FUNCIONA
   ============================================ */
.precos-como-funciona {
    padding: 100px 0;
    background: #fff;
}

.como-funciona-header {
    text-align: center;
    margin-bottom: 60px;
}

.como-funciona-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
}

.como-funciona-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    flex: 1;
    max-width: 320px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--vnm-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.step-connector {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vnm-accent);
    font-size: 1.5rem;
}

/* ============================================
   SEÇÃO PLANOS
   ============================================ */
.precos-planos {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    text-align: center;
}

.precos-planos .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.planos-header {
    text-align: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto 60px;
}

.planos-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.planos-header p {
    font-size: 1.1rem;
    color: #666;
}

.planos-grid {
    display: flex !important;
    justify-content: center !important;
    align-items: stretch;
    gap: 40px;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.planos-grid .plano-card {
    flex: 0 0 380px;
    max-width: 380px;
}

.plano-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: left;
}

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

.plano-card.destaque {
    border-color: var(--vnm-primary);
    box-shadow: 0 20px 60px rgba(26, 90, 58, 0.2);
    transform: scale(1.05);
}

.plano-card.destaque:hover {
    transform: scale(1.05) translateY(-5px);
}

.plano-card.premium {
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-color: var(--vnm-accent);
    color: #fff;
}

.plano-badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vnm-primary);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.plano-badge-premium {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--vnm-accent), #e6c45a);
    color: var(--vnm-primary-dark);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.plano-header {
    text-align: center;
    margin-bottom: 25px;
}

.plano-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--vnm-primary), var(--vnm-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.plano-card.premium .plano-icon {
    background: linear-gradient(135deg, var(--vnm-accent), #e6c45a);
}

.plano-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.plano-card.premium .plano-icon i {
    color: var(--vnm-primary-dark);
}

.plano-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.plano-card.premium .plano-header h3 {
    color: #fff;
}

.plano-desc {
    font-size: 0.95rem;
    color: #888;
    margin: 0;
}

.plano-card.premium .plano-desc {
    color: rgba(255, 255, 255, 0.7);
}

.plano-preco {
    text-align: center;
    padding: 25px 0;
    margin-bottom: 25px;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.plano-card.premium .plano-preco {
    border-color: rgba(255, 255, 255, 0.1);
}

.preco-desde {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
}

.plano-card.premium .preco-desde {
    color: rgba(255, 255, 255, 0.6);
}

.preco-valor {
    font-size: 3rem;
    font-weight: 800;
    color: var(--vnm-primary);
}

.plano-card.destaque .preco-valor {
    color: var(--vnm-primary);
}

.plano-card.premium .preco-valor {
    color: var(--vnm-accent);
}

.preco-valor small {
    font-size: 1.5rem;
}

.preco-periodo {
    font-size: 1.1rem;
    color: #888;
}

.plano-card.premium .preco-periodo {
    color: rgba(255, 255, 255, 0.6);
}

.plano-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.plano-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
}

.plano-features li i {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.plano-features li i.bi-check-circle-fill {
    color: var(--vnm-primary);
}

.plano-card.premium .plano-features li i.bi-check-circle-fill {
    color: var(--vnm-accent);
}

.plano-features li.feature-disabled {
    opacity: 0.5;
}

.plano-features li.feature-disabled i {
    color: #ccc;
}

.plano-card.premium .plano-features li.feature-disabled i {
    color: rgba(255, 255, 255, 0.3);
}

.btn-escolher-plano {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--vnm-primary);
    color: #fff;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-escolher-plano:hover {
    background: var(--vnm-primary-dark);
    transform: translateY(-2px);
}

.plano-card.destaque .btn-escolher-plano {
    background: var(--vnm-accent);
    color: var(--vnm-primary-dark);
}

.plano-card.destaque .btn-escolher-plano:hover {
    background: #c9a227;
}

.plano-card.premium .btn-escolher-plano {
    background: var(--vnm-accent);
    color: var(--vnm-primary-dark);
}

.planos-garantia {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    padding: 25px;
    background: rgba(26, 90, 58, 0.05);
    border-radius: 16px;
    max-width: 500px;
    text-align: left;
}

.planos-garantia i {
    font-size: 2rem;
    color: var(--vnm-primary);
}

.planos-garantia strong {
    display: block;
    color: #1a1a1a;
    font-size: 1.05rem;
}

.planos-garantia p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* ============================================
   FAQ
   ============================================ */
.precos-faq {
    padding: 100px 0;
    background: #fff;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--vnm-primary);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--vnm-primary);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 28px 22px;
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   CTA FINAL
   ============================================ */
.precos-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--vnm-primary) 0%, var(--vnm-primary-dark) 100%);
    text-align: center;
}

.cta-final-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-final-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.cta-final-content > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--vnm-accent);
    color: var(--vnm-primary-dark);
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    color: var(--vnm-primary-dark);
}

.cta-final-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.trust-item i {
    font-size: 1.2rem;
    color: var(--vnm-accent);
}

/* ============================================
   MODAL DE PERÍODO
   ============================================ */
.modal-periodo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

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

.modal-periodo {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.3s ease;
}

.modal-periodo-overlay.active .modal-periodo {
    transform: translateY(0) scale(1);
}

.modal-periodo-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f1f1;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-periodo-close:hover {
    background: #e5e5e5;
}

.modal-periodo-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-periodo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--vnm-primary), var(--vnm-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-periodo-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.modal-periodo-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.modal-periodo-header p {
    color: #666;
    margin: 0;
}

.modal-periodo-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.periodo-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
}

.periodo-option:hover {
    border-color: var(--vnm-primary);
    background: #fff;
}

.periodo-option.destaque {
    border-color: var(--vnm-primary);
    background: rgba(26, 90, 58, 0.03);
}

.periodo-option.lifetime {
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-color: var(--vnm-accent);
    color: #fff;
}

.periodo-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--vnm-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.periodo-option.lifetime .periodo-badge {
    background: var(--vnm-accent);
    color: var(--vnm-primary-dark);
}

.periodo-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.periodo-nome {
    font-size: 1.1rem;
    font-weight: 700;
}

.periodo-desc {
    font-size: 0.85rem;
    color: #888;
}

.periodo-option.lifetime .periodo-desc {
    color: rgba(255, 255, 255, 0.7);
}

.periodo-preco {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.periodo-valor {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--vnm-primary);
}

.periodo-option.lifetime .periodo-valor {
    color: var(--vnm-accent);
}

.periodo-ciclo {
    font-size: 0.8rem;
    color: #888;
}

.periodo-option.lifetime .periodo-ciclo {
    color: rgba(255, 255, 255, 0.6);
}

.periodo-equivale {
    font-size: 0.75rem;
    color: var(--vnm-primary);
    font-weight: 600;
}

.modal-periodo-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.modal-periodo-footer p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-periodo-footer i {
    color: var(--vnm-primary);
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 991px) {
    .precos-hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 30px;
    }

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

    .problema-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .problema-visual {
        order: -1;
    }

    .solucao-comparativo {
        flex-direction: column;
        align-items: center;
    }

    .comparativo-card {
        max-width: 100%;
    }

    .comparativo-vs {
        transform: rotate(90deg);
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .como-funciona-steps {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .step-item {
        max-width: 100%;
    }

    .planos-grid {
        flex-direction: column;
        align-items: center;
        max-width: 400px;
    }

    .planos-grid .plano-card {
        flex: 0 1 auto;
        width: 100%;
    }

    .plano-card.destaque {
        transform: none;
        order: -1;
    }

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

    .cta-mid-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-final-trust {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .precos-hero {
        padding: 120px 0 60px;
    }

    .precos-hero h1 {
        font-size: 2rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .plano-card {
        padding: 30px 25px;
    }

    .preco-valor {
        font-size: 2.5rem;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .cta-final-content h2 {
        font-size: 1.8rem;
    }

    .btn-cta-final {
        padding: 16px 35px;
        font-size: 1rem;
    }

    .modal-periodo {
        padding: 30px 25px;
    }
}
