/* ===== CONFIGURAÇÕES DE CORES ===== */
 

:root {
    /* Cor principal do card do plano */
    --cor-card-inicio: #E41B23;  
    --cor-card-fim: #bd171c;     
    
    /* Cor do botão de compra */
    --cor-botao-inicio: #E41B23; 
    --cor-botao-fim: #bd171c;    
    
    /* Cores derivadas (calculadas automaticamente) */
    --cor-sombra-card: rgba(233, 30, 99, 0.35);
    --cor-sombra-pulse-start: rgba(233, 30, 99, 0.7);
    --cor-sombra-pulse-end: rgba(233, 30, 99, 0);
    --cor-foco-input: rgba(233, 30, 99, 0.1);
}

/* ===== FIM DAS CONFIGURAÇÕES ===== */

/* E-SIM Venda Page - Layout Vertical com Plano em Destaque */

.esim-venda {
    min-height: 100vh;
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

.container-venda {
    max-width: 95vw;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    zoom: 0.9;
}

/* ===== PLANO DESTAQUE ===== */

.plano-destaque-section {
    display: flex;
    justify-content: center;
    animation: slideInDown 0.6s ease;
}

.plano-destaque {
    background: linear-gradient(135deg, var(--cor-card-inicio) 0%, var(--cor-card-fim) 100%);
    color: white;
    border-radius: 28px;
    padding: 60px 50px;
    max-width: 60vw;
    width: 100%;
    box-shadow: 0 30px 80px var(--cor-sombra-card);
    position: relative;
    overflow: hidden;
}

.plano-destaque::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* Preço Principal */
.preco-principal {
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.preco-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.95;
    margin-bottom: 12px;
    display: block;
}

.preco-valor {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.preco-titulo {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.preco-periodo {
    font-size: 18px;
    opacity: 0.95;
    font-weight: 500;
}

/* Tipo de Plano */
.tipo-plano {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.18);
    padding: 14px 20px;
    border-radius: 14px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tipo-plano svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

/* Divisor */
.divisor {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    margin: 0px 0;
    position: relative;
    z-index: 1;
}

/* Detalhes do Plano */
.detalhes-plano {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.detalhe-item {
    background: rgba(255, 255, 255, 0.12);
    padding: 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.detalhe-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.detalhe-item:nth-child(n+3) {
    grid-column: 1 / -1;
}

.detalhe-titulo {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detalhe-titulo svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.detalhe-valor {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.detalhe-bonus {
    font-size: 13px;
    opacity: 0.85;
    margin-top: 4px;
    line-height: 1.4;
}

/* Redes Sociais */
.redes-sociais {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.rede-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.rede-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-6px);
}

.rede-icon svg {
    width: 24px;
    height: 24px;
}

.rede-icon.mais-apps {
    font-weight: 700;
    font-size: 16px;
    color: white;
}

/* Badge Destaque */
.badge-destaque {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.18);
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 32px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.badge-destaque svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* CTA Button */
.btn-comprar-plano {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.btn-comprar-plano:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-comprar-plano:active {
    transform: translateY(0);
}

/* ===== FORMULÁRIO ===== */

.formulario-section {
    animation: slideInUp 0.6s ease 0.2s backwards;
}

.formulario-container {
    background: white;
    border-radius: 24px;
    padding: 60px 50px;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.formulario-titulo {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    text-align: center;
}

.formulario-subtitulo {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 40px;
    text-align: center;
}

/* Form */
.venda-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 16px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #f9fafb;
    width: 100%;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 5px var(--cor-foco-input);
}

.form-group input.error,
.form-group select.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-error {
    font-size: 12px;
    color: #ef4444;
    min-height: 16px;
}

/* Botão Comprar */
.btn-comprar {
    margin-top: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    animation: pulse-shadow 2.5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cor-botao-inicio) 0%, var(--cor-botao-fim) 100%);
    border: none;
    color: white;
}

@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--cor-sombra-pulse-start);
    }
    50% {
        box-shadow: 0 0 0 18px var(--cor-sombra-pulse-end);
    }
}

.btn-comprar:hover {
    transform: translateY(-2px);
}

.btn-comprar:active {
    transform: translateY(0);
}

.btn-comprar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Info */
.form-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray);
    text-align: center;
    justify-content: center;
    margin-top: 20px;
}

.form-info svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* ===== MODAL ===== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px 36px 36px 36px;
    max-width: 60%;
    width: 100%;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

/* Botão Fechar */
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--gray);
    z-index: 1;
}

.modal-close:hover {
    background: var(--gray-light);
    color: var(--dark);
}

.modal-close svg {
    display: block;
}

.modal-icon {
    margin-bottom: 20px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.modal-text {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Botão Copiar PIX Grande */
.modal-pix-actions {
    margin-top: 20px;
}

.btn-copy-pix-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--cor-botao-inicio) 0%, var(--cor-botao-fim) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.btn-copy-pix-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-copy-pix-large:active {
    transform: translateY(0);
}

.btn-copy-pix-large svg {
    flex-shrink: 0;
}

/* Remover estilos antigos */
.modal-pix {
    display: none;
}

.modal-actions {
    display: none;
}

.modal-actions .btn {
    flex: 1;
}

/* ===== ANIMAÇÕES ===== */

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== VISIBILIDADE DESKTOP/MOBILE ===== */

.esim-desktop-only {
    display: block;
}

.esim-mobile-only {
    display: none;
}

/* ===== MOBILE SECTION ===== */

.esim-venda-mobile {
    height: 100vh;
    padding: 70px 0 10px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    overflow: hidden;
}

.container-mobile {
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Ocultar scrollbar completamente */
.container-mobile::-webkit-scrollbar {
    display: none;
}

.container-mobile {
    -ms-overflow-style: none;  /* IE e Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Plano Mobile Card */
.plano-mobile-card {
    background: linear-gradient(135deg, var(--cor-card-inicio) 0%, var(--cor-card-fim) 100%);
    color: white;
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 10px 30px var(--cor-sombra-card);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-top: 20px;
}

.plano-mobile-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite;
}

/* Preço Mobile */
.preco-mobile {
    text-align: center;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.preco-mobile-titulo {
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.preco-mobile-label {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
    margin-bottom: 6px;
}

.preco-mobile-valor {
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.preco-mobile-periodo {
    font-size: 12px;
    opacity: 0.95;
    font-weight: 500;
}

/* Divisor Mobile */
.divisor-mobile {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    margin: 12px 0;
    position: relative;
    z-index: 1;
}

/* Detalhes Mobile */
.detalhes-mobile {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    gap: 8px;
    position: relative;
    z-index: 1;
}

.detalhe-mobile-item {
    background: rgba(255, 255, 255, 0.12);
    padding: 12px 10px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.detalhe-mobile-item.redes-mobile-item {
    grid-column: 1 / -1;
}

/* Apps em Destaque - WhatsApp e Waze */
.apps-destaque-mobile {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    justify-content: center;
}

.app-destaque-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 11px;
    font-weight: 600;
}

.app-destaque-item svg {
    flex-shrink: 0;
}

.detalhe-mobile-item:active {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(0.98);
}

.detalhe-mobile-titulo {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 4px;
}

.detalhe-mobile-titulo svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.detalhe-mobile-valor {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.2;
}

.detalhe-mobile-bonus {
    font-size: 9.5px;
    opacity: 0.85;
    margin-top: 2px;
    line-height: 1.3;
}

/* Redes Sociais Mobile */
.redes-sociais-mobile {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.rede-mobile-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.rede-mobile-icon:active {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0.95);
}

.rede-mobile-icon svg {
    width: 16px;
    height: 16px;
}

.rede-mobile-icon.mais-apps-mobile {
    font-weight: 700;
    font-size: 11px;
    color: white;
}

/* Formulário Mobile */
.formulario-mobile {
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.formulario-mobile-titulo {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
    text-align: center;
}

.formulario-mobile-subtitulo {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.3;
}

/* Form Mobile */
.venda-form-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group-mobile {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group-mobile label {
    font-size: 9px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-group-mobile input,
.form-group-mobile select {
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #f9fafb;
    width: 100%;
}

.form-group-mobile select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 35px;
}

.form-group-mobile input::placeholder {
    color: #9ca3af;
}

.form-group-mobile input:focus,
.form-group-mobile select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px var(--cor-foco-input);
}

.form-group-mobile input.error,
.form-group-mobile select.error {
    border-color: #ef4444;
    background: #fef2f2;
}

/* Botão Comprar Mobile */
.btn-comprar-mobile {
    margin-top: 6px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: pulse-shadow 2.5s ease-in-out infinite;
    background: linear-gradient(135deg, var(--cor-botao-inicio) 0%, var(--cor-botao-fim) 100%);
    border: none;
    color: white;
}

.btn-comprar-mobile:active {
    transform: scale(0.98);
}

.btn-comprar-mobile:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Info Mobile */
.form-info-mobile {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--gray);
    text-align: center;
    justify-content: center;
    margin-top: 8px;
    line-height: 1.2;
}

.form-info-mobile svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* ===== RESPONSIVIDADE ===== */

@media (max-width: 768px) {
    .esim-desktop-only {
        display: none !important;
    }
    
    .esim-mobile-only {
        display: block;
    }
    
    .esim-venda {
        padding: 40px 0;
    }

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

    .plano-destaque {
        padding: 48px 36px;
    }

    .preco-valor {
        font-size: 56px;
    }

    .detalhes-plano {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .detalhe-item:nth-child(n+3) {
        grid-column: 1;
    }

    .formulario-container {
        padding: 48px 36px;
    }

    .formulario-titulo {
        font-size: 28px;
    }

    .modal-content {
        padding: 36px 28px 32px 28px;
        max-width: 90%;
    }

    .modal-title {
        font-size: 24px;
    }
    
    .btn-copy-pix-large {
        font-size: 15px;
        padding: 14px 28px;
    }
    
    /* Mobile section ajustes */
    .esim-venda-mobile {
        padding: 70px 0 10px 0;
    }
    
    .container-mobile {
        padding: 0 16px;
        gap: 10px;
    }
    
    .plano-mobile-card {
        border-radius: 16px;
        padding: 18px 14px;
    }
    
    .formulario-mobile {
        border-radius: 16px;
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .esim-venda {
        padding: 30px 0;
    }

    .container-venda {
        padding: 0 16px;
        gap: 30px;
    }

    .plano-destaque {
        padding: 36px 24px;
    }

    .preco-valor {
        font-size: 44px;
    }

    .preco-label {
        font-size: 12px;
    }

    .preco-periodo {
        font-size: 16px;
    }

    .tipo-plano {
        font-size: 13px;
        padding: 12px 16px;
    }

    .detalhe-titulo {
        font-size: 13px;
    }

    .detalhe-valor {
        font-size: 16px;
    }

    .detalhe-bonus {
        font-size: 12px;
    }

    .formulario-container {
        padding: 36px 24px;
    }

    .formulario-titulo {
        font-size: 24px;
    }

    .formulario-subtitulo {
        font-size: 13px;
    }

    .form-group input {
        padding: 14px 16px;
        font-size: 14px;
    }

    .btn-comprar {
        padding: 14px 20px;
        font-size: 15px;
    }

    .modal-content {
        padding: 32px 20px 28px 20px;
        max-width: 340px;
    }

    .modal-title {
        font-size: 22px;
    }

    .modal-text {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .modal-icon svg {
        width: 42px;
        height: 42px;
    }
    
    .btn-copy-pix-large {
        font-size: 14px;
        padding: 13px 24px;
        max-width: 100%;
    }
    
    /* Mobile section ajustes para telas pequenas */
    .esim-venda-mobile {
        padding: 65px 0 8px 0;
    }
    
    .container-mobile {
        padding: 0 14px;
        gap: 10px;
    }
    
    .plano-mobile-card {
        border-radius: 14px;
        padding: 25px 20px;
    }
    
    .preco-mobile {
        margin-bottom: 10px;
    }
    
    .preco-mobile-titulo {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .preco-mobile-label {
        font-size: 8px;
        margin-bottom: 5px;
    }
    
    .preco-mobile-valor {
        font-size: 28px;
    }
    
    .preco-mobile-periodo {
        font-size: 11px;
    }
    
    .divisor-mobile {
        margin: 10px 0;
    }
    
    .detalhes-mobile {
        gap: 6px;
    }
    
    .detalhe-mobile-item {
        padding: 10px 8px;
        border-radius: 8px;
    }
    
    .detalhe-mobile-titulo {
        font-size: 8.5px;
        margin-bottom: 5px;
        gap: 3px;
    }
    
    .detalhe-mobile-titulo svg {
        width: 12px;
        height: 12px;
    }
    
    .detalhe-mobile-valor {
        font-size: 11px;
    }
    
    .detalhe-mobile-bonus {
        font-size: 9px;
    }
    
    .redes-sociais-mobile {
        gap: 5px;
        margin-top: 5px;
    }
    
    .rede-mobile-icon {
        width: 28px;
        height: 28px;
    }
    
    .rede-mobile-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .rede-mobile-icon.mais-apps-mobile {
        font-size: 10px;
    }
    
    .formulario-mobile {
        border-radius: 14px;
        padding: 14px 12px;
    }
    
    .formulario-mobile-titulo {
        font-size: 16px;
        margin-bottom: 3px;
    }
    
    .formulario-mobile-subtitulo {
        font-size: 10px;
        margin-bottom: 12px;
    }
    
    .venda-form-mobile {
        gap: 8px;
    }
    
    .form-group-mobile {
        gap: 3px;
    }
    
    .form-group-mobile label {
        font-size: 8.5px;
    }
    
    .form-group-mobile input {
        padding: 9px 10px;
        font-size: 12px;
    }
    
    .btn-comprar-mobile {
        margin-top: 4px;
        padding: 11px 14px;
        font-size: 13px;
        gap: 6px;
    }
    
    .btn-comprar-mobile svg {
        width: 14px;
        height: 14px;
    }
    
    .form-info-mobile {
        font-size: 9.5px;
        margin-top: 6px;
        gap: 5px;
    }
    
    .form-info-mobile svg {
        width: 12px;
        height: 12px;
    }
    
    /* Apps destaque mobile */
    .apps-destaque-mobile {
        gap: 8px;
        margin-top: 6px;
    }
    
    .app-destaque-item {
        padding: 5px 10px;
        font-size: 10px;
        gap: 5px;
    }
    
    .app-destaque-item svg {
        width: 18px;
        height: 18px;
    }
}

/* Telas muito pequenas (375px e abaixo) */
@media (max-width: 375px) {
    .esim-venda-mobile {
        padding: 60px 0 5px 0;
    }
    
    .container-mobile {
        padding: 0 12px;
        gap: 8px;
    }
    
    .plano-mobile-card {
        padding: 14px 10px;
        border-radius: 12px;
    }
    
    .preco-mobile {
        margin-bottom: 8px;
    }
    
    .preco-mobile-titulo {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .preco-mobile-label {
        font-size: 7.5px;
    }
    
    .preco-mobile-valor {
        font-size: 26px;
    }
    
    .preco-mobile-periodo {
        font-size: 10px;
    }
    
    .divisor-mobile {
        margin: 8px 0;
    }
    
    .detalhes-mobile {
        gap: 5px;
    }
    
    .detalhe-mobile-item {
        padding: 8px 6px;
    }
    
    .detalhe-mobile-titulo {
        font-size: 8px;
        margin-bottom: 4px;
    }
    
    .detalhe-mobile-titulo svg {
        width: 11px;
        height: 11px;
    }
    
    .detalhe-mobile-valor {
        font-size: 10px;
    }
    
    .detalhe-mobile-bonus {
        font-size: 8.5px;
    }
    
    .rede-mobile-icon {
        width: 26px;
        height: 26px;
    }
    
    .rede-mobile-icon svg {
        width: 13px;
        height: 13px;
    }
    
    .rede-mobile-icon.mais-apps-mobile {
        font-size: 9px;
    }
    
    .formulario-mobile {
        padding: 12px 10px;
    }
    
    .formulario-mobile-titulo {
        font-size: 15px;
    }
    
    .formulario-mobile-subtitulo {
        font-size: 9.5px;
        margin-bottom: 10px;
    }
    
    .venda-form-mobile {
        gap: 7px;
    }
    
    .form-group-mobile label {
        font-size: 8px;
    }
    
    .form-group-mobile input {
        padding: 8px 9px;
        font-size: 11.5px;
    }
    
    .btn-comprar-mobile {
        padding: 10px 12px;
        font-size: 12.5px;
    }
    
    .btn-comprar-mobile svg {
        width: 13px;
        height: 13px;
    }
    
    .form-info-mobile {
        font-size: 9px;
        margin-top: 5px;
    }
    
    .form-info-mobile svg {
        width: 11px;
        height: 11px;
    }
    
    /* Apps destaque mobile */
    .apps-destaque-mobile {
        gap: 6px;
        margin-top: 5px;
    }
    
    .app-destaque-item {
        padding: 4px 8px;
        font-size: 9px;
        gap: 4px;
    }
    
    .app-destaque-item svg {
        width: 16px;
        height: 16px;
    }
}
