/** CSS  MLM  V5.0
DIA 28/04/2026
V 5.0
SITE: DESIGNMP.NET
DEV: Mateus Paiano
*/

body {
    background-color: var(--fundo);
    color: var(--texto);
}

/* Header Premium Styles */
.header-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(var(--fundo-rgb), 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.header-premium.scrolled {
    background: rgba(var(--fundo-rgb), 0.95);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.header-premium .navbar {
    padding: 0.75rem 0;
    transition: padding 0.3s ease;
}

.header-premium.scrolled .navbar {
    padding: 0.5rem 0;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;


    max-height: 50px;
    max-width: 250px
}

.logo-img {
    max-width: 180px;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--texto), var(--botao));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

/* Mobile Menu Toggler */
.menu-toggler {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.toggler-line {
    width: 100%;
    height: 2px;
    background: var(--texto);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Navigation Links */
.nav-link {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--texto);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.nav-link:hover {
    opacity: 1;
    color: var(--botao);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 30px;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Dropdown Wrapper */
.dropdown-wrapper {
    position: relative;
}

/* Action Buttons */
.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--botao-rgb), 0.08);
    border: 1px solid rgba(var(--botao-rgb), 0.15);
    border-radius: 60px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--texto);
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(var(--botao-rgb), 0.15);
    border-color: rgba(var(--botao-rgb), 0.3);
    transform: translateY(-2px);
}

.lang-btn i:first-child {
    font-size: 1rem;
    color: var(--botao);
}

.theme-btn {
    padding: 8px 12px;
}

.theme-icon-active {
    width: 16px;
    height: 16px;
    color: var(--botao);
}

/* Dropdown Menu */
.dropdown-menu {
    background: rgba(var(--fundo-rgb), 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 8px;
    margin-top: 8px;
    min-width: 140px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: var(--texto);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(var(--botao-rgb), 0.1);
    color: var(--botao);
    transform: translateX(4px);
}

.dropdown-item.active {
    background: rgba(var(--botao-rgb), 0.15);
    color: var(--botao);
}

.dropdown-item svg {
    color: var(--botao);
}

/* Flag Icons */
.flag-icon {
    width: 20px;
    height: 15px;
    display: inline-block;
    background-size: cover;
}

.flag-icon-us {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cpath fill='%23bd3d44' d='M0 0h640v480H0'/%3E%3Cpath fill='%23fff' d='M0 0h640v369H0'/%3E%3Cpath fill='%231a2e7a' d='M0 0h300v240H0'/%3E%3C/svg%3E");
}

.flag-icon-br {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cpath fill='%239ac32e' d='M0 0h640v480H0z'/%3E%3Cpath fill='%23fecb00' d='M320 96L0 240l320 144 320-144-320-144z'/%3E%3Ccircle fill='%2328448c' cx='320' cy='240' r='72'/%3E%3C/svg%3E");
}

/* Dashboard Button */
.btn-dashboard {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border-radius: 60px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-dashboard:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px var(--botao);
    color: white;
}

/* Responsividade */
@media (max-width: 992px) {
    .menu-toggler {
        display: flex;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 250%;
        background: var(--menu) !important;
        backdrop-filter: blur(20px);
        padding: 80px 20px 30px;
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        margin: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 12px 0;
        text-align: center;
    }

    .nav-link::after {
        display: none;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        gap: 10px;
    }

    .dropdown-wrapper {
        width: 100%;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }

    .btn-dashboard {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .dropdown-menu {
        position: static !important;
        width: 100%;
        margin-top: 5px;
        transform: none !important;
    }
}

@media (max-width: 576px) {
    .logo-img {
        max-width: 140px;
        max-height: 35px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .action-btn span {
        display: inline;
    }
}

/* Menu Toggler Animation */
.menu-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 8px);
}

.menu-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
}

.menu-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -8px);
}



:root {
    --secondary: #2d2f6e;
    --accent: #00d4ff;
}

/* Hero Section Styles */
.hero-section {
    min-height: 90vh;
    background: linear-gradient(135deg, var(--fundo) 0%, var(--menu) 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

/* Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--titulo);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--botao);
    bottom: -50px;
    left: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 50%;
    left: 30%;
}

.shape-4 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -200px;
    right: -100px;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--texto);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--texto);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--botao) 0%, var(--titulo) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Stats Row */
.hero-stats-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 80px;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--texto);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Login Card */
.login-card-wrapper {
    position: relative;
    z-index: 2;
}

.login-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.card-header-custom {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--texto);
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Input Groups */
.input-group-custom {
    position: relative;
    margin-bottom: 1rem;
}

.input-group-custom .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.input-group-custom input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    color: var(--texto);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.input-group-custom input:focus {
    outline: none;
    border-color: var(--botao);
    background: rgba(255, 255, 255, 0.12);
}

.input-group-custom input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* 2FA Boxes */
.twofa-container {
    margin-bottom: 1rem;
}

.twofa-boxes {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.twofa-box {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--botao) !important;
    border-radius: 12px;
    color: var(--texto);
}

.twofa-box:focus {
    outline: none;
    border-color: var(--botao);
}

/* Buttons */
.btn-primary-glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border-radius: 60px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -5px var(--botao);
    color: white;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary-glow:hover .btn-glow {
    left: 100%;
}

.btn-login {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border: none;
    border-radius: 60px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -5px var(--botao);
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    color: var(--texto);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-google:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.login-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.twofa-trigger,
.forgot-link {
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

.twofa-trigger:hover,
.forgot-link:hover {
    color: var(--botao);
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider span {
    background: rgba(255, 255, 255, 0.03);
    padding: 0 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats-wrapper {
        border-radius: 32px;
    }

    .stats-row {
        flex-direction: column;
    }

    .stat-divider {
        width: 80px;
        height: 1px;
    }

    .login-card {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .twofa-box {
        width: 35px;
        height: 45px;
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }
}


/* Seção de Serviços Premium */
.services-premium {
    padding: 80px 0;
    position: relative;
    background: rgba(var(--fundo-rgb), 0.5);
    overflow: hidden;
}

/* Cabeçalho da Seção */
.services-premium .section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services-premium .section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(var(--botao-rgb), 0.1);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--botao-rgb), 0.2);
}

.services-premium .section-badge i {
    color: var(--botao);
    font-size: 0.9rem;
}

.services-premium .section-badge span {
    color: var(--texto);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.services-premium .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 15px;
}

.services-premium .gradient-text {
    background: linear-gradient(135deg, var(--botao) 0%, var(--titulo) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-premium .section-subtitle {
    color: rgba(var(--texto-rgb), 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Card de Serviço */
.service-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover .service-inner {
    transform: translateY(-8px);
    border-color: rgba(var(--botao-rgb), 0.3);
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.3);
}

/* Ícone do Serviço */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(var(--botao-rgb), 0.15), rgba(var(--titulo-rgb), 0.15));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.service-icon i {
    font-size: 2rem;
    color: var(--botao);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    transform: scale(1.05);
}

.service-card:hover .service-icon i {
    color: white;
    transform: scale(1.1);
}

/* Conteúdo */
.service-content {
    flex: 1;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description {
    color: rgba(var(--texto-rgb), 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Link de Ação */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--botao);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateX(0);
}

.service-link span {
    transition: all 0.3s ease;
}

.service-link i {
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Número do Card */
.service-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(var(--botao-rgb), 0.05);
    line-height: 1;
    transition: all 0.3s ease;
    font-family: monospace;
}

.service-card:hover .service-number {
    color: rgba(var(--botao-rgb), 0.1);
    transform: scale(1.1);
}

/* Background Decorativo */
.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--botao);
    top: -100px;
    left: -100px;
}

.bg-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--titulo);
    bottom: -150px;
    right: -150px;
}

.bg-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--botao);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Efeito de brilho nos cards */
.service-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.service-card:hover .service-inner::before {
    left: 100%;
}

/* Responsividade */
@media (max-width: 992px) {
    .services-premium {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .service-inner {
        padding: 30px 25px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.75rem;
    }

    .service-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .services-premium .section-title {
        font-size: 2rem;
    }

    .services-premium .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-link {
        opacity: 1;
        transform: translateX(0);
        margin-top: 10px;
    }

    .service-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .services-premium {
        padding: 50px 0;
    }

    .service-inner {
        padding: 25px 20px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.9rem;
    }
}

/* Seção de Planos Premium */
.pricing-premium {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, var(--fundo) 0%, rgba(var(--fundo-rgb), 0.8) 100%);
    overflow: hidden;
}

/* Cabeçalho da Seção */
.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(var(--botao-rgb), 0.1);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--botao-rgb), 0.2);
}

.section-badge i {
    color: var(--botao);
    font-size: 0.9rem;
}

.section-badge span {
    color: var(--texto);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 15px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--botao) 0%, var(--titulo) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    color: rgba(var(--texto-rgb), 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Planos */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    border-color: rgba(var(--botao-rgb), 0.3);
}

/* Card de Plano */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(var(--botao-rgb), 0.3);
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.5);
}

/* Card Popular */
.pricing-card.popular {
    border: 2px solid var(--botao);
    transform: scale(1.02);
    box-shadow: 0 20px 40px -15px rgba(var(--botao-rgb), 0.3);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

/* Cabeçalho do Card */
.card-header-premium {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(var(--botao-rgb), 0.2), rgba(var(--titulo-rgb), 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--botao);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 10px;
}

.plan-duration {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: rgba(var(--texto-rgb), 0.7);
}

/* Corpo do Card */
.card-body-premium {
    padding: 25px 30px;
}

.plan-price {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(var(--texto-rgb), 0.7);
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--texto);
    background: linear-gradient(135deg, var(--texto), var(--botao));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-period {
    font-size: 0.9rem;
    color: rgba(var(--texto-rgb), 0.5);
}

/* Features */
.plan-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(var(--botao-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--botao);
}

.feature-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--texto);
}

.feature-label {
    font-size: 0.75rem;
    color: rgba(var(--texto-rgb), 0.6);
    letter-spacing: 0.3px;
}

/* Rodapé do Card */
.card-footer-premium {
    padding: 20px 30px 30px;
}

.btn-plan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border-radius: 60px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-plan:hover::before {
    left: 100%;
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px var(--botao);
    color: white;
}

.popular .btn-plan {
    box-shadow: 0 10px 25px -5px var(--botao);
}

/* Responsividade */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-premium {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .header-premium .navbar {
        padding: 5px;
    }

    .card-header-premium,
    .card-body-premium,
    .card-footer-premium {
        padding-left: 20px;
        padding-right: 20px;
    }

    .price-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .plan-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}


/* Seção de Pagamentos Premium */
.payments-premium {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(var(--fundo-rgb), 0.3) 0%, rgba(var(--fundo-rgb), 0.8) 100%);
    overflow: hidden;
}

/* Cabeçalho da Seção */
.payments-premium .section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.payments-premium .section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(var(--botao-rgb), 0.1);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--botao-rgb), 0.2);
}

.payments-premium .section-badge i {
    color: var(--botao);
    font-size: 0.9rem;
}

.payments-premium .section-badge span {
    color: var(--texto);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.payments-premium .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 15px;
}

.payments-premium .gradient-text {
    background: linear-gradient(135deg, var(--botao) 0%, var(--titulo) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.payments-premium .section-subtitle {
    color: rgba(var(--texto-rgb), 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Banner Wrapper */
.banner-wrapper {
    position: relative;
    z-index: 2;
}

.banner-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Card de Pagamentos */
.payments-card-wrapper {
    position: relative;
    z-index: 2;
}

.payments-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.payments-card:hover {
    border-color: rgba(var(--botao-rgb), 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Cabeçalho do Card */
.card-header-premium {
    padding: 25px 30px;
    background: rgba(var(--botao-rgb), 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(var(--botao-rgb), 0.15), rgba(var(--titulo-rgb), 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon i {
    font-size: 1.5rem;
    color: var(--botao);
}

.header-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--texto);
    margin: 0 0 4px 0;
}

.header-subtitle {
    font-size: 0.8rem;
    color: rgba(var(--texto-rgb), 0.6);
    margin: 0;
}

.header-stats {
    display: flex;
    align-items: center;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--botao-rgb), 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--botao);
    font-weight: 500;
}

/* Corpo do Card */
.card-body-premium {
    padding: 0;
}

/* Tabela de Pagamentos */
.payments-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.payments-table thead tr {
    background: rgba(var(--botao-rgb), 0.03);
}

.payments-table th {
    padding: 18px 20px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(var(--texto-rgb), 0.7);
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.payments-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.payments-table tbody tr {
    transition: all 0.3s ease;
}

.payments-table tbody tr:hover {
    background: rgba(var(--botao-rgb), 0.05);
}

/* Data Cell */
.date-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--botao);
    line-height: 1;
    min-width: 35px;
}

.date-detail {
    display: flex;
    flex-direction: column;
}

.date-month {
    font-size: 0.75rem;
    color: rgba(var(--texto-rgb), 0.6);
    text-transform: uppercase;
}

.date-time {
    font-size: 0.7rem;
    color: rgba(var(--texto-rgb), 0.4);
}

/* Amount Cell */
.amount-info {
    display: flex;
    flex-direction: column;
}

.amount-crypto {
    font-size: 1rem;
    font-weight: 600;
    color: var(--texto);
}

.amount-fiat {
    font-size: 0.75rem;
    color: rgba(var(--texto-rgb), 0.5);
}

/* Method Cell */
.method-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    width: fit-content;
}

.method-pix {
    background: rgba(0, 200, 100, 0.15);
    color: #00c864;
}

.method-usdt {
    background: rgba(38, 161, 123, 0.15);
    color: #26a17b;
}

.method-btc {
    background: rgba(247, 147, 26, 0.15);
    color: #f7931a;
}

.method-eth {
    background: rgba(98, 126, 234, 0.15);
    color: #627eea;
}

.method-default {
    background: rgba(var(--botao-rgb), 0.15);
    color: var(--botao);
}

/* Table Footer */
.table-footer {
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-info,
.footer-update {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(var(--texto-rgb), 0.5);
}

.footer-info i,
.footer-update i {
    font-size: 0.85rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 30px;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--botao-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.empty-icon i {
    font-size: 2.5rem;
    color: var(--botao);
}

.empty-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--texto);
    margin-bottom: 8px;
}

.empty-text {
    color: rgba(var(--texto-rgb), 0.5);
    font-size: 0.9rem;
}

/* Background Decorativo */
.payments-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--botao);
    top: -100px;
    right: -100px;
}

.bg-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--titulo);
    bottom: -150px;
    left: -150px;
}

.bg-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--botao);
    top: 30%;
    right: 20%;
}

/* Responsividade */
@media (max-width: 992px) {
    .payments-premium {
        padding: 60px 0;
    }

    .payments-premium .section-title {
        font-size: 2rem;
    }

    .card-header-premium {
        padding: 20px 25px;
    }

    .payments-table th,
    .payments-table td {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .card-header-premium {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-stats {
        width: 100%;
    }

    .stat-badge {
        width: 100%;
        justify-content: center;
    }

    .payments-table {
        font-size: 0.85rem;
    }

    .date-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .date-day {
        font-size: 1.2rem;
    }

    .table-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .payments-table th:nth-child(2),
    .payments-table td:nth-child(2) {
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .payments-premium {
        padding: 40px 0;
    }

    .payments-premium .section-subtitle {
        font-size: 0.9rem;
    }

    .card-header-premium {
        padding: 15px 20px;
    }

    .header-icon {
        width: 40px;
        height: 40px;
    }

    .header-icon i {
        font-size: 1.2rem;
    }

    .header-title {
        font-size: 1rem;
    }

    .payments-table th,
    .payments-table td {
        padding: 12px;
        font-size: 0.75rem;
    }

    .amount-crypto {
        font-size: 0.85rem;
    }

    .method-badge {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
}

/* Seção de Ofertas Premium */
.offers-premium {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(var(--fundo-rgb), 0.3) 0%, rgba(var(--fundo-rgb), 0.8) 100%);
    overflow: hidden;
}

/* Cabeçalho da Seção */
.offers-premium .section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.offers-premium .section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(var(--botao-rgb), 0.1);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--botao-rgb), 0.2);
}

.offers-premium .section-badge i {
    color: var(--botao);
    font-size: 0.9rem;
}

.offers-premium .section-badge span {
    color: var(--texto);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.offers-premium .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 15px;
}

.offers-premium .gradient-text {
    background: linear-gradient(135deg, var(--botao) 0%, var(--titulo) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.offers-premium .section-subtitle {
    color: rgba(var(--texto-rgb), 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Tasks Carousel Wrapper */
.tasks-carousel-wrapper {
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

/* Indicadores Customizados */
.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    position: relative;
    bottom: -10px;
}

.carousel-indicators-custom button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: rgba(var(--texto-rgb), 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-indicators-custom button.active .indicator-dot {
    width: 28px;
    background: var(--botao);
    border-radius: 10px;
}

.carousel-indicators-custom button:hover .indicator-dot {
    background: var(--botao);
    opacity: 0.7;
}

/* Tasks Grid */
.tasks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Task Card */
.task-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.task-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.task-card:hover .task-inner {
    transform: translateY(-8px);
    border-color: rgba(var(--botao-rgb), 0.3);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
}

/* Task Badge */
.task-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.task-badge i {
    font-size: 0.65rem;
}

/* Task Icon */
.task-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(var(--botao-rgb), 0.15), rgba(var(--titulo-rgb), 0.15));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.task-icon i {
    font-size: 2rem;
    color: var(--botao);
    transition: all 0.3s ease;
}

.task-card:hover .task-icon {
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    transform: scale(1.05);
}

.task-card:hover .task-icon i {
    color: white;
    transform: scale(1.1);
}

/* Task Name */
.task-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--texto);
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

/* Task Reward */
.task-reward {
    text-align: center;
    margin-top: 5px;
}

.reward-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--texto);
    line-height: 1;
}

.reward-currency {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(var(--texto-rgb), 0.6);
    vertical-align: super;
}

.reward-amount {
    background: linear-gradient(135deg, var(--texto), var(--botao));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.reward-label {
    font-size: 0.7rem;
    color: rgba(var(--texto-rgb), 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Task Button */
.btn-task {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 20px;
    background: rgba(var(--botao-rgb), 0.1);
    border: 1px solid rgba(var(--botao-rgb), 0.2);
    border-radius: 50px;
    color: var(--botao);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-task i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.btn-task:hover {
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-task:hover i {
    transform: translate(3px, -2px);
}

/* Task Glow Effect */
.task-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.task-card:hover .task-glow {
    left: 100%;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.tasks-carousel-wrapper:hover .carousel-control-prev,
.tasks-carousel-wrapper:hover .carousel-control-next {
    opacity: 1;
}

.control-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.control-icon i {
    font-size: 1rem;
    color: var(--texto);
}

.control-icon:hover {
    background: var(--botao);
    border-color: var(--botao);
}

.control-icon:hover i {
    color: white;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

/* Background Decorativo */
.offers-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--botao);
    top: 20%;
    left: -100px;
}

.bg-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--titulo);
    bottom: -150px;
    right: -150px;
}

.bg-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--botao);
    bottom: 30%;
    left: 30%;
}

/* Responsividade */
@media (max-width: 1200px) {
    .tasks-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .offers-premium {
        padding: 60px 0;
    }

    .offers-premium .section-title {
        font-size: 2rem;
    }

    .tasks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tasks-carousel-wrapper {
        padding: 0 20px;
    }

    .carousel-control-prev {
        left: -10px;
    }

    .carousel-control-next {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .offers-premium .section-subtitle {
        font-size: 0.9rem;
    }

    .tasks-carousel-wrapper:hover .carousel-control-prev,
    .tasks-carousel-wrapper:hover .carousel-control-next {
        opacity: 1;
    }

    .control-icon {
        width: 35px;
        height: 35px;
    }

    .reward-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .offers-premium {
        padding: 50px 0;
    }

    .tasks-grid {
        grid-template-columns: 1fr;
    }

    .tasks-carousel-wrapper {
        padding: 0 15px;
    }

    .carousel-control-prev {
        left: -5px;
    }

    .carousel-control-next {
        right: -5px;
    }

    .control-icon {
        width: 30px;
        height: 30px;
    }

    .task-inner {
        padding: 25px 20px;
    }

    .task-icon {
        width: 55px;
        height: 55px;
    }

    .task-icon i {
        font-size: 1.5rem;
    }

    .reward-value {
        font-size: 1.8rem;
    }
}

/* Animação de Entrada para os Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.task-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.task-card:nth-child(1) {
    animation-delay: 0.1s;
}

.task-card:nth-child(2) {
    animation-delay: 0.2s;
}

.task-card:nth-child(3) {
    animation-delay: 0.3s;
}

.task-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Seção de FAQ Premium */
.faq-premium {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(var(--fundo-rgb), 0.3) 0%, rgba(var(--fundo-rgb), 0.5) 100%);
    overflow: hidden;
}

/* Cabeçalho da Seção */
.faq-premium .section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.faq-premium .section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(var(--botao-rgb), 0.1);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--botao-rgb), 0.2);
}

.faq-premium .section-badge i {
    color: var(--botao);
    font-size: 0.9rem;
}

.faq-premium .section-badge span {
    color: var(--texto);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.faq-premium .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 15px;
}

.faq-premium .gradient-text {
    background: linear-gradient(135deg, var(--botao) 0%, var(--titulo) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.faq-premium .section-subtitle {
    color: rgba(var(--texto-rgb), 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Grid */
.faq-grid {
    position: relative;
    z-index: 2;
}

/* FAQ Card */
.faq-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0;
    height: 100%;
}

.faq-card:hover {
    border-color: rgba(var(--botao-rgb), 0.2);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
}

/* FAQ Header */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.faq-number {
    width: 40px;
    height: 40px;
    background: rgba(var(--botao-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--botao);
    transition: all 0.3s ease;
}

.faq-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--texto);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(var(--botao-rgb), 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-icon i {
    font-size: 0.8rem;
    color: var(--botao);
    transition: transform 0.3s ease;
}

/* Estado Ativo do Header */
.faq-card.active .faq-header {
    background: rgba(var(--botao-rgb), 0.05);
    border-bottom: 1px solid rgba(var(--botao-rgb), 0.2);
}

.faq-card.active .faq-icon {
    background: var(--botao);
}

.faq-card.active .faq-icon i {
    color: white;
    transform: rotate(180deg);
}

.faq-card.active .faq-number {
    background: var(--botao);
    color: white;
}

/* FAQ Body */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card.active .faq-body {
    max-height: 500px;
}

.faq-answer {
    padding: 20px 25px;
    display: flex;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.answer-icon {
    width: 30px;
    height: 30px;
    background: rgba(var(--botao-rgb), 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.answer-icon i {
    font-size: 0.8rem;
    color: var(--botao);
}

.answer-text {
    color: rgba(var(--texto-rgb), 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* FAQ CTA */
.faq-cta {
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.cta-content {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-content i {
    font-size: 1.2rem;
    color: var(--botao);
}

.cta-content p {
    margin: 0;
    color: rgba(var(--texto-rgb), 0.7);
    font-size: 0.9rem;
}

.cta-content a {
    color: var(--botao);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-content a:hover {
    color: var(--titulo);
    text-decoration: underline;
}

/* Background Decorativo */
.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.bg-shape.shape-1 {
    width: 350px;
    height: 350px;
    background: var(--botao);
    top: -150px;
    right: -100px;
}

.bg-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--titulo);
    bottom: -100px;
    left: -100px;
}

.bg-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--botao);
    bottom: 30%;
    right: 20%;
}

/* Responsividade */
@media (max-width: 992px) {
    .faq-premium {
        padding: 60px 0;
    }

    .faq-premium .section-title {
        font-size: 2rem;
    }

    .faq-header {
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 18px 20px;
    }
}

@media (max-width: 768px) {
    .faq-premium .section-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .faq-question {
        gap: 12px;
    }

    .faq-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .faq-title {
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .answer-text {
        font-size: 0.85rem;
    }

    .cta-content {
        padding: 10px 20px;
    }

    .cta-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .faq-premium {
        padding: 50px 0;
    }

    .faq-header {
        padding: 15px;
    }

    .faq-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .faq-title {
        font-size: 0.85rem;
    }

    .faq-answer {
        padding: 15px;
        gap: 10px;
    }

    .answer-icon {
        width: 25px;
        height: 25px;
    }

    .answer-icon i {
        font-size: 0.7rem;
    }

    .answer-text {
        font-size: 0.8rem;
    }
}

/* Seção de Call to Action Premium */
.call-premium {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, var(--menu) 0%, var(--fundo) 100%);
    overflow: hidden;
}

/* Background Decorativo */
.call-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.call-bg .bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.call-bg .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--botao);
    top: -150px;
    right: -100px;
}

.call-bg .shape-2 {
    width: 350px;
    height: 350px;
    background: var(--titulo);
    bottom: -120px;
    left: -80px;
}

.call-bg .shape-3 {
    width: 250px;
    height: 250px;
    background: var(--botao);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
}

/* Conteúdo Principal */
.call-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Badge */
.call-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--botao-rgb), 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 25px;
    border: 1px solid rgba(var(--botao-rgb), 0.3);
}

.call-badge i {
    font-size: 0.8rem;
    color: var(--botao);
}

.call-badge span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--texto);
    letter-spacing: 0.5px;
}

/* Título */
.call-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--texto);
    margin-bottom: 20px;
    line-height: 1.2;
}

.call-title .gradient-text {
    background: linear-gradient(135deg, var(--botao) 0%, var(--titulo) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Subtítulo */
.call-subtitle {
    font-size: 1.1rem;
    color: rgba(var(--texto-rgb), 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Preço */
.call-price {
    margin-bottom: 20px;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: rgba(var(--texto-rgb), 0.5);
    margin-left: 5px;
}

/* Texto de Teste Grátis */
.call-free {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 35px;
}

.free-badge {
    background: rgba(0, 200, 100, 0.15);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00c864;
}

.free-text {
    font-size: 0.85rem;
    color: rgba(var(--texto-rgb), 0.6);
}

/* Botão CTA */
.call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    padding: 16px 40px;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -8px rgba(var(--botao-rgb), 0.4);
}

.call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.call-btn:hover::before {
    left: 100%;
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(var(--botao-rgb), 0.5);
    color: white;
}

.call-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.call-btn:hover i {
    transform: translateX(5px);
}

/* Cards de Benefícios (Opcional) */
.call-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.feature-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-chip i {
    font-size: 1rem;
    color: var(--botao);
}

.feature-chip span {
    font-size: 0.85rem;
    color: rgba(var(--texto-rgb), 0.7);
}

/* Responsividade */
@media (max-width: 992px) {
    .call-premium {
        padding: 60px 0;
    }

    .call-title {
        font-size: 2.2rem;
    }

    .price-value {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .call-title {
        font-size: 1.8rem;
    }

    .call-subtitle {
        font-size: 1rem;
    }

    .call-btn {
        padding: 14px 32px;
        font-size: 0.9rem;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .call-features {
        gap: 15px;
    }

    .feature-chip {
        padding: 6px 15px;
    }

    .feature-chip span {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .call-premium {
        padding: 50px 0;
    }

    .call-title {
        font-size: 1.5rem;
    }

    .call-badge {
        padding: 4px 12px;
        margin-bottom: 20px;
    }

    .price-value {
        font-size: 2rem;
    }

    .call-btn {
        padding: 12px 28px;
    }

    .call-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Seção de Contador/Estatísticas Premium */
.counter-premium {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, var(--fundo) 0%, rgba(var(--fundo-rgb), 0.9) 100%);
    overflow: hidden;
}

/* Background Decorativo */
.counter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.counter-bg .bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.counter-bg .shape-1 {
    width: 350px;
    height: 350px;
    background: var(--botao);
    top: -100px;
    right: -80px;
}

.counter-bg .shape-2 {
    width: 300px;
    height: 300px;
    background: var(--titulo);
    bottom: -80px;
    left: -50px;
}

.counter-bg .shape-3 {
    width: 200px;
    height: 200px;
    background: var(--botao);
    top: 40%;
    left: 30%;
    opacity: 0.15;
}

/* Cabeçalho da Seção */
.counter-premium .section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.counter-premium .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--botao-rgb), 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(var(--botao-rgb), 0.2);
}

.counter-premium .section-badge i {
    font-size: 0.8rem;
    color: var(--botao);
}

.counter-premium .section-badge span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--texto);
    letter-spacing: 0.5px;
}

.counter-premium .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 15px;
}

.counter-premium .gradient-text {
    background: linear-gradient(135deg, var(--botao) 0%, var(--titulo) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.counter-premium .section-subtitle {
    color: rgba(var(--texto-rgb), 0.7);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Contadores */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Card do Contador */
.counter-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.counter-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.counter-card:hover .counter-inner {
    transform: translateY(-8px);
    border-color: rgba(var(--botao-rgb), 0.3);
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.3);
}

/* Ícone */
.counter-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(var(--botao-rgb), 0.15), rgba(var(--titulo-rgb), 0.15));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.counter-icon i {
    font-size: 2.2rem;
    color: var(--botao);
    transition: all 0.3s ease;
}

.counter-card:hover .counter-icon {
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    transform: scale(1.05);
}

.counter-card:hover .counter-icon i {
    color: white;
    transform: scale(1.1);
}

/* Número */
.counter-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--texto), var(--botao));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    margin-bottom: 10px;
}

/* Título */
.counter-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--texto);
    margin-bottom: 5px;
}

/* Subtítulo/Descrição */
.counter-subtitle {
    font-size: 0.85rem;
    color: rgba(var(--texto-rgb), 0.6);
    margin: 0;
}

/* Efeito de brilho */
.counter-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.counter-card:hover .counter-inner::before {
    left: 100%;
}

/* Número do Card (decoração) */
.counter-number-bg {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(var(--botao-rgb), 0.05);
    line-height: 1;
    font-family: monospace;
    pointer-events: none;
}

/* Responsividade */
@media (max-width: 992px) {
    .counter-premium {
        padding: 60px 0;
    }

    .counter-premium .section-title {
        font-size: 2rem;
    }

    .counter-grid {
        gap: 25px;
    }

    .counter-number {
        font-size: 2.3rem;
    }

    .counter-icon {
        width: 65px;
        height: 65px;
    }

    .counter-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .counter-premium .section-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .counter-inner {
        padding: 25px 20px;
    }

    .counter-number {
        font-size: 2rem;
    }

    .counter-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .counter-premium {
        padding: 50px 0;
    }

    .counter-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .counter-inner {
        padding: 20px;
    }

    .counter-icon {
        width: 55px;
        height: 55px;
    }

    .counter-icon i {
        font-size: 1.5rem;
    }

    .counter-number {
        font-size: 1.8rem;
    }

    .counter-title {
        font-size: 0.95rem;
    }
}

/* Animação de Entrada */
@keyframes counterFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-card {
    animation: counterFadeInUp 0.6s ease forwards;
    opacity: 0;
}

.counter-card:nth-child(1) {
    animation-delay: 0.1s;
}

.counter-card:nth-child(2) {
    animation-delay: 0.2s;
}

.counter-card:nth-child(3) {
    animation-delay: 0.3s;
}

.counter-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Seção de Transações Premium */
.transactions-premium {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(var(--fundo-rgb), 0.3) 0%, rgba(var(--fundo-rgb), 0.8) 100%);
    overflow: hidden;
}

/* Background Decorativo */
.transactions-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.transactions-bg .bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.transactions-bg .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--botao);
    top: -150px;
    right: -100px;
}

.transactions-bg .shape-2 {
    width: 350px;
    height: 350px;
    background: var(--titulo);
    bottom: -120px;
    left: -80px;
}

/* Cabeçalho da Seção */
.transactions-premium .section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.transactions-premium .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--botao-rgb), 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(var(--botao-rgb), 0.2);
}

.transactions-premium .section-badge i {
    font-size: 0.8rem;
    color: var(--botao);
}

.transactions-premium .section-badge span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--texto);
    letter-spacing: 0.5px;
}

.transactions-premium .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 15px;
}

.transactions-premium .gradient-text {
    background: linear-gradient(135deg, var(--botao) 0%, var(--titulo) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.transactions-premium .section-subtitle {
    color: rgba(var(--texto-rgb), 0.7);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Transações */
.transactions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Card de Transação */
.transaction-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.transaction-card:hover {
    border-color: rgba(var(--botao-rgb), 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

/* Cabeçalho do Card */
.transaction-header {
    padding: 25px 30px;
    background: rgba(var(--botao-rgb), 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
}

.transaction-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(var(--botao-rgb), 0.15), rgba(var(--titulo-rgb), 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transaction-icon i {
    font-size: 1.5rem;
    color: var(--botao);
}

.transaction-info {
    flex: 1;
}

.transaction-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--texto);
    margin: 0 0 4px 0;
}

.transaction-subtitle {
    font-size: 0.8rem;
    color: rgba(var(--texto-rgb), 0.6);
    margin: 0;
}

.transaction-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(var(--botao-rgb), 0.15);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--botao);
}

/* Tabela */
.transaction-table-wrapper {
    padding: 0;
    overflow-x: auto;
}

.transaction-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.transaction-table thead tr {
    background: rgba(var(--botao-rgb), 0.03);
}

.transaction-table th {
    padding: 18px 20px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(var(--texto-rgb), 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.transaction-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
    font-size: 0.9rem;
    color: var(--texto);
}

.transaction-table tbody tr {
    transition: all 0.3s ease;
}

.transaction-table tbody tr:hover {
    background: rgba(var(--botao-rgb), 0.05);
}

/* Estilos específicos para células */
.user-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.user-name {
    font-weight: 500;
}

.amount-cell {
    font-weight: 700;
    color: var(--botao);
}

.date-cell {
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
}

.date-day {
    font-weight: 600;
}

.date-time {
    font-size: 0.65rem;
    color: rgba(var(--texto-rgb), 0.5);
}

.method-cell {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(var(--botao-rgb), 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--botao);
}

/* Empty State */
.empty-state-transaction {
    text-align: center;
    padding: 60px 30px;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--botao-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.empty-icon i {
    font-size: 2.5rem;
    color: var(--botao);
}

.empty-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--texto);
    margin-bottom: 8px;
}

.empty-text {
    color: rgba(var(--texto-rgb), 0.5);
    font-size: 0.9rem;
}

/* Rodapé do Card */
.transaction-footer {
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: flex-end;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--botao);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.view-all:hover {
    gap: 12px;
    color: var(--titulo);
}

/* Responsividade */
@media (max-width: 992px) {
    .transactions-premium {
        padding: 60px 0;
    }

    .transactions-premium .section-title {
        font-size: 2rem;
    }

    .transactions-grid {
        gap: 25px;
    }

    .transaction-header {
        padding: 20px 25px;
    }

    .transaction-table th,
    .transaction-table td {
        padding: 14px 15px;
    }
}

@media (max-width: 768px) {
    .transactions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .transactions-premium .section-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .transaction-table th,
    .transaction-table td {
        padding: 12px;
        font-size: 0.8rem;
    }

    .transaction-header {
        padding: 18px 20px;
    }

    .transaction-icon {
        width: 40px;
        height: 40px;
    }

    .transaction-icon i {
        font-size: 1.2rem;
    }

    .transaction-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .transactions-premium {
        padding: 50px 0;
    }

    .transaction-table th,
    .transaction-table td {
        padding: 10px;
        font-size: 0.7rem;
    }

    .user-avatar {
        width: 25px;
        height: 25px;
        font-size: 0.65rem;
    }

    .amount-cell {
        font-size: 0.8rem;
    }

    .method-cell {
        padding: 3px 8px;
        font-size: 0.65rem;
    }

    .transaction-footer {
        padding: 12px 20px;
    }
}

/* Seção de Como Funciona Premium */
.process-premium {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(var(--fundo-rgb), 0.3) 0%, rgba(var(--fundo-rgb), 0.8) 100%);
    overflow: hidden;
}

/* Background Decorativo */
.process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.process-bg .bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.process-bg .shape-1 {
    width: 350px;
    height: 350px;
    background: var(--botao);
    top: -100px;
    left: -80px;
}

.process-bg .shape-2 {
    width: 300px;
    height: 300px;
    background: var(--titulo);
    bottom: -80px;
    right: -50px;
}

.process-bg .shape-3 {
    width: 200px;
    height: 200px;
    background: var(--botao);
    top: 40%;
    right: 20%;
    opacity: 0.15;
}

/* Cabeçalho da Seção */
.process-premium .section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.process-premium .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--botao-rgb), 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(var(--botao-rgb), 0.2);
}

.process-premium .section-badge i {
    font-size: 0.8rem;
    color: var(--botao);
}

.process-premium .section-badge span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--texto);
    letter-spacing: 0.5px;
}

.process-premium .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 15px;
}

.process-premium .gradient-text {
    background: linear-gradient(135deg, var(--botao) 0%, var(--titulo) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.process-premium .section-subtitle {
    color: rgba(var(--texto-rgb), 0.7);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Processos */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Card do Processo */
.process-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.process-card:hover .process-inner {
    transform: translateY(-8px);
    border-color: rgba(var(--botao-rgb), 0.3);
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.3);
}

/* Número do Passo (Decoração) */
.process-step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(var(--botao-rgb), 0.05);
    line-height: 1;
    font-family: monospace;
    pointer-events: none;
    border-radius: 50%;
    padding: 5px;
}

/* Ícone */
.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(var(--botao-rgb), 0.15), rgba(var(--titulo-rgb), 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.process-icon i {
    font-size: 2.5rem;
    color: var(--botao);
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    transform: scale(1.05);
}

.process-card:hover .process-icon i {
    color: white;
    transform: scale(1.1);
}

/* Título */
.process-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Descrição */
.process-description {
    color: rgba(var(--texto-rgb), 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Linha de Conexão Entre Cards (para desktop) */
.process-grid {
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--botao), var(--titulo), var(--botao), transparent);
    opacity: 0.3;
    pointer-events: none;
}

@media (max-width: 992px) {
    .process-grid::before {
        display: none;
    }
}

/* Conector entre cards (versão alternativa) */
.process-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--botao), transparent);
    opacity: 0.3;
    pointer-events: none;
}

@media (max-width: 992px) {
    .process-card:not(:last-child)::after {
        display: none;
    }
}

/* Efeito de brilho */
.process-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.process-card:hover .process-inner::before {
    left: 100%;
}

/* Responsividade */
@media (max-width: 992px) {
    .process-premium {
        padding: 60px 0;
    }

    .process-premium .section-title {
        font-size: 2rem;
    }

    .process-grid {
        gap: 25px;
    }

    .process-icon {
        width: 70px;
        height: 70px;
    }

    .process-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .process-premium .section-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-inner {
        padding: 25px 20px;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .process-icon i {
        font-size: 1.75rem;
    }

    .process-title {
        font-size: 1.1rem;
    }

    .process-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .process-premium {
        padding: 50px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-inner {
        padding: 20px;
    }

    .process-icon {
        width: 55px;
        height: 55px;
    }

    .process-icon i {
        font-size: 1.5rem;
    }
}

/* Animação de Entrada */
@keyframes processFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-card {
    animation: processFadeInUp 0.6s ease forwards;
    opacity: 0;
}

.process-card:nth-child(1) {
    animation-delay: 0.1s;
}

.process-card:nth-child(2) {
    animation-delay: 0.2s;
}

.process-card:nth-child(3) {
    animation-delay: 0.3s;
}

.process-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Seção de Newsletter Premium */
.newsletter-premium {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, var(--menu) 0%, var(--fundo) 100%);
    overflow: hidden;
}

/* Background Decorativo */
.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.newsletter-bg .bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.newsletter-bg .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--botao);
    top: -150px;
    right: -100px;
}

.newsletter-bg .shape-2 {
    width: 350px;
    height: 350px;
    background: var(--titulo);
    bottom: -120px;
    left: -80px;
}

.newsletter-bg .shape-3 {
    width: 250px;
    height: 250px;
    background: var(--botao);
    top: 30%;
    left: 40%;
    opacity: 0.15;
}

/* Conteúdo Principal */
.newsletter-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Badge */
.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--botao-rgb), 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 25px;
    border: 1px solid rgba(var(--botao-rgb), 0.3);
}

.newsletter-badge i {
    font-size: 0.8rem;
    color: var(--botao);
}

.newsletter-badge span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--texto);
    letter-spacing: 0.5px;
}

/* Título */
.newsletter-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--texto);
    margin-bottom: 20px;
    line-height: 1.2;
}

.newsletter-title .gradient-text {
    background: linear-gradient(135deg, var(--botao) 0%, var(--titulo) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Subtítulo */
.newsletter-subtitle {
    font-size: 1rem;
    color: rgba(var(--texto-rgb), 0.8);
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Formulário */
.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-group {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 80px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.newsletter-group:focus-within {
    border-color: var(--botao);
    box-shadow: 0 0 0 3px rgba(var(--botao-rgb), 0.2);
}

/* Ícone do Input */
.newsletter-input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--botao);
    font-size: 1rem;
    z-index: 1;
}

/* Input */
.newsletter-input {
    width: 100%;
    padding: 16px 120px 16px 50px;
    background: transparent;
    border: none;
    border-radius: 80px;
    color: var(--texto);
    font-size: 1rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(var(--texto-rgb), 0.5);
}

/* Botão */
.newsletter-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border: none;
    border-radius: 60px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px var(--botao);
}

.newsletter-btn:hover i {
    transform: translate(3px, -2px);
}

/* Benefícios extras */
.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(var(--texto-rgb), 0.6);
}

.benefit-item i {
    color: var(--botao);
    font-size: 0.8rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .newsletter-premium {
        padding: 60px 0;
    }

    .newsletter-title {
        font-size: 2rem;
    }

    .newsletter-group {
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 1.8rem;
    }

    .newsletter-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .newsletter-group {
        margin: 0 15px;
    }

    .newsletter-input {
        padding: 14px 100px 14px 45px;
        font-size: 0.9rem;
    }

    .newsletter-input-icon {
        left: 15px;
        font-size: 0.9rem;
    }

    .newsletter-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .benefit-item {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .newsletter-premium {
        padding: 50px 0;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .newsletter-badge {
        padding: 4px 12px;
        margin-bottom: 20px;
    }

    .newsletter-group {
        margin: 0 10px;
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 10px;
    }

    .newsletter-input-icon {
        display: none;
    }

    .newsletter-input {
        padding: 14px 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 60px;
        text-align: center;
    }

    .newsletter-btn {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .newsletter-benefits {
        gap: 15px;
        margin-top: 25px;
    }
}

/* Seção de Footer Premium */
.footer-premium {
    position: relative;
    background: linear-gradient(180deg, var(--fundo) 0%, var(--menu) 100%);
    overflow: hidden;
    padding-top: 60px;
    margin-bottom: -30px !important;
}

/* Background Decorativo */
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.footer-bg .bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.footer-bg .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--botao);
    top: -150px;
    left: -100px;
}

.footer-bg .shape-2 {
    width: 350px;
    height: 350px;
    background: var(--titulo);
    bottom: -120px;
    right: -80px;
}

/* Conteúdo Principal */
.footer-content {
    position: relative;
    z-index: 2;
}

/* Logo Footer */
.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo-img {
    max-width: 180px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--texto), var(--botao));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

/* Redes Sociais */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--texto);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
}

/* Menu Horizontal */
.footer-menu-horizontal {
    text-align: center;
    margin-bottom: 40px;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: rgba(var(--texto-rgb), 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    transition: width 0.3s ease;
}

.footer-menu a:hover {
    color: var(--botao);
}

.footer-menu a:hover::after {
    width: 100%;
}

/* Divisória */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 20px 0;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding: 25px 0;
}

.copyright-text {
    color: rgba(var(--texto-rgb), 0.5);
    font-size: 0.8rem;
    margin: 0;
}

.copyright-text a {
    color: var(--botao);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-text a:hover {
    color: var(--titulo);
}

/* Scroll Top Button */
.scroll-top-premium {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 5px 20px -5px var(--botao);
}

.scroll-top-premium.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -5px var(--botao);
}

/* Responsividade */
@media (max-width: 992px) {
    .footer-premium {
        padding-top: 50px;
    }

    .footer-menu {
        gap: 20px;
    }

    .footer-menu a {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .footer-social {
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-menu {
        gap: 15px;
    }

    .footer-menu a {
        font-size: 0.8rem;
    }

    .copyright-text {
        font-size: 0.7rem;
    }

    .scroll-top-premium {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .footer-premium {
        padding-top: 40px;
    }

    .footer-logo-img {
        max-width: 140px;
    }

    .footer-social {
        gap: 10px;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .footer-menu {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }

    .footer-menu a::after {
        display: none;
    }
}

/* Estilos adicionais para paginação e ajustes */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination-wrapper .pagination {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-wrapper .page-item .page-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 16px;
    color: var(--texto);
    transition: all 0.3s ease;
}

.pagination-wrapper .page-item.active .page-link {
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border-color: transparent;
    color: white;
}

.pagination-wrapper .page-item .page-link:hover {
    background: rgba(var(--botao-rgb), 0.2);
    transform: translateY(-2px);
}

/* Ajuste para o ícone do plano */
.plan-icon img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

/* Responsividade para o card popular em mobile */
@media (max-width: 992px) {
    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

/* Seção de Conteúdo Premium */
.content-premium {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, var(--fundo) 0%, rgba(var(--fundo-rgb), 0.9) 100%);
    min-height: 100vh;
    overflow: hidden;
}

/* Background Decorativo */
.content-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.content-bg .bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.content-bg .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--botao);
    top: -150px;
    right: -100px;
}

.content-bg .shape-2 {
    width: 350px;
    height: 350px;
    background: var(--titulo);
    bottom: -120px;
    left: -80px;
}

.content-bg .shape-3 {
    width: 250px;
    height: 250px;
    background: var(--botao);
    top: 40%;
    left: 30%;
    opacity: 0.15;
}

/* Card de Conteúdo */
.content-card {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.content-card-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    transition: all 0.3s ease;
}

.content-card-inner:hover {
    border-color: rgba(var(--botao-rgb), 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Estilos para o conteúdo HTML interno */
.content-card-inner h1,
.content-card-inner h2,
.content-card-inner h3,
.content-card-inner h4,
.content-card-inner h5,
.content-card-inner h6 {
    color: var(--texto);
    margin-bottom: 20px;
    font-weight: 700;
}

.content-card-inner h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--texto), var(--botao));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.content-card-inner h2 {
    font-size: 2rem;
    margin-top: 30px;
}

.content-card-inner h3 {
    font-size: 1.5rem;
    margin-top: 25px;
}

.content-card-inner p {
    color: rgba(var(--texto-rgb), 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-card-inner ul,
.content-card-inner ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-card-inner li {
    color: rgba(var(--texto-rgb), 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.content-card-inner li::marker {
    color: var(--botao);
}

.content-card-inner strong,
.content-card-inner b {
    color: var(--botao);
    font-weight: 600;
}

.content-card-inner a {
    color: var(--botao);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px dashed rgba(var(--botao-rgb), 0.5);
}

.content-card-inner a:hover {
    color: var(--titulo);
    border-bottom-color: var(--titulo);
}

.content-card-inner hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.content-card-inner blockquote {
    background: rgba(var(--botao-rgb), 0.05);
    border-left: 4px solid var(--botao);
    padding: 20px 25px;
    border-radius: 16px;
    margin: 25px 0;
    font-style: italic;
    color: rgba(var(--texto-rgb), 0.9);
}

.content-card-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
}

.content-card-inner th,
.content-card-inner td {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.content-card-inner th {
    background: rgba(var(--botao-rgb), 0.1);
    color: var(--texto);
    font-weight: 600;
}

.content-card-inner td {
    color: rgba(var(--texto-rgb), 0.8);
}

.content-card-inner code {
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 8px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.9em;
    color: var(--botao);
}

.content-card-inner pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 16px;
    overflow-x: auto;
    margin: 20px 0;
}

.content-card-inner pre code {
    background: none;
    padding: 0;
    color: rgba(var(--texto-rgb), 0.9);
}

.content-card-inner img {
    max-width: 100%;
    border-radius: 16px;
    margin: 20px 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .content-premium {
        padding: 60px 0;
    }

    .content-card-inner {
        padding: 35px;
    }

    .content-card-inner h1 {
        font-size: 2rem;
    }

    .content-card-inner h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .content-premium {
        padding: 50px 0;
    }

    .content-card-inner {
        padding: 25px;
    }

    .content-card-inner h1 {
        font-size: 1.75rem;
    }

    .content-card-inner h2 {
        font-size: 1.5rem;
    }

    .content-card-inner h3 {
        font-size: 1.25rem;
    }

    .content-card-inner p,
    .content-card-inner li {
        font-size: 0.9rem;
    }

    .content-card-inner blockquote {
        padding: 15px 20px;
    }

    .content-card-inner th,
    .content-card-inner td {
        padding: 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .content-premium {
        padding: 40px 0;
    }

    .content-card-inner {
        padding: 20px;
    }

    .content-card-inner h1 {
        font-size: 1.5rem;
    }

    .content-card-inner h2 {
        font-size: 1.3rem;
    }

    .content-card-inner blockquote {
        padding: 12px 15px;
    }
}


/* ======================================================
               SHOP PREMIUM - Design Fintech
            ====================================================== */
.shop-premium {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, var(--fundo) 0%, rgba(var(--fundo-rgb), 0.9) 100%);
    overflow: hidden;
}

/* Background Decorativo */
.shop-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shop-bg .bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.shop-bg .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--botao);
    top: -150px;
    right: -100px;
}

.shop-bg .shape-2 {
    width: 350px;
    height: 350px;
    background: var(--titulo);
    bottom: -120px;
    left: -80px;
}

.shop-bg .shape-3 {
    width: 250px;
    height: 250px;
    background: var(--botao);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(var(--botao-rgb), 0.1);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--botao-rgb), 0.2);
}

.section-badge i {
    color: var(--botao);
    font-size: 0.9rem;
}

.section-badge span {
    color: var(--texto);
    font-size: 0.85rem;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 15px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--botao) 0%, var(--titulo) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    color: rgba(var(--texto-rgb), 0.7);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Search Group Mobile */
.search-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 15px;
    color: rgba(var(--texto-rgb), 0.5);
    font-size: 0.9rem;
}

.search-input {
    width: 100%;
    padding: 12px 50px 12px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    color: var(--texto);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--botao);
    background: rgba(255, 255, 255, 0.08);
}

.search-btn {
    position: absolute;
    right: 6px;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: scale(1.05);
}

/* Mobile Filter Button */
.filter-mobile-btn {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    color: var(--texto);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-mobile-btn .filter-badge {
    background: var(--botao);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    margin-left: 5px;
}

/* Mobile Filters Card */
.mobile-filters-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.mobile-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-filters-header h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--texto);
}

.btn-close-filter {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--texto);
    transition: all 0.3s ease;
}

.mobile-filters-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

/* Shop Header */
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.shop-header-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--texto);
    margin: 0 0 10px 0;
}

.shop-count {
    font-size: 0.85rem;
    color: rgba(var(--texto-rgb), 0.6);
    font-weight: normal;
}

.active-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.active-filters-label {
    font-size: 0.75rem;
    color: rgba(var(--texto-rgb), 0.6);
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(var(--botao-rgb), 0.1);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    color: var(--botao);
}

.filter-remove {
    color: var(--botao);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.filter-remove:hover {
    opacity: 1;
}

.clear-filters-btn {
    font-size: 0.7rem;
    color: rgba(var(--texto-rgb), 0.6);
    transition: color 0.3s ease;
}

.clear-filters-btn:hover {
    color: var(--botao);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Product Card Premium */
.product-card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--botao-rgb), 0.3);
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.3);
}

/* Product Image */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-premium:hover .product-image {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card-premium:hover .product-overlay {
    opacity: 1;
}

.product-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border-radius: 50px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Badges */
.product-badges-left,
.product-badges-right {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badges-left {
    top: 12px;
    left: 12px;
}

.product-badges-right {
    top: 12px;
    right: 12px;
    align-items: flex-end;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.badge-featured {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2d3436;
}

.badge-discount {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
}

.badge-last-units {
    background: linear-gradient(135deg, #ff6b6b, #ee5253);
    color: white;
}

.badge-soldout {
    background: linear-gradient(135deg, #8395a7, #576574);
    color: white;
}

.badge-free-shipping {
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
    color: white;
}

/* Product Info */
.product-info {
    padding: 18px;
}

.product-type {
    font-size: 0.7rem;
    color: rgba(var(--texto-rgb), 0.6);
    margin-bottom: 8px;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--texto);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-name a {
    color: var(--texto);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--botao);
}

/* Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    font-size: 0.75rem;
    color: rgba(var(--texto-rgb), 0.3);
}

.stars i.active {
    color: #FFD700;
}

.rating-count {
    font-size: 0.7rem;
    color: rgba(var(--texto-rgb), 0.5);
}

/* Price */
.product-price-wrapper {
    margin-bottom: 12px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--texto), var(--botao));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-old-price {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: rgba(var(--texto-rgb), 0.5);
    margin-right: 8px;
}

/* Rewards */
.product-rewards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.reward-points,
.reward-cashback {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 50px;
}

.reward-points {
    background: rgba(255, 193, 7, 0.15);
    color: #FFD700;
}

.reward-cashback {
    background: rgba(23, 162, 184, 0.15);
    color: #17a2b8;
}

/* Button */
.btn-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-buy {
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    color: white;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px var(--botao);
    color: white;
}

.btn-disabled {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(var(--texto-rgb), 0.5);
    cursor: not-allowed;
}

/* Empty State */
.empty-shop-state {
    text-align: center;
    padding: 60px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(var(--botao-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--botao);
}

.empty-shop-state h5 {
    color: var(--texto);
    margin-bottom: 10px;
}

.empty-shop-state p {
    color: rgba(var(--texto-rgb), 0.6);
    margin-bottom: 20px;
}

.btn-reset-filters {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(var(--botao-rgb), 0.1);
    border-radius: 60px;
    color: var(--botao);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-reset-filters:hover {
    background: var(--botao);
    color: white;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* Responsividade */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-info {
        padding: 15px;
    }

    .product-price {
        font-size: 1.2rem;
    }
}


/* ======================================================
           FILTERS SIDEBAR - Design Fintech Premium
        ====================================================== */

/* Filters Card */
.filters-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.filters-card:hover {
    border-color: rgba(var(--botao-rgb), 0.2);
}

/* Card Header */
.filters-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(var(--botao-rgb), 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.filters-card-header i {
    font-size: 1rem;
    color: var(--botao);
}

.filters-card-header h5 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--texto);
}

/* Card Body */
.filters-card-body {
    padding: 16px 20px;
}

/* Filters List */
.filters-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.filter-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-item:last-child {
    border-bottom: none;
}

.filter-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(var(--texto-rgb), 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.filter-link i {
    width: 20px;
    font-size: 0.85rem;
    color: rgba(var(--texto-rgb), 0.5);
}

.filter-link span {
    flex: 1;
    font-size: 0.85rem;
}

.filter-count-badge {
    background: rgba(var(--botao-rgb), 0.1);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.7rem;
    color: var(--botao);
}

.filter-item:hover .filter-link {
    background: rgba(var(--botao-rgb), 0.05);
    color: var(--botao);
    padding-left: 20px;
}

.filter-item:hover .filter-link i {
    color: var(--botao);
}

.filter-item.active .filter-link {
    background: rgba(var(--botao-rgb), 0.08);
    color: var(--botao);
    border-left: 3px solid var(--botao);
}

.filter-item.active .filter-link i {
    color: var(--botao);
}

/* Checkbox Custom */
.filter-checkbox-item {
    margin-bottom: 12px;
}

.filter-checkbox-item:last-child {
    margin-bottom: 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.filter-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.filter-checkbox:checked+.checkbox-custom {
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border-color: transparent;
}

.filter-checkbox:checked+.checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    color: white;
}

.checkbox-text {
    font-size: 0.85rem;
    color: rgba(var(--texto-rgb), 0.8);
}

.checkbox-text i {
    margin-right: 6px;
    font-size: 0.8rem;
}

/* Radio Custom */
.filter-radio-item {
    margin-bottom: 12px;
}

.filter-radio-item:last-child {
    margin-bottom: 0;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.radio-custom {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.price-range-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.price-range-radio:checked+.radio-custom {
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border-color: transparent;
}

.price-range-radio:checked+.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.radio-text {
    font-size: 0.85rem;
    color: rgba(var(--texto-rgb), 0.8);
}

/* Custom Price Range */
.custom-price-range {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.custom-price-label {
    font-size: 0.75rem;
    color: rgba(var(--texto-rgb), 0.6);
    margin-bottom: 10px;
    display: block;
}

.custom-price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-input-group {
    position: relative;
    flex: 1;
}

.price-currency {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--botao);
    font-weight: 600;
}

.price-input {
    width: 100%;
    padding: 10px 10px 10px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--texto);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.price-input:focus {
    outline: none;
    border-color: var(--botao);
    background: rgba(255, 255, 255, 0.08);
}

.price-separator {
    color: rgba(var(--texto-rgb), 0.4);
    font-size: 0.8rem;
}

/* Sort Select */
.sort-select-wrapper {
    position: relative;
}

.sort-select {
    width: 100%;
    padding: 12px 35px 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--texto);
    font-size: 0.85rem;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: var(--botao);
    background: rgba(255, 255, 255, 0.08);
}

.sort-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: rgba(var(--texto-rgb), 0.5);
    pointer-events: none;
}

/* Filters Actions */
.filters-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.btn-filters-apply {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border: none;
    border-radius: 60px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filters-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px var(--botao);
}

.btn-filters-reset {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    color: rgba(var(--texto-rgb), 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-filters-reset:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--botao);
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .filters-card-header {
        padding: 14px 16px;
    }

    .filters-card-body {
        padding: 14px 16px;
    }

    .filter-link {
        padding: 10px 12px;
    }
}


/* ======================================================
           PRODUCT DETAIL PREMIUM - Design Fintech
        ====================================================== */

.product-detail-premium {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, var(--fundo) 0%, rgba(var(--fundo-rgb), 0.9) 100%);
    min-height: 100vh;
    overflow: hidden;
}

/* Background Decorativo */
.product-detail-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.product-detail-bg .bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.product-detail-bg .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--botao);
    top: -150px;
    right: -100px;
}

.product-detail-bg .shape-2 {
    width: 350px;
    height: 350px;
    background: var(--titulo);
    bottom: -120px;
    left: -80px;
}

.product-detail-bg .shape-3 {
    width: 250px;
    height: 250px;
    background: var(--botao);
    top: 40%;
    left: 20%;
}

.product-detail-wrapper {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(var(--texto-rgb), 0.6);
    margin-bottom: 20px;
}

.product-breadcrumb a {
    color: var(--botao);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-breadcrumb a:hover {
    color: var(--titulo);
}

/* Gallery */
.product-gallery-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
}

.main-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.image-zoom-wrapper {
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-zoom-wrapper:hover .main-image {
    transform: scale(1.05);
}

.image-zoom-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-zoom-wrapper:hover .image-zoom-overlay {
    opacity: 1;
}

/* Badges */
.product-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.badge-featured,
.badge-discount,
.badge-points,
.badge-cashback {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.badge-featured {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2d3436;
}

.badge-discount {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
}

.badge-points {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2d3436;
}

.badge-cashback {
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
    color: white;
}

/* Thumbnails */
.thumbnails-container {
    margin-top: 15px;
}

.thumbnails-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.thumbnails-slider::-webkit-scrollbar {
    height: 4px;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item.active {
    border-color: var(--botao);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-item:hover {
    transform: translateY(-2px);
}

/* Product Info */
.product-info-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
}

.product-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Price Box */
.product-price-box {
    background: rgba(var(--botao-rgb), 0.05);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: rgba(var(--texto-rgb), 0.5);
}

.current-price {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--texto), var(--botao));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.installments {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(var(--texto-rgb), 0.6);
}

/* Buttons */
.product-actions {
    margin-bottom: 25px;
}

.btn-buy-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border-radius: 60px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-buy-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -5px var(--botao);
    color: white;
}

/* Info Cards */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.info-card i {
    font-size: 1.2rem;
    color: var(--botao);
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.65rem;
    color: rgba(var(--texto-rgb), 0.5);
    text-transform: uppercase;
}

.info-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--texto);
}

/* Shipping Simulator */
.shipping-simulator {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
}

.shipping-simulator h5 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--texto);
}

.shipping-form {
    display: flex;
    gap: 10px;
}

.shipping-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--texto);
}

.shipping-input:focus {
    outline: none;
    border-color: var(--botao);
}

.shipping-btn {
    padding: 12px 20px;
    background: rgba(var(--botao-rgb), 0.15);
    border: none;
    border-radius: 12px;
    color: var(--botao);
    cursor: pointer;
    transition: all 0.3s ease;
}

.shipping-btn:hover {
    background: var(--botao);
    color: white;
}

.shipping-result {
    margin-top: 15px;
}

/* Tabs */
.product-tabs-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    list-style: none;
    margin: 0;
    padding: 0;
}

.tab-item {
    padding: 16px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(var(--texto-rgb), 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-item i {
    margin-right: 8px;
}

.tab-item.active {
    color: var(--botao);
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
}

.tabs-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Description */
.description-content {
    line-height: 1.8;
    color: rgba(var(--texto-rgb), 0.85);
}

/* Specifications */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.specs-table td {
    padding: 15px;
}

.spec-label {
    width: 40%;
    font-weight: 600;
    color: var(--texto);
}

.spec-value {
    color: rgba(var(--texto-rgb), 0.8);
}

/* Related Products */
.section-header-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-header-mini h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--texto);
}

.view-all-link {
    color: var(--botao);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: var(--titulo);
    gap: 5px;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.related-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--botao-rgb), 0.3);
}

.related-link {
    text-decoration: none;
}

.related-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-card:hover .related-overlay {
    opacity: 1;
}

.related-overlay i {
    font-size: 1.5rem;
    color: white;
}

.related-info {
    padding: 12px;
}

.related-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--texto);
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--botao);
}

/* Modal */
.image-modal-premium {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: zoom-out;
}

.image-modal-premium .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
}

.image-modal-premium .modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .product-detail-premium {
        padding: 60px 0;
    }

    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 1.3rem;
    }

    .current-price {
        font-size: 1.5rem;
    }

    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tabs-nav {
        flex-direction: column;
    }

    .tab-item {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .product-info-premium {
        padding: 20px;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
    }

    .shipping-form {
        flex-direction: column;
    }
}


/* ======================================================
           CHECKOUT PREMIUM - Design Fintech
        ====================================================== */

.checkout-premium {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, var(--fundo) 0%, rgba(var(--fundo-rgb), 0.9) 100%);
    min-height: 100vh;
    overflow: hidden;
}

.checkout-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.checkout-bg .bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.checkout-bg .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--botao);
    top: -150px;
    right: -100px;
}

.checkout-bg .shape-2 {
    width: 350px;
    height: 350px;
    background: var(--titulo);
    bottom: -120px;
    left: -80px;
}

.checkout-bg .shape-3 {
    width: 250px;
    height: 250px;
    background: var(--botao);
    top: 40%;
    left: 20%;
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.checkout-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-title i {
    font-size: 1.8rem;
    color: var(--botao);
}

.checkout-title h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--texto);
    margin: 0;
}

.btn-back-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    color: var(--texto);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-back-cart:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--botao);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Checkout Cards */
.checkout-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
    overflow: hidden;
}

.card-header-premium {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    background: rgba(var(--botao-rgb), 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-header-premium i {
    font-size: 1.2rem;
    color: var(--botao);
}

.card-header-premium h5 {
    flex: 1;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--texto);
}

.edit-link {
    font-size: 0.75rem;
    color: var(--botao);
    text-decoration: none;
    transition: color 0.3s ease;
}

.edit-link:hover {
    color: var(--titulo);
}

.card-body-premium {
    padding: 20px 24px;
}

/* Info Row */
.info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-group label {
    display: block;
    font-size: 0.7rem;
    color: rgba(var(--texto-rgb), 0.5);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-group .info-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--texto);
}

/* Address Grid */
.address-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.address-item {
    display: flex;
    flex-direction: column;
}

.address-item.full-width {
    grid-column: span 3;
}

.address-label {
    font-size: 0.65rem;
    color: rgba(var(--texto-rgb), 0.5);
    text-transform: uppercase;
}

.address-value {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--texto);
}

/* Alert */
.alert-insufficient {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
}

.alert-insufficient i {
    color: #dc3545;
}

.alert-insufficient span {
    font-size: 0.85rem;
    color: #dc3545;
}

/* Payment Methods */
.payment-methods-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--botao-rgb), 0.3);
}

.payment-option.selected {
    background: rgba(var(--botao-rgb), 0.1);
    border-color: var(--botao);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.payment-info {
    flex: 1;
}

.payment-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--texto);
}

.payment-amount {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--botao);
}

.payment-desc {
    font-size: 0.7rem;
    color: rgba(var(--texto-rgb), 0.5);
}

.payment-check {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.payment-option.selected .payment-check {
    background: var(--botao);
    border-color: var(--botao);
    position: relative;
}

.payment-option.selected .payment-check::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    color: white;
}

/* Preview Details */
.preview-details {
    margin-top: 20px;
}

.preview-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 15px;
}

.preview-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.85rem;
    color: rgba(var(--texto-rgb), 0.8);
}

.preview-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Summary Card */
.summary-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    background: rgba(var(--botao-rgb), 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-header i {
    font-size: 1.2rem;
    color: var(--botao);
}

.summary-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--texto);
}

.summary-items {
    padding: 20px 24px;
    max-height: 400px;
    overflow-y: auto;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.item-image {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-info {
    flex: 1;
}

.item-info h6 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--texto);
    margin-bottom: 4px;
}

.item-quantity {
    font-size: 0.7rem;
    color: rgba(var(--texto-rgb), 0.5);
}

.item-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--botao);
}

.summary-totals {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(var(--texto-rgb), 0.8);
}

.total-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 15px 0;
}

.grand-total {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
}

.total-value {
    background: linear-gradient(135deg, var(--texto), var(--botao));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-finalize {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    margin: 20px 24px;
    width: calc(100% - 48px);
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border: none;
    border-radius: 60px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-finalize:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -5px var(--botao);
}

/* Empty State */
.empty-checkout {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: rgba(var(--botao-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--botao);
}

.empty-checkout h4 {
    color: var(--texto);
    margin-bottom: 10px;
}

.empty-checkout p {
    color: rgba(var(--texto-rgb), 0.6);
    margin-bottom: 25px;
}

.btn-continue-shop {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border-radius: 60px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-continue-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -5px var(--botao);
    color: white;
}

/* Modal */
.modal-premium .modal-content {
    background: rgba(var(--fundo-rgb), 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
}

.modal-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-header-premium h5 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--texto);
}

.modal-close {
    background: none;
    border: none;
    color: rgba(var(--texto-rgb), 0.6);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--botao);
}

.modal-body-premium {
    padding: 24px;
}

.address-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    color: rgba(var(--texto-rgb), 0.7);
    margin-bottom: 5px;
}

.form-control-premium {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--texto);
    transition: all 0.3s ease;
}

.form-control-premium:focus {
    outline: none;
    border-color: var(--botao);
    background: rgba(255, 255, 255, 0.08);
}

.modal-footer-premium {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    color: rgba(var(--texto-rgb), 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary-premium {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border: none;
    border-radius: 60px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px -3px var(--botao);
}

/* Responsive */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-right {
        order: -1;
    }

    .summary-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .checkout-premium {
        padding: 60px 0;
    }

    .checkout-title h2 {
        font-size: 1.5rem;
    }

    .info-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .address-grid {
        grid-template-columns: 1fr;
    }

    .address-item.full-width {
        grid-column: span 1;
    }

    .address-form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .checkout-header {
        flex-direction: column;
        text-align: center;
    }

    .payment-option {
        flex-wrap: wrap;
    }
}


/* ======================================================
           CART PREMIUM - Design Fintech
        ====================================================== */

.cart-premium {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, var(--fundo) 0%, rgba(var(--fundo-rgb), 0.9) 100%);
    min-height: 100vh;
    overflow: hidden;
}

.cart-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.cart-bg .bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.cart-bg .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--botao);
    top: -150px;
    right: -100px;
}

.cart-bg .shape-2 {
    width: 350px;
    height: 350px;
    background: var(--titulo);
    bottom: -120px;
    left: -80px;
}

.cart-bg .shape-3 {
    width: 250px;
    height: 250px;
    background: var(--botao);
    top: 40%;
    left: 20%;
}

.cart-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cart-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-title i {
    font-size: 1.8rem;
    color: var(--botao);
}

.cart-title h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--texto);
    margin: 0;
}

.cart-badge {
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

/* Grid */
.cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    transition: all 0.3s ease;
}

.cart-item-card:hover {
    border-color: rgba(var(--botao-rgb), 0.2);
}

.item-image {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 50px;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--texto);
    margin-bottom: 8px;
}

.item-price {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--texto), var(--botao));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.item-actions {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.item-subtotal {
    font-size: 0.8rem;
    color: rgba(var(--texto-rgb), 0.6);
}

.btn-remove {
    background: rgba(220, 53, 69, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    color: #dc3545;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    background: #dc3545;
    color: white;
}

/* Shipping Section */
.shipping-section {
    grid-column: span 3;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.shipping-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--texto);
}

.shipping-label i {
    color: var(--botao);
}

.shipping-input-group {
    display: flex;
    gap: 10px;
    max-width: 300px;
}

.shipping-input {
    flex: 1;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--texto);
    font-size: 0.85rem;
}

.shipping-input:focus {
    outline: none;
    border-color: var(--botao);
}

.shipping-calc-btn {
    padding: 10px 18px;
    background: rgba(var(--botao-rgb), 0.15);
    border: none;
    border-radius: 12px;
    color: var(--botao);
    cursor: pointer;
    transition: all 0.3s ease;
}

.shipping-calc-btn:hover {
    background: var(--botao);
    color: white;
}

.shipping-options {
    margin-top: 15px;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.btn-continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    color: var(--texto);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-continue-shopping:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--botao);
}

.btn-clear-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 60px;
    color: #dc3545;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear-cart:hover {
    background: #dc3545;
    color: white;
}

/* Summary Card */
.summary-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    background: rgba(var(--botao-rgb), 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-header i {
    font-size: 1.2rem;
    color: var(--botao);
}

.summary-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--texto);
}

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

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(var(--texto-rgb), 0.8);
}

.summary-row.total {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
}

.total-value {
    background: linear-gradient(135deg, var(--texto), var(--botao));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.summary-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 15px 0;
}

.summary-footer {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-update-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    color: var(--texto);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-update-cart:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border-radius: 60px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -5px var(--botao);
    color: white;
}

.security-badges {
    padding: 15px 24px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.security-badges p {
    font-size: 0.75rem;
    color: rgba(var(--texto-rgb), 0.5);
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
    color: rgba(var(--texto-rgb), 0.5);
}

/* Empty State */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: rgba(var(--botao-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--botao);
}

.empty-cart h4 {
    color: var(--texto);
    margin-bottom: 10px;
}

.empty-cart p {
    color: rgba(var(--texto-rgb), 0.6);
    margin-bottom: 25px;
}

.btn-continue {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--botao), var(--titulo));
    border-radius: 60px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -5px var(--botao);
    color: white;
}

/* Shipping Options Cards */
.opcao-frete {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.opcao-frete.selecionada {
    border-color: var(--botao);
    background: rgba(var(--botao-rgb), 0.1);
}

/* Modal Custom */
.modal-premium-custom {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 450px;
    background: rgba(var(--fundo-rgb), 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.modal-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-header-premium h5 {
    margin: 0;
    color: var(--texto);
}

.modal-body-premium {
    padding: 24px;
    color: rgba(var(--texto-rgb), 0.8);
}

.modal-footer-premium {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 18px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-modal-secondary {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    color: var(--texto);
    cursor: pointer;
}

.btn-modal-danger {
    padding: 8px 20px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    border-radius: 60px;
    color: white;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }

    .cart-item-card {
        grid-template-columns: 80px 1fr auto;
    }

    .item-image {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .cart-premium {
        padding: 60px 0;
    }

    .cart-title h2 {
        font-size: 1.5rem;
    }

    .cart-item-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .item-image {
        width: 100%;
        height: 150px;
    }

    .item-actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .shipping-section {
        grid-column: span 1;
    }

    .cart-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-continue-shopping,
    .btn-clear-cart {
        justify-content: center;
    }
}