/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-dl9zjfm1lr] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-dl9zjfm1lr] {
    flex: 1;
}

.sidebar[b-dl9zjfm1lr] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-dl9zjfm1lr] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-dl9zjfm1lr]  a, .top-row[b-dl9zjfm1lr]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-dl9zjfm1lr]  a:hover, .top-row[b-dl9zjfm1lr]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-dl9zjfm1lr]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-dl9zjfm1lr] {
        justify-content: space-between;
    }

    .top-row[b-dl9zjfm1lr]  a, .top-row[b-dl9zjfm1lr]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-dl9zjfm1lr] {
        flex-direction: row;
    }

    .sidebar[b-dl9zjfm1lr] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-dl9zjfm1lr] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-dl9zjfm1lr]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-dl9zjfm1lr], article[b-dl9zjfm1lr] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

.footer p[b-dl9zjfm1lr] {
    margin: 0;
    font-size: 0.875rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .header-content[b-dl9zjfm1lr] {
        padding: 1rem;
    }

    .header-nav[b-dl9zjfm1lr] {
        gap: 1rem;
    }

    .header-nav a:not(.btn-nav-login)[b-dl9zjfm1lr] {
        display: none;
    }

    .footer-links[b-dl9zjfm1lr] {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* /Pages/Checkout.razor.rz.scp.css */
/* ============================================================================
   CHECKOUT PAGE - PALETA uDialog
   Cores principais: Teal #14B8A6 | Navy #0B1220 | White #EDEDED
   ============================================================================ */

:root[b-cppxat2hwn] {
    --udialog-teal: #14B8A6;
    --udialog-teal-dark: #0F9990;
    --udialog-teal-light: #2DD4BF;
    --udialog-navy: #0B1220;
    --udialog-navy-light: #1A2332;
    --udialog-white: #EDEDED;
    --udialog-gray: #6B7280;
    --udialog-gray-light: #F3F4F6;
}

/* ============================================================================
   HERO SECTION - FUNDO NAVY ESCURO (IGUAL AO FOOTER)
   ============================================================================ */

.hero[b-cppxat2hwn] {
    background: var(--udialog-navy);
    color: var(--udialog-white);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho sutil com a cor teal */
.hero[b-cppxat2hwn]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero[b-cppxat2hwn]::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container[b-cppxat2hwn] {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content[b-cppxat2hwn] {
    display: flex;
    flex-direction: column;
}

.hero-badge[b-cppxat2hwn] {
    display: inline-block;
    background: rgba(20, 184, 166, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(20, 184, 166, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--udialog-teal-light);
    align-self: flex-start;
}

.hero-title[b-cppxat2hwn] {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--udialog-white);
}

.gradient-text[b-cppxat2hwn] {
    background: linear-gradient(135deg, var(--udialog-teal) 0%, var(--udialog-teal-light) 100%);
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
    background-clip: text;
}

.hero-subtitle[b-cppxat2hwn] {
    font-size: 1.25rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--udialog-white);
}

/* ============================================================================
   INTEGRAÇÕES NATIVAS
   ============================================================================ */

.integrations-section[b-cppxat2hwn] {
    margin-top: 2rem;
}

.integrations-title[b-cppxat2hwn] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--udialog-white);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.integrations-grid[b-cppxat2hwn] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.75rem;
}

.integration-item[b-cppxat2hwn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.2s;
    cursor: default;
}

.integration-item:hover[b-cppxat2hwn] {
    background: rgba(20, 184, 166, 0.15);
    border-color: rgba(20, 184, 166, 0.3);
    transform: translateY(-2px);
}

.integration-item.more[b-cppxat2hwn] {
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.integration-icon[b-cppxat2hwn] {
    font-size: 1.5rem;
}

.integration-name[b-cppxat2hwn] {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--udialog-white);
    text-align: center;
    opacity: 0.9;
}

.hero-features[b-cppxat2hwn] {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item[b-cppxat2hwn] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--udialog-white);
}

.feature-icon[b-cppxat2hwn] {
    font-size: 1.25rem;
}

.hero-image[b-cppxat2hwn] {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.logo-hero[b-cppxat2hwn] {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(20, 184, 166, 0.3));
    animation: float-b-cppxat2hwn 3s ease-in-out infinite;
}

@keyframes float-b-cppxat2hwn {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-badge[b-cppxat2hwn] {
    background: white;
    color: var(--udialog-navy);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 0.75rem;
    align-items: center;
    border: 2px solid var(--udialog-teal);
    align-self: center;
}

.badge-icon[b-cppxat2hwn] {
    font-size: 2rem;
}

.floating-badge strong[b-cppxat2hwn] {
    display: block;
    font-size: 1.125rem;
    color: var(--udialog-navy);
}

.floating-badge small[b-cppxat2hwn] {
    display: block;
    color: var(--udialog-gray);
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .hero-container[b-cppxat2hwn] {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content[b-cppxat2hwn] {
        align-items: center;
    }

    .hero-badge[b-cppxat2hwn] {
        align-self: center;
    }

    .hero-title[b-cppxat2hwn] {
        font-size: 2.5rem;
    }

    .hero-features[b-cppxat2hwn] {
        justify-content: center;
    }

    .integrations-grid[b-cppxat2hwn] {
        justify-content: center;
    }

    .logo-hero[b-cppxat2hwn] {
        max-width: 250px;
    }

    .floating-badge[b-cppxat2hwn] {
        margin-top: 1rem;
    }
}

@media (max-width: 640px) {
    .hero[b-cppxat2hwn] {
        padding: 3rem 1.5rem;
    }

    .hero-title[b-cppxat2hwn] {
        font-size: 2rem;
    }

    .hero-subtitle[b-cppxat2hwn] {
        font-size: 1.125rem;
    }

    .hero-features[b-cppxat2hwn] {
        gap: 1rem;
    }

    .feature-item[b-cppxat2hwn] {
        font-size: 0.9375rem;
    }

    .hero-image[b-cppxat2hwn] {
        gap: 1.5rem;
    }

    .integrations-grid[b-cppxat2hwn] {
        grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
        gap: 0.5rem;
    }

    .integration-item[b-cppxat2hwn] {
        padding: 0.5rem 0.25rem;
    }

    .integration-icon[b-cppxat2hwn] {
        font-size: 1.25rem;
    }

    .integration-name[b-cppxat2hwn] {
        font-size: 0.625rem;
    }
}

/* ============================================================================
   CHECKOUT SECTION
   ============================================================================ */

.checkout-section[b-cppxat2hwn] {
    padding: 4rem 2rem;
    background: var(--udialog-gray-light);
}

.checkout-container[b-cppxat2hwn] {
    max-width: 900px;
    margin: 0 auto;
}

.checkout-form[b-cppxat2hwn] {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* ============================================================================
   FORM STEPS - ESPAÇAMENTO REDUZIDO
   ============================================================================ */

.form-step[b-cppxat2hwn] {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--udialog-gray-light);
}

.form-step:last-of-type[b-cppxat2hwn] {
    border-bottom: none;
    padding-bottom: 0;
}

.step-title[b-cppxat2hwn] {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--udialog-navy);
    margin-bottom: 1.5rem;
}

.step-number[b-cppxat2hwn] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--udialog-teal), var(--udialog-teal-dark));
    color: white;
    border-radius: 50%;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(20, 184, 166, 0.3);
}

/* ============================================================================
   FORM ELEMENTS - INPUTS TOTALMENTE ARREDONDADOS
   ============================================================================ */

.form-grid[b-cppxat2hwn] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .form-grid[b-cppxat2hwn] {
        grid-template-columns: 1fr;
    }
}

.form-group[b-cppxat2hwn] {
    margin-bottom: 1.5rem;
}

.form-label[b-cppxat2hwn] {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--udialog-navy);
    margin-bottom: 0.5rem;
}

/* CORREÇÃO: InputText com border-radius completo */
.form-input[b-cppxat2hwn],
[b-cppxat2hwn] .form-input,
[b-cppxat2hwn] input.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px !important;
    transition: all 0.2s;
    color: var(--udialog-navy);
}

.form-input:focus[b-cppxat2hwn],
[b-cppxat2hwn] .form-input:focus,
[b-cppxat2hwn] input.form-input:focus {
    outline: none;
    border-color: var(--udialog-teal);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-input[b-cppxat2hwn]::placeholder,
[b-cppxat2hwn] .form-input::placeholder,
[b-cppxat2hwn] input.form-input::placeholder {
    color: var(--udialog-gray);
}

.input-with-addon[b-cppxat2hwn] {
    display: flex;
}

.input-with-addon .form-input[b-cppxat2hwn],
.input-with-addon[b-cppxat2hwn]  .form-input,
.input-with-addon[b-cppxat2hwn]  input.form-input {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: none;
}

.input-addon[b-cppxat2hwn] {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    background: var(--udialog-gray-light);
    border: 2px solid #e5e7eb;
    border-left: none;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    font-weight: 600;
    color: var(--udialog-gray);
    white-space: nowrap;
}

.input-hint[b-cppxat2hwn] {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.input-hint.success[b-cppxat2hwn] {
    color: var(--udialog-teal);
    font-weight: 600;
}

.input-hint.error[b-cppxat2hwn] {
    color: #ef4444;
    font-weight: 600;
}

.input-hint.checking[b-cppxat2hwn] {
    color: var(--udialog-gray);
}

.validation-error[b-cppxat2hwn] {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #ef4444;
    font-weight: 500;
}

/* ============================================================================
   PAYMENT OPTIONS
   ============================================================================ */

.payment-grid[b-cppxat2hwn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.payment-option[b-cppxat2hwn] {
    position: relative;
    cursor: pointer;
}

.payment-radio[b-cppxat2hwn] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-card[b-cppxat2hwn] {
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s;
    background: white;
}

.payment-option:hover .payment-card[b-cppxat2hwn] {
    border-color: var(--udialog-teal);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(20, 184, 166, 0.15);
}

.payment-option.selected .payment-card[b-cppxat2hwn] {
    border-color: var(--udialog-teal);
    background: rgba(20, 184, 166, 0.05);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.payment-badge[b-cppxat2hwn] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    background: var(--udialog-gray);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.payment-badge.best[b-cppxat2hwn] {
    background: linear-gradient(135deg, var(--udialog-teal), var(--udialog-teal-dark));
    box-shadow: 0 4px 10px rgba(20, 184, 166, 0.3);
}

.payment-icon[b-cppxat2hwn] {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.payment-card h4[b-cppxat2hwn] {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--udialog-navy);
}

.payment-price[b-cppxat2hwn] {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--udialog-teal);
    margin-bottom: 0.25rem;
}

.payment-discount[b-cppxat2hwn] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--udialog-teal);
    margin-bottom: 1rem;
}

.payment-total[b-cppxat2hwn] {
    font-size: 0.875rem;
    color: var(--udialog-gray);
    margin-bottom: 1rem;
}

.payment-features[b-cppxat2hwn] {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.payment-features li[b-cppxat2hwn] {
    font-size: 0.875rem;
    color: var(--udialog-gray);
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.payment-features li[b-cppxat2hwn]::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--udialog-teal);
    font-weight: 700;
}

/* ============================================================================
   SUBMIT BUTTON
   ============================================================================ */

.btn-primary[b-cppxat2hwn] {
    width: 100%;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--udialog-teal), var(--udialog-teal-dark));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.btn-primary:hover:not(:disabled)[b-cppxat2hwn] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.4);
    /*background: linear-gradient(135deg, var(--udialog-teal-light), var(--udialog-teal));*/
    background-color:   var(--udialog-navy);
}

.btn-primary:active:not(:disabled)[b-cppxat2hwn] {
    transform: translateY(0);
}

.btn-primary:disabled[b-cppxat2hwn] {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner[b-cppxat2hwn] {
    width: 1.25rem;
    height: 1.25rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-cppxat2hwn 0.8s linear infinite;
}

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

/* ============================================================================
   TRUST BADGES
   ============================================================================ */

.trust-badges[b-cppxat2hwn] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 2px solid var(--udialog-gray-light);
    font-size: 0.875rem;
    color: var(--udialog-gray);
}

.trust-badges span[b-cppxat2hwn] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================================================
   ALERTS
   ============================================================================ */

.alert[b-cppxat2hwn] {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-error[b-cppxat2hwn] {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.alert-icon[b-cppxat2hwn] {
    font-size: 1.25rem;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 768px) {
    .checkout-form[b-cppxat2hwn] {
        padding: 2rem 1.5rem;
    }

    .hero[b-cppxat2hwn] {
        padding: 3rem 1.5rem;
    }

    .payment-grid[b-cppxat2hwn] {
        grid-template-columns: 1fr;
    }

    .hero-title[b-cppxat2hwn] {
        font-size: 2rem;
    }

    .step-title[b-cppxat2hwn] {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .checkout-form[b-cppxat2hwn] {
        padding: 1.5rem 1rem;
    }

    .hero[b-cppxat2hwn] {
        padding: 2rem 1rem;
    }

    .hero-title[b-cppxat2hwn] {
        font-size: 1.75rem;
    }

    .hero-badge[b-cppxat2hwn] {
        font-size: 0.8125rem;
    }

    .floating-badge[b-cppxat2hwn] {
        padding: 0.75rem 1rem;
    }

    .floating-badge strong[b-cppxat2hwn] {
        font-size: 1rem;
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* ============================================================================
   CHECKOUT PAGE - PALETA uDialog
   Cores principais: Teal #14B8A6 | Navy #0B1220 | White #EDEDED
   ============================================================================ */

:root[b-ax7f1a1itg] {
    --udialog-teal: #14B8A6;
    --udialog-teal-dark: #0F9990;
    --udialog-teal-light: #2DD4BF;
    --udialog-navy: #0B1220;
    --udialog-navy-light: #1A2332;
    --udialog-white: #EDEDED;
    --udialog-gray: #6B7280;
    --udialog-gray-light: #F3F4F6;
}

/* ============================================================================
   HERO SECTION - FUNDO NAVY ESCURO
   ============================================================================ */

.hero[b-ax7f1a1itg] {
    background: var(--udialog-navy);
    color: var(--udialog-white);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Efeito de brilho sutil com a cor teal */
.hero[b-ax7f1a1itg]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero[b-ax7f1a1itg]::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container[b-ax7f1a1itg] {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content[b-ax7f1a1itg] {
    display: flex;
    flex-direction: column;
}

.hero-badge[b-ax7f1a1itg] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--udialog-teal-light);
}

.badge-rocket[b-ax7f1a1itg] {
    font-size: 1rem;
}

.hero-title[b-ax7f1a1itg] {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--udialog-white);
}

.gradient-text[b-ax7f1a1itg] {
    color: var(--udialog-teal-light);
    position: relative;
}

.hero-tagline[b-ax7f1a1itg] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--udialog-white);
    opacity: 0.9;
    margin-bottom: 1rem;
}

.hero-subtitle[b-ax7f1a1itg] {
    font-size: 1.125rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--udialog-white);
    max-width: 540px;
}

.hero-cta[b-ax7f1a1itg] {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-primary-hero[b-ax7f1a1itg] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--udialog-teal), var(--udialog-teal-dark));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.btn-primary-hero:focus[b-ax7f1a1itg],
.btn-secondary-hero:focus[b-ax7f1a1itg],
.btn-primary-cta:focus[b-ax7f1a1itg] {
    outline: none;
}

.btn-primary-hero:focus-visible[b-ax7f1a1itg],
.btn-secondary-hero:focus-visible[b-ax7f1a1itg],
.btn-primary-cta:focus-visible[b-ax7f1a1itg] {
    outline: 3px solid var(--udialog-teal);
    outline-offset: 3px;
}

.btn-primary-hero:hover[b-ax7f1a1itg] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.4);
    background: linear-gradient(135deg, var(--udialog-teal-light), var(--udialog-teal));
}

.btn-secondary-hero[b-ax7f1a1itg] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--udialog-white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-secondary-hero:hover[b-ax7f1a1itg] {
    border-color: var(--udialog-teal);
    background: rgba(20, 184, 166, 0.1);
}

.hero-trust[b-ax7f1a1itg] {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-item[b-ax7f1a1itg] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--udialog-white);
    opacity: 0.9;
}

.trust-check[b-ax7f1a1itg] {
    color: var(--udialog-teal-light);
    font-weight: 700;
}

.hero-image[b-ax7f1a1itg] {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
}

.logo-hero[b-ax7f1a1itg] {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(20, 184, 166, 0.3));
    animation: float-b-ax7f1a1itg 3s ease-in-out infinite;
}

@keyframes float-b-ax7f1a1itg {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-stats[b-ax7f1a1itg] {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--udialog-teal);
}

.stat-item[b-ax7f1a1itg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number[b-ax7f1a1itg] {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--udialog-teal);
}

.stat-label[b-ax7f1a1itg] {
    font-size: 0.75rem;
    color: var(--udialog-gray);
    font-weight: 500;
}

/* ============================================================================
   EXAMPLE SECTION - Imagem de demonstração
   ============================================================================ */

.example-section[b-ax7f1a1itg] {
    padding: 4rem 2rem 6rem;
    background: white;
    position: relative;
    overflow: hidden;
}

.example-container[b-ax7f1a1itg] {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.example-image[b-ax7f1a1itg] {
    width: 100%;
    max-width: 1100px;
    height: auto;
    border-radius: 16px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(20, 184, 166, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.example-image:hover[b-ax7f1a1itg] {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.5),
        0 15px 40px rgba(20, 184, 166, 0.2);
}

/* ============================================================================
   FEATURES SECTION
   ============================================================================ */

.features-section[b-ax7f1a1itg] {
    padding: 6rem 2rem;
    background: var(--udialog-gray-light);
}

.features-container[b-ax7f1a1itg] {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title[b-ax7f1a1itg] {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--udialog-navy);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle[b-ax7f1a1itg] {
    font-size: 1.25rem;
    color: var(--udialog-gray);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid[b-ax7f1a1itg] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card[b-ax7f1a1itg] {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover[b-ax7f1a1itg] {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-box[b-ax7f1a1itg] {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(20, 184, 166, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.feature-card h3[b-ax7f1a1itg] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--udialog-navy);
    margin-bottom: 0.75rem;
}

.feature-card p[b-ax7f1a1itg] {
    font-size: 1rem;
    color: var(--udialog-gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================================
   CHANNELS SECTION
   ============================================================================ */

.channels-section[b-ax7f1a1itg] {
    padding: 6rem 2rem;
    background: white;
}

.channels-container[b-ax7f1a1itg] {
    max-width: 1280px;
    margin: 0 auto;
}

.channels-grid[b-ax7f1a1itg] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.channel-item[b-ax7f1a1itg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: var(--udialog-gray-light);
    border-radius: 12px;
    transition: all 0.2s;
    min-width: 120px;
}

.channel-item:hover[b-ax7f1a1itg] {
    background: rgba(20, 184, 166, 0.1);
    transform: translateY(-4px);
}

.channel-icon[b-ax7f1a1itg] {
    font-size: 2rem;
}

.channel-name[b-ax7f1a1itg] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--udialog-navy);
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */

.cta-section[b-ax7f1a1itg] {
    padding: 6rem 2rem;
    background: var(--udialog-navy);
}

.cta-container[b-ax7f1a1itg] {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title[b-ax7f1a1itg] {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--udialog-white);
    margin-bottom: 1rem;
}

.cta-subtitle[b-ax7f1a1itg] {
    font-size: 1.25rem;
    color: var(--udialog-white);
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-buttons[b-ax7f1a1itg] {
    margin-bottom: 2rem;
}

.btn-primary-cta[b-ax7f1a1itg] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--udialog-teal), var(--udialog-teal-dark));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.btn-primary-cta:hover[b-ax7f1a1itg] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.4);
    background: linear-gradient(135deg, var(--udialog-teal-light), var(--udialog-teal));
}

.cta-features[b-ax7f1a1itg] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--udialog-white);
    opacity: 0.9;
}

.cta-features span[b-ax7f1a1itg] {
    font-size: 1rem;
}

/* ============================================================================
   RESPONSIVE - HERO
   ============================================================================ */

@media (max-width: 1024px) {
    .hero-container[b-ax7f1a1itg] {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content[b-ax7f1a1itg] {
        align-items: center;
    }

    .hero-title[b-ax7f1a1itg] {
        font-size: 3rem;
    }

    .hero-tagline[b-ax7f1a1itg] {
        font-size: 1.25rem;
    }

    .hero-subtitle[b-ax7f1a1itg] {
        max-width: 100%;
    }

    .hero-cta[b-ax7f1a1itg] {
        justify-content: center;
    }

    .hero-trust[b-ax7f1a1itg] {
        justify-content: center;
    }

    .logo-hero[b-ax7f1a1itg] {
        max-width: 280px;
    }

    .floating-stats[b-ax7f1a1itg] {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 2rem;
    }

    .features-grid[b-ax7f1a1itg] {
        grid-template-columns: repeat(2, 1fr);
    }

    .example-section[b-ax7f1a1itg] {
        padding: 3rem 1.5rem 5rem;
    }
    
    .example-image[b-ax7f1a1itg] {
        max-width: 100%;
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .hero[b-ax7f1a1itg] {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .hero-title[b-ax7f1a1itg] {
        font-size: 2.5rem;
    }

    .hero-tagline[b-ax7f1a1itg] {
        font-size: 1.125rem;
    }

    .hero-subtitle[b-ax7f1a1itg] {
        font-size: 1rem;
    }

    .hero-cta[b-ax7f1a1itg] {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-hero[b-ax7f1a1itg],
    .btn-secondary-hero[b-ax7f1a1itg] {
        width: 100%;
    }

    .hero-trust[b-ax7f1a1itg] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .features-section[b-ax7f1a1itg],
    .channels-section[b-ax7f1a1itg],
    .cta-section[b-ax7f1a1itg] {
        padding: 4rem 1.5rem;
    }

    .features-grid[b-ax7f1a1itg] {
        grid-template-columns: 1fr;
    }

    .section-title[b-ax7f1a1itg] {
        font-size: 2rem;
    }

    .cta-title[b-ax7f1a1itg] {
        font-size: 2rem;
    }

    .cta-features[b-ax7f1a1itg] {
        gap: 1rem;
    }

    .example-section[b-ax7f1a1itg] {
        padding: 2.5rem 1rem 4rem;
    }
    
    .example-image[b-ax7f1a1itg] {
        border-radius: 10px;
        box-shadow: 
            0 15px 50px rgba(0, 0, 0, 0.3),
            0 8px 20px rgba(20, 184, 166, 0.1);
    }
}

@media (max-width: 480px) {
    .hero[b-ax7f1a1itg] {
        padding: 3rem 1rem;
    }

    .hero-badge[b-ax7f1a1itg] {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .hero-title[b-ax7f1a1itg] {
        font-size: 2rem;
    }

    .hero-tagline[b-ax7f1a1itg] {
        font-size: 1rem;
    }

    .hero-subtitle[b-ax7f1a1itg] {
        font-size: 0.9375rem;
    }

    .channels-grid[b-ax7f1a1itg] {
        gap: 1rem;
    }

    .channel-item[b-ax7f1a1itg] {
        min-width: 100px;
        padding: 1rem;
    }

    .example-section[b-ax7f1a1itg] {
        padding: 2rem 0.75rem 3rem;
    }
    
    .example-image[b-ax7f1a1itg] {
        border-radius: 8px;
    }
}

/* ============================================================================
   FLOATING BADGE (mantido para compatibilidade)
   ============================================================================ */

.floating-badge[b-ax7f1a1itg] {
    background: white;
    color: var(--udialog-navy);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 0.75rem;
    align-items: center;
    border: 2px solid var(--udialog-teal);
    align-self: center;
}

.badge-icon[b-ax7f1a1itg] {
    font-size: 2rem;
}

.floating-badge strong[b-ax7f1a1itg] {
    display: block;
    font-size: 1.125rem;
    color: var(--udialog-navy);
}

.floating-badge small[b-ax7f1a1itg] {
    display: block;
    color: var(--udialog-gray);
    font-size: 0.875rem;
}
/* /Pages/PrivacyPolicy.razor.rz.scp.css */
/* ============================================================================
   PRIVACY POLICY PAGE - PALETA uDialog
   Cores principais: Teal #14B8A6 | Navy #0B1220 | White #EDEDED
   ============================================================================ */

:root[b-6r94ojvr6h] {
    --udialog-teal: #14B8A6;
    --udialog-teal-dark: #0F9990;
    --udialog-teal-light: #2DD4BF;
    --udialog-navy: #0B1220;
    --udialog-navy-light: #1A2332;
    --udialog-white: #EDEDED;
    --udialog-gray: #6B7280;
    --udialog-gray-light: #F3F4F6;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.policy-hero[b-6r94ojvr6h] {
    background: var(--udialog-navy);
    color: var(--udialog-white);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.policy-hero[b-6r94ojvr6h]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.policy-hero[b-6r94ojvr6h]::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.policy-hero-container[b-6r94ojvr6h] {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.policy-hero-content[b-6r94ojvr6h] {
    text-align: center;
}

.policy-badge[b-6r94ojvr6h] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 184, 166, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(20, 184, 166, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--udialog-teal-light);
}

.badge-icon[b-6r94ojvr6h] {
    font-size: 1rem;
}

.policy-title[b-6r94ojvr6h] {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--udialog-white);
}

.policy-subtitle[b-6r94ojvr6h] {
    font-size: 1.125rem;
    opacity: 0.75;
    color: var(--udialog-white);
}

/* ============================================================================
   CONTENT SECTION
   ============================================================================ */

.policy-content[b-6r94ojvr6h] {
    padding: 4rem 2rem;
    background: var(--udialog-gray-light);
}

.policy-container[b-6r94ojvr6h] {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

/* ============================================================================
   NAVIGATION SIDEBAR
   ============================================================================ */

.policy-nav[b-6r94ojvr6h] {
    position: relative;
}

.nav-sticky[b-6r94ojvr6h] {
    position: sticky;
    top: 2rem;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.nav-title[b-6r94ojvr6h] {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--udialog-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--udialog-gray-light);
}

.nav-list[b-6r94ojvr6h] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li[b-6r94ojvr6h] {
    margin-bottom: 0.5rem;
}

.nav-list a[b-6r94ojvr6h] {
    display: block;
    padding: 0.625rem 0.75rem;
    color: var(--udialog-gray);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-list a:hover[b-6r94ojvr6h] {
    background: rgba(20, 184, 166, 0.1);
    color: var(--udialog-teal-dark);
}

/* ============================================================================
   MAIN CONTENT
   ============================================================================ */

.policy-main[b-6r94ojvr6h] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.policy-section[b-6r94ojvr6h] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    scroll-margin-top: 2rem;
}

.section-header[b-6r94ojvr6h] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--udialog-gray-light);
}

.section-icon[b-6r94ojvr6h] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--udialog-teal), var(--udialog-teal-dark));
    border-radius: 12px;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(20, 184, 166, 0.3);
}

.section-header h2[b-6r94ojvr6h] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--udialog-navy);
    margin: 0;
}

.section-content[b-6r94ojvr6h] {
    color: var(--udialog-gray);
    line-height: 1.75;
}

.section-content p[b-6r94ojvr6h] {
    margin-bottom: 1rem;
}

.section-content p:last-child[b-6r94ojvr6h] {
    margin-bottom: 0;
}

/* ============================================================================
   SUBSECTIONS
   ============================================================================ */

.subsection[b-6r94ojvr6h] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--udialog-gray-light);
}

.subsection:first-child[b-6r94ojvr6h] {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.subsection h3[b-6r94ojvr6h] {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--udialog-navy);
    margin-bottom: 1rem;
}

/* ============================================================================
   INFO CARDS
   ============================================================================ */

.info-card[b-6r94ojvr6h] {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(20, 184, 166, 0.05);
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.info-card:last-child[b-6r94ojvr6h] {
    margin-bottom: 0;
}

.info-card.warning[b-6r94ojvr6h] {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
}

.info-card.info[b-6r94ojvr6h] {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.card-icon[b-6r94ojvr6h] {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card-content[b-6r94ojvr6h] {
    flex: 1;
}

.card-content strong[b-6r94ojvr6h] {
    display: block;
    font-size: 1rem;
    color: var(--udialog-navy);
    margin-bottom: 0.5rem;
}

.card-content p[b-6r94ojvr6h] {
    font-size: 0.9375rem;
    margin: 0;
    color: var(--udialog-gray);
}

/* ============================================================================
   LISTS
   ============================================================================ */

.policy-list[b-6r94ojvr6h] {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.policy-list li[b-6r94ojvr6h] {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--udialog-gray);
}

.policy-list li[b-6r94ojvr6h]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--udialog-teal);
    border-radius: 50%;
}

.rights-list li[b-6r94ojvr6h] {
    padding-left: 2rem;
}

.rights-list li[b-6r94ojvr6h]::before {
    display: none;
}

.right-icon[b-6r94ojvr6h] {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--udialog-teal);
    font-weight: 700;
}

/* ============================================================================
   CONTACT CARD
   ============================================================================ */

.contact-card[b-6r94ojvr6h] {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--udialog-gray-light);
    border-radius: 12px;
}

.contact-card h4[b-6r94ojvr6h] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--udialog-navy);
    margin-bottom: 0.75rem;
}

.contact-card > p[b-6r94ojvr6h] {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.contact-details[b-6r94ojvr6h] {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    font-size: 0.9375rem;
    line-height: 1.75;
}

/* ============================================================================
   LINKS
   ============================================================================ */

.policy-link[b-6r94ojvr6h] {
    color: var(--udialog-teal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.policy-link:hover[b-6r94ojvr6h] {
    color: var(--udialog-teal-dark);
    text-decoration: underline;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.policy-footer[b-6r94ojvr6h] {
    padding-top: 2rem;
    text-align: center;
}

.back-link[b-6r94ojvr6h] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--udialog-navy);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 999px;
    transition: all 0.2s;
}

.back-link:hover[b-6r94ojvr6h] {
    background: var(--udialog-navy-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 18, 32, 0.3);
}

.back-icon[b-6r94ojvr6h] {
    font-size: 1.25rem;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 1024px) {
    .policy-container[b-6r94ojvr6h] {
        grid-template-columns: 1fr;
    }

    .policy-nav[b-6r94ojvr6h] {
        display: none;
    }
}

@media (max-width: 768px) {
    .policy-hero[b-6r94ojvr6h] {
        padding: 3rem 1.5rem;
    }

    .policy-title[b-6r94ojvr6h] {
        font-size: 2rem;
    }

    .policy-content[b-6r94ojvr6h] {
        padding: 2rem 1rem;
    }

    .policy-section[b-6r94ojvr6h] {
        padding: 1.5rem;
    }

    .section-header[b-6r94ojvr6h] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .section-header h2[b-6r94ojvr6h] {
        font-size: 1.25rem;
    }

    .info-card[b-6r94ojvr6h] {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .policy-hero[b-6r94ojvr6h] {
        padding: 2rem 1rem;
    }

    .policy-title[b-6r94ojvr6h] {
        font-size: 1.75rem;
    }

    .policy-badge[b-6r94ojvr6h] {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .policy-section[b-6r94ojvr6h] {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .section-icon[b-6r94ojvr6h] {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
}
/* /Pages/TermsOfService.razor.rz.scp.css */
/* ============================================================================
   TERMS OF SERVICE PAGE - PALETA uDialog
   Cores principais: Teal #14B8A6 | Navy #0B1220 | White #EDEDED
   ============================================================================ */

:root[b-ztjr6mjwof] {
    --udialog-teal: #14B8A6;
    --udialog-teal-dark: #0F9990;
    --udialog-teal-light: #2DD4BF;
    --udialog-navy: #0B1220;
    --udialog-navy-light: #1A2332;
    --udialog-white: #EDEDED;
    --udialog-gray: #6B7280;
    --udialog-gray-light: #F3F4F6;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.policy-hero[b-ztjr6mjwof] {
    background: var(--udialog-navy);
    color: var(--udialog-white);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.policy-hero[b-ztjr6mjwof]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.policy-hero[b-ztjr6mjwof]::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.policy-hero-container[b-ztjr6mjwof] {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.policy-hero-content[b-ztjr6mjwof] {
    text-align: center;
}

.policy-badge[b-ztjr6mjwof] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 184, 166, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(20, 184, 166, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--udialog-teal-light);
}

.badge-icon[b-ztjr6mjwof] {
    font-size: 1rem;
}

.policy-title[b-ztjr6mjwof] {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--udialog-white);
}

.policy-subtitle[b-ztjr6mjwof] {
    font-size: 1.125rem;
    opacity: 0.75;
    color: var(--udialog-white);
}

/* ============================================================================
   CONTENT SECTION
   ============================================================================ */

.policy-content[b-ztjr6mjwof] {
    padding: 4rem 2rem;
    background: var(--udialog-gray-light);
}

.policy-container[b-ztjr6mjwof] {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

/* ============================================================================
   NAVIGATION SIDEBAR
   ============================================================================ */

.policy-nav[b-ztjr6mjwof] {
    position: relative;
}

.nav-sticky[b-ztjr6mjwof] {
    position: sticky;
    top: 2rem;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.nav-title[b-ztjr6mjwof] {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--udialog-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--udialog-gray-light);
}

.nav-list[b-ztjr6mjwof] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li[b-ztjr6mjwof] {
    margin-bottom: 0.5rem;
}

.nav-list a[b-ztjr6mjwof] {
    display: block;
    padding: 0.625rem 0.75rem;
    color: var(--udialog-gray);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-list a:hover[b-ztjr6mjwof] {
    background: rgba(20, 184, 166, 0.1);
    color: var(--udialog-teal-dark);
}

/* ============================================================================
   MAIN CONTENT
   ============================================================================ */

.policy-main[b-ztjr6mjwof] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.policy-section[b-ztjr6mjwof] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    scroll-margin-top: 2rem;
}

.section-header[b-ztjr6mjwof] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--udialog-gray-light);
}

.section-icon[b-ztjr6mjwof] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--udialog-teal), var(--udialog-teal-dark));
    border-radius: 12px;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(20, 184, 166, 0.3);
}

.section-header h2[b-ztjr6mjwof] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--udialog-navy);
    margin: 0;
}

.section-content[b-ztjr6mjwof] {
    color: var(--udialog-gray);
    line-height: 1.75;
}

.section-content p[b-ztjr6mjwof] {
    margin-bottom: 1rem;
}

.section-content p:last-child[b-ztjr6mjwof] {
    margin-bottom: 0;
}

/* ============================================================================
   SUBSECTIONS
   ============================================================================ */

.subsection[b-ztjr6mjwof] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--udialog-gray-light);
}

.subsection:first-child[b-ztjr6mjwof] {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.subsection h3[b-ztjr6mjwof] {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--udialog-navy);
    margin-bottom: 1rem;
}

/* ============================================================================
   INFO CARDS
   ============================================================================ */

.info-card[b-ztjr6mjwof] {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(20, 184, 166, 0.05);
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.info-card:last-child[b-ztjr6mjwof] {
    margin-bottom: 0;
}

.info-card.warning[b-ztjr6mjwof] {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
}

.info-card.info[b-ztjr6mjwof] {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.card-icon[b-ztjr6mjwof] {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card-content[b-ztjr6mjwof] {
    flex: 1;
}

.card-content strong[b-ztjr6mjwof] {
    display: block;
    font-size: 1rem;
    color: var(--udialog-navy);
    margin-bottom: 0.5rem;
}

.card-content p[b-ztjr6mjwof] {
    font-size: 0.9375rem;
    margin: 0;
    color: var(--udialog-gray);
}

/* ============================================================================
   LISTS
   ============================================================================ */

.policy-list[b-ztjr6mjwof] {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.policy-list li[b-ztjr6mjwof] {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--udialog-gray);
}

.policy-list li[b-ztjr6mjwof]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--udialog-teal);
    border-radius: 50%;
}

.rights-list li[b-ztjr6mjwof] {
    padding-left: 2rem;
}

.rights-list li[b-ztjr6mjwof]::before {
    display: none;
}

.right-icon[b-ztjr6mjwof] {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--udialog-teal);
    font-weight: 700;
}

/* ============================================================================
   CONTACT CARD
   ============================================================================ */

.contact-card[b-ztjr6mjwof] {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--udialog-gray-light);
    border-radius: 12px;
}

.contact-card h4[b-ztjr6mjwof] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--udialog-navy);
    margin-bottom: 0.75rem;
}

.contact-card > p[b-ztjr6mjwof] {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.contact-details[b-ztjr6mjwof] {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    font-size: 0.9375rem;
    line-height: 1.75;
}

/* ============================================================================
   LINKS
   ============================================================================ */

.policy-link[b-ztjr6mjwof] {
    color: var(--udialog-teal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.policy-link:hover[b-ztjr6mjwof] {
    color: var(--udialog-teal-dark);
    text-decoration: underline;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.policy-footer[b-ztjr6mjwof] {
    padding-top: 2rem;
    text-align: center;
}

.back-link[b-ztjr6mjwof] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--udialog-navy);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 999px;
    transition: all 0.2s;
}

.back-link:hover[b-ztjr6mjwof] {
    background: var(--udialog-navy-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 18, 32, 0.3);
}

.back-icon[b-ztjr6mjwof] {
    font-size: 1.25rem;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 1024px) {
    .policy-container[b-ztjr6mjwof] {
        grid-template-columns: 1fr;
    }

    .policy-nav[b-ztjr6mjwof] {
        display: none;
    }
}

@media (max-width: 768px) {
    .policy-hero[b-ztjr6mjwof] {
        padding: 3rem 1.5rem;
    }

    .policy-title[b-ztjr6mjwof] {
        font-size: 2rem;
    }

    .policy-content[b-ztjr6mjwof] {
        padding: 2rem 1rem;
    }

    .policy-section[b-ztjr6mjwof] {
        padding: 1.5rem;
    }

    .section-header[b-ztjr6mjwof] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .section-header h2[b-ztjr6mjwof] {
        font-size: 1.25rem;
    }

    .info-card[b-ztjr6mjwof] {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .policy-hero[b-ztjr6mjwof] {
        padding: 2rem 1rem;
    }

    .policy-title[b-ztjr6mjwof] {
        font-size: 1.75rem;
    }

    .policy-badge[b-ztjr6mjwof] {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .policy-section[b-ztjr6mjwof] {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .section-icon[b-ztjr6mjwof] {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
}
