/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

/* Gradientes personalizados */
.gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(10, 10, 20, 0.8) 50%, rgba(5, 15, 30, 0.9) 100%), url('../img/hero-gpu-B6U_2zJy.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section .container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-button {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    animation: pulse-glow 2s ease-in-out infinite;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    color: white;
    animation: none;
}

@keyframes pulse-glow {
    0% {
        box-shadow: rgba(168, 85, 247, 0.5) 0px 0px 30px 0px;
    }
    50% {
        box-shadow: rgba(168, 85, 247, 0.05) 0px 0px 8px 0px;
    }
    100% {
        box-shadow: rgba(168, 85, 247, 0.5) 0px 0px 30px 0px;
    }
}

/* Seções gerais */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #a0a0a0;
    text-align: center;
    margin-bottom: 3rem;
}

/* Cards customizados */
.custom-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1), 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.card-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-text {
    color: #a0a0a0;
    line-height: 1.6;
}

/* Ícones e elementos visuais */
.step-icon, .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.step-icon:hover, .benefit-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

/* Categorias de planos */
.category-card {
    height: 100%;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.2rem;
    color: white;
}

.category-desc {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
}

.plan-selector {
    text-align: left;
}

.plan-selector .form-label {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Labels dos formulários */
.form-label {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Texto de aviso */
.text-muted {
    color: #a0a0a0 !important;
}

/* Botões de marca customizados */
.brand-button {
    display: block;
    width: 100%;
    padding: 1rem;
    border: 2px solid #333333;
    border-radius: 12px;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.brand-button:hover {
    border-color: #8b5cf6;
    background: #2a1a3a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
}

/* Quando o radio button está selecionado */
input[type="radio"]:checked + .brand-button,
input[type="radio"]:checked ~ .brand-button {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Focus para acessibilidade */
input[type="radio"]:focus + .brand-button {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 0.25rem rgba(139, 92, 246, 0.25);
}

.step-number {
    color: #8b5cf6;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}


/* Formulários */
.custom-input, .custom-select {
    background: #1a1a1a;
    border: 1px solid #333333;
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 15px;
}

.custom-input:focus, .custom-select:focus {
    background: #1a1a1a;
    border-color: #8b5cf6;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.custom-input::placeholder {
    color: #666666;
}

/* Botões */
.notify-button, .waitlist-button {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
}

.notify-button:hover, .waitlist-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
    color: white;
}

/* Simulador de planos */
.plan-details {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.plan-category {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.plan-model {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.plan-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-label {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.plan-value {
    color: #ffffff;
    font-weight: 600;
}

.plan-duration, .plan-upgrades, .plan-deposit {
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* Tabela */
.table-dark {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
}

.table-dark th {
    background: #2a2a2a;
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 1rem;
}

.table-dark td {
    border: none;
    color: #a0a0a0;
    padding: 1rem;
    border-bottom: 1px solid #333333;
}

.table-dark tbody tr:hover {
    background: #2a2a2a;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #333333;
}

.footer-brand {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-slogan {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-link {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #8b5cf6;
}

.footer-contact {
    color: #a0a0a0;
    margin-bottom: 0.5rem;
}

.footer-divider {
    border-color: #333333;
    margin: 2rem 0 1rem 0;
}

.footer-copyright {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    
    .custom-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

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

.custom-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Melhorias visuais */
.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed, #0891b2);
    transform: translateY(-2px);
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Melhorias de acessibilidade */
.custom-input:focus,
.custom-select:focus,
.btn:focus {
    outline: 2px solid #8b5cf6;
    outline-offset: 2px;
}

/* Texto da lista de espera */
.waitlist-description {
    color: #e0e0e0 !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.waitlist-urgency {
    color: #8b5cf6 !important;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    display: inline-block;
}

/* Estilo para radio buttons */
.form-check-input:checked {
    background-color: #8b5cf6;
    border-color: #8b5cf6;
}

.form-check-input:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 0.25rem rgba(139, 92, 246, 0.25);
}

/* Estilos para os novos planos */
.plans-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
}

.plans-container .plan-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.plans-container .plan-flex {
    min-height: 180px;
    height: 180px;
}

.plans-container .plan-fixo {
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.plan-option {
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.plan-fixo {
    background: #1a1a1a;
    border-color: #333333;
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.plan-flex {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-color: #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
    position: relative;
    min-height: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.plan-name {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

.plan-flex .plan-name {
    color: #8b5cf6;
}

.plan-price {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.plan-flex .plan-price {
    color: #8b5cf6;
    font-size: 1.2rem;
}

.plan-description {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
}

.plan-flex .plan-description {
    color: #e0e0e0;
}

.badge-recommended {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: #ffffff;
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    font-weight: 600;
    position: absolute;
    top: -8px;
    right: -8px;
    display: inline-block;
    animation: pulse-badge 2s ease-in-out infinite;
    z-index: 10;
    white-space: nowrap;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    }
}

.plans-footer-note {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.plans-footer-note small {
    color: #666666;
    font-size: 0.8rem;
}

.plans-footer-slogan {
    color: #8b5cf6;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0 0;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    display: inline-block;
}

.plans-footer-slogan strong {
    color: #8b5cf6;
}

/* Frase de síntese dos benefícios */
.benefits-summary {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    display: inline-block;
}

.benefits-summary strong {
    color: #8b5cf6;
}

/* Cards de categoria de desempenho */
.category-performance-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-performance-card:hover {
    transform: translateY(-3px);
    border-color: #8b5cf6;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.category-performance-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.category-performance-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.category-performance-content {
    flex: 1;
}

.category-performance-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.category-performance-gpus {
    color: #8b5cf6;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    white-space: nowrap;
}

.category-performance-desc {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.category-footer-note {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsividade para cards de categoria */
@media (max-width: 768px) {
    .category-performance-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        align-items: center;
    }
    
    .category-performance-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin: 0 auto;
    }
    
    .category-performance-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .category-performance-title {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .category-performance-gpus {
        font-size: 0.95rem;
        white-space: normal;
        text-align: center;
    }
    
    .category-performance-desc {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .category-performance-card {
        margin-bottom: 1rem;
    }
    
    .category-performance-gpus {
        font-size: 0.9rem;
    }
}

/* Tooltip styles */
.tooltip-trigger {
    position: relative;
    cursor: help;
    color: #8b5cf6;
    margin-left: 0.5rem;
    display: inline-block;
}

.tooltip-trigger:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.tooltip-trigger:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1a1a1a;
    margin-bottom: -5px;
    z-index: 1000;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .plans-container {
        gap: 0.75rem;
    }
    
    .plans-container .plan-option {
        min-height: 160px;
        height: 160px;
    }
    
    .plans-container .plan-flex {
        min-height: 160px;
        height: 160px;
    }
    
    .plans-container .plan-fixo {
        min-height: auto;
        height: auto;
    }
    
    .plan-option {
        padding: 0.75rem;
    }
    
    .plan-flex {
        min-height: 160px;
        height: 160px;
    }
    
    .plan-fixo {
        min-height: auto;
        height: auto;
    }
    
    .plan-header {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    .plan-name {
        font-size: 0.9rem;
    }
    
    .plan-price {
        font-size: 1rem;
    }
    
    .plan-flex .plan-price {
        font-size: 1.1rem;
    }
    
    .badge-recommended {
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem;
        top: -6px;
        right: -6px;
    }
    
    .tooltip-trigger:hover::after {
        white-space: normal;
        max-width: 200px;
        text-align: center;
    }
}

/* Mobile específico para planos */
@media (max-width: 576px) {
    .plans-container {
        gap: 1rem;
    }
    
    .plan-option {
        padding: 1rem;
    }
    
    .plan-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .tooltip-trigger {
        font-size: 0.8rem;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}

.faq-item.active {
    border-color: #8b5cf6;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(6, 182, 212, 0.05));
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.15));
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.faq-icon {
    color: #8b5cf6;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.faq-question span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-toggle {
    color: #8b5cf6;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: #06b6d4;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #1a1a1a;
}

.faq-answer p {
    color: #e0e0e0;
    margin: 0 0 1rem 0;
    padding: 0 1.5rem;
    line-height: 1.6;
}

.faq-answer p:first-child {
    padding-top: 1.5rem;
}

.faq-answer p:last-child {
    padding-bottom: 1.5rem;
    margin-bottom: 0;
}

.faq-answer strong {
    color: #8b5cf6;
    font-weight: 600;
}

/* Responsividade FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question-content {
        gap: 0.75rem;
    }
    
    .faq-icon {
        font-size: 1.1rem;
        width: 20px;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
    
    .faq-toggle {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-answer p:first-child {
        padding-top: 1.25rem;
    }
    
    .faq-answer p:last-child {
        padding-bottom: 1.25rem;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question-content {
        gap: 0.5rem;
    }
    
    .faq-icon {
        font-size: 1rem;
        width: 18px;
    }
    
    .faq-question span {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 1rem;
        font-size: 0.9rem;
    }
    
    .faq-answer p:first-child {
        padding-top: 1rem;
    }
    
    .faq-answer p:last-child {
        padding-bottom: 1rem;
    }
}

/* Correções de alinhamento para planos GPUHub+ */
.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: nowrap;
    gap: 0.5rem;
    min-height: 2rem;
}

.plan-name {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
    flex: 1;
    min-width: 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.plan-flex .plan-name {
    color: #8b5cf6;
}

.plan-price {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.plan-flex .plan-price {
    color: #8b5cf6;
    font-size: 1.2rem;
}

.plan-description {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
    line-height: 1.4;
    display: block;
}

.plan-flex .plan-description {
    color: #e0e0e0;
}

.plan-flex .plan-description i {
    color: #8b5cf6;
    font-size: 0.8rem;
    margin-right: 0.25rem;
    width: 12px;
    text-align: center;
}

.plan-flex .plan-description .tooltip-trigger {
    color: #8b5cf6;
    font-size: 0.7rem;
    margin-left: 0.25rem;
    cursor: help;
}

.plan-flex .plan-description .tooltip-trigger:hover {
    color: #06b6d4;
}

/* Alinhamento específico para ícones e texto */
.plan-description i {
    display: inline-block;
    margin-right: 0.25rem;
    width: 12px;
    text-align: center;
}

/* Responsividade melhorada para planos */
@media (max-width: 768px) {
    .plan-header {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        min-height: 2rem;
        flex-wrap: nowrap;
    }
    
    .plan-name {
        font-size: 0.9rem;
        white-space: nowrap;
        flex-shrink: 1;
    }
    
    .plan-price {
        text-align: right;
        font-size: 0.95rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .plan-flex .plan-price {
        font-size: 1rem;
    }
    
    .plan-description {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .plan-description i {
        font-size: 0.75rem;
    }
}

/* Para telas muito pequenas */
@media (max-width: 480px) {
    .plan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        min-height: auto;
    }
    
    .plan-name {
        font-size: 0.9rem;
    }
    
    .plan-price {
        text-align: left;
        font-size: 0.9rem;
    }
}

/* Estilos para nova seção de GPUs */
.gpu-card {
    height: 100%;
    transition: all 0.3s ease;
}

.gpu-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.gpu-card.coming-soon {
    opacity: 0.7;
    position: relative;
}

.gpu-card.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 15px;
    z-index: 1;
}

.gpu-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.2rem;
    color: white;
}


.pricing-container {
    margin-bottom: 1.5rem;
}


.rental-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rental-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.rental-option:hover {
    border-color: #8b5cf6;
    background: #2a1a3a;
}

.rental-option.recommended {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
}

.rental-option.best {
    border-color: #06b6d4;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
}

.rental-option.selected {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: white;
}

.rental-option.selected .rental-period,
.rental-option.selected .rental-price {
    color: white;
}

.rental-period {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.rental-price {
    color: #8b5cf6;
    font-weight: 700;
    font-size: 1rem;
}

.rental-option.selected .rental-price {
    color: white;
}

.discount-badge {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    font-weight: 600;
    position: absolute;
    top: -8px;
    right: -8px;
    animation: pulse-badge 2s ease-in-out infinite;
}

.coming-soon-badge {
    text-align: center;
}

.coming-soon-badge-top {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.badge-coming-soon {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: white;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    display: inline-block;
    animation: pulse-badge 2s ease-in-out infinite;
}

/* Responsividade para nova seção de GPUs */
@media (max-width: 768px) {
    .gpu-card {
        margin-bottom: 1.5rem;
    }
    
    .rental-option {
        padding: 0.6rem;
    }
    
    .rental-period {
        font-size: 0.85rem;
    }
    
    .rental-price {
        font-size: 0.9rem;
    }
    
    .discount-badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.3rem;
        top: -6px;
        right: -6px;
    }
    
    /* Empilhamento vertical em mobile */
    .row.g-4 {
        gap: 1.5rem !important;
    }
    
    .col-lg-3 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .rental-options {
        gap: 0.4rem;
    }
    
    .rental-option {
        padding: 0.5rem;
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .rental-period {
        font-size: 0.8rem;
    }
    
    .rental-price {
        font-size: 0.85rem;
    }
}