/* ============================================================
   vps-ready.css - ESTILOS DA PÁGINA VPS READY
   ISOLADO PARA NÃO AFETAR O HEADER
   ============================================================ */

.vps-ready {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #0f172a;
    line-height: 1.5;
}

/* ===== COUNTRY SELECTOR ===== */
.vps-ready .country-selector-section {
    margin-bottom: 32px;
    padding: 4px 0;
}

.vps-ready .country-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vps-ready .country-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px 8px 10px;
    border: 1.5px solid #e5e7eb;
    background: #ffffff;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
}

.vps-ready .country-chip:hover {
    border-color: #9ca3af;
    background: #f9fafb;
    color: #111827;
    transform: translateY(-1px);
}

.vps-ready .country-chip.active {
    border-color: #4f46e5;
    background: #eef2ff;
    color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

.vps-ready .country-chip .flag {
    font-size: 18px;
    line-height: 1;
}

.vps-ready .country-chip .country-name {
    font-weight: 600;
    font-size: 13px;
}

/* ===== LOADING ===== */
.vps-ready .loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    gap: 16px;
}

.vps-ready .loading-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid #e5e7eb;
    border-top-color: #6366f1;
    border-radius: 50%;
    animation: vps-spin 0.8s linear infinite;
}

@keyframes vps-spin {
    to { transform: rotate(360deg); }
}

.vps-ready .loading-text {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

.vps-ready .empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    gap: 12px;
    text-align: center;
}

.vps-ready .empty-state i {
    font-size: 32px;
    color: #cbd5e1;
}

.vps-ready .empty-state h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

.vps-ready .empty-state p {
    font-size: 14px;
    color: #94a3b8;
}

/* ===== SERVERS TABLE ===== */
.vps-ready .servers-section {
    margin-bottom: 48px;
}

.vps-ready .cpu-group {
    margin-bottom: 32px;
}

.vps-ready .cpu-group-header {
    margin-bottom: 12px;
    padding: 0 4px;
}

.vps-ready .cpu-group-title {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.vps-ready .cpu-group-desc {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

.vps-ready .servers-table-wrapper {
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.vps-ready .servers-table-header {
    display: grid;
    grid-template-columns: 2fr 1.2fr 0.9fr 1.2fr 0.9fr 1fr 0.8fr;
    gap: 0;
    padding: 10px 20px;
    background: #f5f5f7;
    border-bottom: 1px solid rgba(15,23,42,0.06);
}

.vps-ready .servers-table-header .th {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 0;
}

.vps-ready .server-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 0.9fr 1.2fr 0.9fr 1fr 0.8fr;
    gap: 0;
    align-items: center;
    padding: 0 20px;
    min-height: 68px;
    background: #ffffff;
    border-bottom: 1px solid rgba(15,23,42,0.06);
    transition: 200ms ease;
    cursor: default;
}

.vps-ready .server-row:last-child {
    border-bottom: none;
}

.vps-ready .server-row:hover {
    background: #f5f5f7;
}

.vps-ready .server-row .cell {
    padding: 8px 4px;
    display: flex;
    align-items: center;
    min-height: 40px;
}

.vps-ready .cell-name {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 2px;
}

.vps-ready .cell-name .server-name {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.vps-ready .cell-name .server-specs-compact {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 400;
}

.vps-ready .cell-cpu {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.vps-ready .cell-ram {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.vps-ready .cell-storage {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.vps-ready .cell-traffic {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

.vps-ready .cell-price {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0;
}

.vps-ready .price-main {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.vps-ready .price-main .currency {
    font-size: 14px;
    font-weight: 600;
    margin-right: 1px;
}

.vps-ready .price-period {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 1px;
}

.vps-ready .cell-actions {
    justify-content: flex-end !important;
}

.vps-ready .btn-order-row {
    height: 34px;
    padding: 0 20px;
    border: none;
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: 200ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    white-space: nowrap;
}

.vps-ready .btn-order-row:hover {
    background: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15,23,42,0.15);
}

.btn-out-of-stock {
    background: #94a3b8 !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
    opacity: 0.7;
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* ===== MOBILE CARDS ===== */
.vps-ready .servers-cards {
    display: none;
}

.vps-ready .server-card {
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 12px;
    transition: 200ms ease;
}

.vps-ready .server-card:hover {
    border-color: rgba(15,23,42,0.10);
    transform: translateY(-1px);
    box-shadow: 0 1px 3px rgba(15,23,42,0.04);
}

.vps-ready .card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.vps-ready .card-name-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vps-ready .card-name {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}

.vps-ready .card-specs-compact {
    font-size: 12px;
    color: #94a3b8;
}

.vps-ready .card-price-block {
    text-align: right;
}

.vps-ready .card-price-main {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.vps-ready .card-price-main .currency {
    font-size: 14px;
    font-weight: 600;
}

.vps-ready .card-price-period {
    font-size: 11px;
    color: #94a3b8;
}

.vps-ready .card-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin-bottom: 16px;
    padding: 12px 0;
    border-top: 1px solid rgba(15,23,42,0.06);
    border-bottom: 1px solid rgba(15,23,42,0.06);
}

.vps-ready .spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vps-ready .spec-label {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

.vps-ready .spec-value {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.vps-ready .card-footer-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ===== VDS BADGE ===== */
.vps-ready .vds-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #ffffff;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.1rem 0.7rem 0.1rem 0.5rem;
    border-radius: 100px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
}

.vps-ready .vds-badge-sm {
    font-size: 0.45rem;
    padding: 0.05rem 0.5rem 0.05rem 0.35rem;
    gap: 3px;
}

.vps-ready .server-row.vds-row {
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.04), transparent);
    border-left: 3px solid #7c3aed;
}

.vps-ready .server-row.vds-row .server-name-wrapper {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.vps-ready .server-card.vds-card {
    border-left: 3px solid #7c3aed;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.03), transparent);
}

.vps-ready .card-name-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.vps-ready .btn-order-row.btn-vds {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #ffffff;
}

.vps-ready .btn-order-row.btn-vds:hover {
    background: linear-gradient(135deg, #6d28d9, #5b21b6);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}

/* ===== STREAMING ===== */
.vps-ready .streaming-loading,
.vps-ready .streaming-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: #6b7280;
    font-size: 1rem;
}

.vps-ready .streaming-dots {
    display: flex;
    gap: 0.4rem;
}

.vps-ready .streaming-dots span {
    width: 8px;
    height: 8px;
    background: #7c3aed;
    border-radius: 50%;
    animation: vps-dotPulse 1.4s ease-in-out infinite both;
}

.vps-ready .streaming-dots span:nth-child(1) { animation-delay: 0s; }
.vps-ready .streaming-dots span:nth-child(2) { animation-delay: 0.2s; }
.vps-ready .streaming-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes vps-dotPulse {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.vps-ready .streaming-text {
    font-weight: 500;
    color: #374151;
}

.vps-ready .streaming-subtext {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.vps-ready .streaming-group {
    animation: vps-fadeSlideIn 0.6s ease forwards;
}

@keyframes vps-fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== COMPARISON ===== */
.vps-ready .section-comparison {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 0;
}

.vps-ready .section-comparison .section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.vps-ready .section-comparison .section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.vps-ready .section-comparison .section-header h2 .destaque {
    background: linear-gradient(135deg, #0066ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vps-ready .section-comparison .section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.vps-ready .comparison-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-direction: row;
}

.vps-ready .comparison-grid {
    flex: 1 1 52%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    order: 0;
}

.vps-ready .comparison-card {
    background: transparent;
    border: none;
    padding: 1.2rem 0;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vps-ready .comparison-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    transition: all 0.4s ease;
}

.vps-ready .comparison-card:last-child::after {
    display: none;
}

.vps-ready .comparison-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: transparent;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vps-ready .comparison-card.vps:hover::before,
.vps-ready .comparison-card.vps.active::before {
    background: #0066ff;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.15);
}

.vps-ready .comparison-card.vps:hover .card-titulo,
.vps-ready .comparison-card.vps.active .card-titulo {
    color: #0066ff;
}

.vps-ready .comparison-card.vds:hover::before,
.vps-ready .comparison-card.vds.active::before {
    background: #7c3aed;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.15);
}

.vps-ready .comparison-card.vds:hover .card-titulo,
.vps-ready .comparison-card.vds.active .card-titulo {
    color: #7c3aed;
}

.vps-ready .card-cabecalho {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-left: 1.5rem;
}

.vps-ready .badge-tipo {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.8rem;
    border-radius: 100px;
    background: transparent;
    color: #9ca3af;
    border: 1.5px solid #e5e7eb;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.vps-ready .comparison-card.vps:hover .badge-tipo,
.vps-ready .comparison-card.vps.active .badge-tipo {
    color: #0066ff;
    border-color: #0066ff;
}

.vps-ready .comparison-card.vds:hover .badge-tipo,
.vps-ready .comparison-card.vds.active .badge-tipo {
    color: #7c3aed;
    border-color: #7c3aed;
}

.vps-ready .card-titulo {
    font-size: 1.35rem;
    font-weight: 600;
    color: #111827;
    transition: color 0.3s ease;
    letter-spacing: -0.02em;
    margin: 0;
}

.vps-ready .icone-expandir {
    margin-left: auto;
    font-size: 1rem;
    color: #d1d5db;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    font-weight: 300;
}

.vps-ready .comparison-card:hover .icone-expandir {
    color: #9ca3af;
}

.vps-ready .comparison-card.active .icone-expandir {
    transform: rotate(180deg);
    color: #111827;
}

.vps-ready .comparison-card.vps.active .icone-expandir {
    color: #0066ff;
}

.vps-ready .comparison-card.vds.active .icone-expandir {
    color: #7c3aed;
}

.vps-ready .card-conteudo {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.5s ease,
                padding 0.4s ease;
    opacity: 0;
    padding: 0 0 0 1.5rem;
}

.vps-ready .comparison-card.active .card-conteudo {
    max-height: 400px;
    opacity: 1;
    padding: 0.75rem 0 0.5rem 1.5rem;
}

.vps-ready .comparison-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    max-width: 92%;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.vps-ready .comparison-visual {
    flex: 1 1 38%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    order: 1;
}

.vps-ready .comparison-visual img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 0 transparent);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== APPS ===== */
.vps-ready .section-apps {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
}

.vps-ready .section-apps .header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.vps-ready .section-apps .header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.03em;
}

.vps-ready .section-apps .header h2 span {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vps-ready .section-apps .header p {
    color: #6b7280;
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0.5rem auto 0;
}

.vps-ready .apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 0.25rem;
}

.vps-ready .app-item {
    padding: 0.5rem 0.75rem;
    color: #374151;
    font-size: 0.88rem;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.vps-ready .app-item .dot {
    color: #d1d5db;
    font-size: 0.5rem;
}

.vps-ready .app-item .badge {
    margin-left: auto;
    font-size: 0.45rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.05rem 0.5rem;
    border-radius: 100px;
    background: #eef2ff;
    color: #4f46e5;
    flex-shrink: 0;
}

.vps-ready .app-item:hover {
    color: #2563eb;
    border-bottom-color: #2563eb;
    padding-left: 1rem;
}

/* ===== OS ===== */
.vps-ready .section-os {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0 4rem 0;
}

.vps-ready .section-os .header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.vps-ready .section-os .header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.03em;
}

.vps-ready .section-os .header h2 span {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vps-ready .section-os .header p {
    color: #6b7280;
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0.5rem auto 0;
}

.vps-ready .os-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.vps-ready .os-visual {
    flex: 0 0 38%;
}

.vps-ready .os-visual img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.08);
    display: block;
    transition: transform 0.3s;
}

.vps-ready .os-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.25rem;
}

.vps-ready .os-item {
    padding: 0.45rem 0.7rem;
    color: #374151;
    font-size: 0.85rem;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.vps-ready .os-item .dot {
    color: #d1d5db;
    font-size: 0.5rem;
}

.vps-ready .os-item .badge {
    margin-left: auto;
    font-size: 0.45rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.05rem 0.5rem;
    border-radius: 100px;
    background: #f0fdf4;
    color: #16a34a;
    flex-shrink: 0;
}

.vps-ready .os-item:hover {
    color: #2563eb;
    border-bottom-color: #2563eb;
    padding-left: 0.9rem;
}

/* ===== BENEFITS ===== */
.vps-ready .section-benefits {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0 2rem 0;
}

.vps-ready .section-benefits .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.vps-ready .section-benefits .section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.vps-ready .section-benefits .section-header h2 .destaque {
    background: linear-gradient(135deg, #0066ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vps-ready .section-benefits .section-header p {
    font-size: 1.05rem;
    color: #6b7280;
    font-weight: 400;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.vps-ready .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.vps-ready .benefit-card {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.vps-ready .benefit-card:hover {
    transform: translateY(-4px);
    border-color: #e0e7ff;
    box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.08);
}

.vps-ready .benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eef2ff, #ede9fe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.5rem;
    color: #4f46e5;
    transition: all 0.3s ease;
}

.vps-ready .benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #0066ff, #7c3aed);
    color: #ffffff;
    transform: scale(1.05);
}

.vps-ready .benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.4rem;
}

.vps-ready .benefit-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ===== CTA ===== */
.vps-ready .section-cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0 4rem 0;
}

.vps-ready .cta-wrapper {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    border-radius: 1.5rem;
    padding: 3.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vps-ready .cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vps-ready .cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.vps-ready .cta-title .destaque {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vps-ready .cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.vps-ready .cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.vps-ready .cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

.vps-ready .cta-feature i {
    color: #34d399;
    font-size: 1rem;
}

.vps-ready .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2.2rem;
    background: linear-gradient(135deg, #0066ff, #7c3aed);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.vps-ready .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    .vps-ready .servers-table-header,
    .vps-ready .server-row {
        grid-template-columns: 1.8fr 1fr 0.8fr 1fr 0.7fr 0.9fr 0.7fr;
    }
    .vps-ready .servers-table-header .th:nth-child(5),
    .vps-ready .server-row .cell:nth-child(5) {
        display: none;
    }
}

@media (max-width: 950px) {
    .vps-ready .comparison-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    .vps-ready .comparison-grid {
        order: 1;
        flex: 1 1 auto;
        width: 100%;
    }
    .vps-ready .comparison-visual {
        order: 0;
        flex: 1 1 auto;
        width: 100%;
    }
    .vps-ready .comparison-visual img {
        max-width: 360px;
    }
    .vps-ready .card-cabecalho {
        padding-left: 1rem;
    }
    .vps-ready .card-conteudo {
        padding: 0 0 0 1rem;
    }
    .vps-ready .comparison-card.active .card-conteudo {
        padding: 0.75rem 0 0.5rem 1rem;
    }
    .vps-ready .card-titulo {
        font-size: 1.2rem;
    }
    .vps-ready .comparison-card p {
        max-width: 100%;
        font-size: 0.95rem;
    }
}

@media (max-width: 900px) {
    .vps-ready .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .vps-ready .os-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    .vps-ready .os-visual {
        flex: 0 0 auto;
        width: 100%;
        text-align: center;
    }
    .vps-ready .os-visual img {
        max-width: 300px;
        margin: 0 auto;
    }
    .vps-ready .os-grid {
        width: 100%;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .vps-ready {
        padding: 0 16px;
    }
    .vps-ready .servers-table-header,
    .vps-ready .server-row {
        display: none;
    }
    .vps-ready .servers-cards {
        display: block;
    }
    .vps-ready .country-selector {
        gap: 6px;
    }
    .vps-ready .country-chip {
        padding: 6px 10px;
        font-size: 12px;
    }
    .vps-ready .country-chip .flag {
        font-size: 14px;
    }
    .vps-ready .country-chip .country-name {
        font-size: 12px;
    }
    .vps-ready .section-benefits {
        padding: 2.5rem 0 1.5rem 0;
    }
    .vps-ready .section-cta {
        padding: 0.5rem 0 2.5rem 0;
    }
    .vps-ready .cta-wrapper {
        padding: 2.5rem 1.5rem;
        border-radius: 1.2rem;
    }
    .vps-ready .cta-features {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    .vps-ready .cta-feature {
        font-size: 0.85rem;
    }
    .vps-ready .cta-button {
        padding: 0.75rem 1.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .vps-ready .section-apps {
        padding: 2rem 0;
    }
    .vps-ready .section-apps .header h2 {
        font-size: 1.6rem;
    }
    .vps-ready .apps-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    .vps-ready .app-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    .vps-ready .app-item .badge {
        display: none;
    }
    .vps-ready .section-os {
        padding: 1.5rem 0 2.5rem 0;
    }
    .vps-ready .section-os .header h2 {
        font-size: 1.6rem;
    }
    .vps-ready .os-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
    .vps-ready .os-item {
        font-size: 0.78rem;
        padding: 0.35rem 0.5rem;
    }
    .vps-ready .os-item .badge {
        display: none;
    }
    .vps-ready .os-visual img {
        max-width: 220px;
    }
    .vps-ready .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .vps-ready .benefit-card {
        padding: 1.5rem 1.2rem;
    }
    .vps-ready .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .vps-ready {
        padding: 0 12px;
    }
    .vps-ready .country-chip {
        padding: 5px 8px;
        font-size: 11px;
    }
    .vps-ready .country-chip .flag {
        font-size: 13px;
    }
    .vps-ready .country-chip .country-name {
        font-size: 11px;
    }
    .vps-ready .section-comparison {
        padding: 2.5rem 0;
    }
    .vps-ready .section-comparison .section-header h2 {
        font-size: 1.8rem;
    }
    .vps-ready .section-comparison .section-header p {
        font-size: 1rem;
    }
    .vps-ready .comparison-visual img {
        max-width: 260px;
    }
    .vps-ready .comparison-card {
        padding: 1rem 0;
    }
    .vps-ready .card-titulo {
        font-size: 1.05rem;
    }
    .vps-ready .badge-tipo {
        font-size: 0.5rem;
        padding: 0.15rem 0.6rem;
    }
    .vps-ready .card-cabecalho {
        gap: 0.8rem;
        padding-left: 0.5rem;
    }
    .vps-ready .card-conteudo {
        padding: 0 0 0 0.5rem;
    }
    .vps-ready .comparison-card.active .card-conteudo {
        padding: 0.5rem 0 0.3rem 0.5rem;
    }
    .vps-ready .comparison-card p {
        font-size: 0.88rem;
        line-height: 1.6;
    }
    .vps-ready .icone-expandir {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    .vps-ready .cta-wrapper {
        padding: 2rem 1.2rem;
        border-radius: 1rem;
    }
    .vps-ready .cta-title {
        font-size: 1.5rem;
    }
    .vps-ready .cta-desc {
        font-size: 0.9rem;
    }
    .vps-ready .cta-button {
        padding: 0.7rem 1.4rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
}