body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0A1F44, #0F172A);
}

/* NAVBAR */
.braz-navbar {
    background: rgba(10, 31, 68, 0.9);
    backdrop-filter: blur(8px);
}

.nav-link:hover {
    color: #00FF88 !important;
}

/* HERO */
.hero-section {
    height: 100vh;
    padding-top: 80px;
}

.mock-screen {
    height: 300px;
    background: #1e293b;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
}

/* PLANOS */
.planos-section {
    background: #0F172A;
}

.braz-card {
    background: #1e293b;
    color: white;
    border: 1px solid rgba(0,255,136,0.2);
    transition: 0.3s;
}

.braz-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0,255,136,0.4);
}

.destaque {
    border: 2px solid #FFDF00;
}

/* FOOTER */
.braz-footer {
    background: #0A1F44;
    padding: 2rem 0;
}

.braz-footer a {
    color: #00FF88;
    text-decoration: none;
}

.braz-footer a:hover {
    color: #FFDF00;
}

/* MAIN CONTENT */
.main-content {
    min-height: calc(100vh - 200px);
}

/* SUBSCRIPTION PAGE */
.subscription-hero {
    background: linear-gradient(135deg, #0A1F44 0%, #1e293b 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.subscription-card {
    background: #1e293b;
    border: 1px solid rgba(0,255,136,0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    color: white;
}

.subscription-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.subscription-card.popular {
    border: 3px solid #FFDF00;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: #FFDF00;
    color: #0A1F44;
    padding: 5px 15px;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

.card-header-custom {
    background: linear-gradient(135deg, #0A1F44 0%, #1e293b 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0,255,136,0.2);
}

.price-display {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px 0;
    color: #00FF88;
}

.price-period {
    font-size: 1rem;
    opacity: 0.8;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
}

.feature-list li:before {
    content: "✓";
    color: #00FF88;
    font-weight: bold;
    margin-right: 10px;
}

.btn-subscribe {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    background: #00FF88;
    color: #0A1F44;
    border: none;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    background: #00CC6A;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.btn-subscribe.disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.coming-soon {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
}

.subscriptions-section {
    padding: 80px 0;
    background: #0F172A;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.section-title p {
    font-size: 1.2rem;
    color: #00FF88;
}

/* PRICING OPTIONS */
.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-option {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-option:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
}

.pricing-option.active {
    background: rgba(0, 255, 136, 0.3);
    border-color: #00FF88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.current-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00FF88;
    margin-bottom: 5px;
}

.period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.discount-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #FFDF00;
    color: #0A1F44;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
}
