:root {
    --primary-color: #efb810; /* vermelho Americanas */
    --secondary-color: #ffffff; /* branco */
    --background-color: #ffffff; /* fundo branco */
    --card-bg: #efb810;
    --lego-shadow: 0 4px 24px rgba(0,0,0,0.08);
    --text-color: #856508;
    --border-radius: 18px;
    --input-border: #e0e0e0;
    --input-focus: #5c5b5b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', 'Roboto', sans-serif;
    font-weight: 700;
}

body, html {
    background: #705501 !important;
}

h1, h2, h3, h4, h5, h6, .page-header h1, .bikes-list h2, .category-header h2, .promo-content h3, .promo-content p, .stat-info h3, .stat-info .amount, .bike-info h3, .my-motorcycle-info h3, .premium-bike-info h3, .bike-card-info h3, .testimonial-content, .testimonial-author, .info-label, .info-value, .amount, .bike-price, .daily-return, .price-tag, .daily-profit, .view-all, .stat-value, .tab-button.active, .promo-button, .register-link a, .login-link a, .checkbox-container a, .testimonial-content p, .testimonial-author, .extract-title, .extract-subtitle, .extract-amount, .referral-name, .referral-date, .stat-label, .stat-value, .footer-links a, .banner-content h1, .banner-content p {
    color: #665110 !important;
}

input, select, textarea {
    background: #fff !important;
    color: #856508 !important;
    border: 1.5px solid #665110 !important;
}

.bike-card, .my-motorcycle-card, .withdrawal-form-container, .referral-link-container, .commission-levels, .referral-list, .register-form-container, .payment-summary, .pix-qrcode-container, .payment-instructions, .extract-tabs, .extract-item, .testimonial-card {
    background: var(--card-bg);
    color: #fff;
    border: 2px solid #856508;
    box-shadow: var(--lego-shadow);
}

.lego-button, .extend-button, .rent-again-button, .details-button, .view-details-button, .register-button, .login-button, .secondary-button {
    color: #fff !important;
}

.sidenav, .sidenav-header, .profile-circle {
    color: #fff !important;
}

hr, .linha-verde {
    border-color: #efb810 !important;
    background: #efb810 !important;
}

.app-container {
    max-width: 420px;
    margin: 40px auto;
    padding: 0 10px;
    min-height: 100vh;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    margin-bottom: 15px;
    background-color: var(--primary-color);
    border-radius: 12px;
    box-shadow: var(--lego-shadow);
    padding: 15px;
}

.menu-toggle {
    color: var(--secondary-color);
    font-size: 22px;
    cursor: pointer;
    background: #b1870a ;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 2px 0 #111315;
}

.logo {
    width: 130px;
}

.infinity-logo {
    width: 100%;
}

.logo-text {
    fill: var(--secondary-color);
    font-size: 16px;
    font-weight: bold;
}

.header-icons {
    display: flex;
    gap: 15px;
}

.header-icons i {
    color: var(--secondary-color);
    font-size: 18px;
    cursor: pointer;
    background: #b1870a ;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 2px 0 #111315;
}

/* Balance Cards */
.balance-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.balance-card {
    background: #d6a510;
    padding: 12px;
    border-radius: 12px;
    box-shadow: var(--lego-shadow);
    border: 2px solid var(--primary-color);
}

.balance-card h3 {
    color: #f1f1f1;
    font-size: 14px;
    font-weight: 800;
}

.amount {
    font-size: 22px;
    color: #f1f1f1;
    margin-top: 6px;
    font-weight: 800;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.lego-button {
    background: var(--primary-color);
    border: none;
    color: var(--secondary-color);
    padding: 12px 8px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: var(--lego-shadow);
    text-align: center;
    transition: all 0.2s ease;
}

.lego-button:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 #111315;
}

/* Bikes List */
.bikes-list {
    margin-bottom: 80px;
}

.bikes-list h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    border-bottom: 3px solid #efb810;
    padding-bottom: 5px;
}

.bike-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: var(--lego-shadow);
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 2px solid var(--primary-color);
}

.bike-carousel {
    width: 100%;
    height: 150px;
    background: rgba(0, 204, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--primary-color);
}

.carousel-inner {
    display: flex;
    width: 100%;
    height: 120px;
    transition: transform 0.3s ease;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item.active {
    display: flex;
}

.bike-svg {
    width: 80%;
    height: 80%;
}

.bike-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.carousel-controls {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.carousel-control {
    background: var(--primary-color);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 0 #111315;
    user-select: none;
}

.carousel-dots {
    display: flex;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(0, 204, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--primary-color);
}

.bike-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bike-info h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.bike-info p {
    color: var(--text-color);
    margin-bottom: 3px;
}

.rent-button {
    margin-top: 10px;
    align-self: flex-end;
    width: 150px;
}

/* Page header styles */
.page-header {
    margin-bottom: 20px;
    border-bottom: 3px solid #efb810;
    padding-bottom: 10px;
}

.page-header h1 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 5px;
}

.page-header p {
    color: var(--text-color);
    font-size: 14px;
}

/* My Motorcycles page styles */
.my-motorcycles-list {
    margin-bottom: 80px;
}

.my-motorcycle-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: var(--lego-shadow);
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 2px solid var(--primary-color);
    position: relative;
}

.my-motorcycle-card.completed {
    border: 2px solid #555;
    box-shadow: 0 4px 0 #444;
    opacity: 0.85;
}

.my-motorcycle-image {
    width: 100%;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.my-motorcycle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
}

.my-motorcycle-card.completed .my-motorcycle-image img {
    border-color: #555;
    filter: grayscale(30%);
}

.completed-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.my-motorcycle-info {
    padding: 5px;
}

.my-motorcycle-info h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.my-motorcycle-card.completed .my-motorcycle-info h3 {
    color: #555;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    font-size: 12px;
    color: #555;
    font-weight: normal;
}

.info-value {
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

.countdown {
    color: #ff5722;
    font-weight: bold;
}

.my-motorcycle-card.completed .countdown {
    color: var(--primary-color);
}

.my-motorcycle-progress {
    padding: 5px;
}

.progress-bar {
    height: 12px;
    background-color: rgba(0, 204, 0, 0.15);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--primary-color);
}

.my-motorcycle-card.completed .progress-bar {
    border-color: #555;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.my-motorcycle-card.completed .progress-fill {
    background-color: #555;
}

.progress-text {
    font-size: 12px;
    color: #555;
    text-align: center;
    margin-top: 5px;
}

.my-motorcycle-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.action-button {
    flex: 1;
    padding: 8px 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.extend-button {
    background-color: #ff9800;
    box-shadow: 0 4px 0 #e65100;
}

.extend-button:active {
    box-shadow: 0 1px 0 #e65100;
}

.rent-again-button {
    background-color: #2196f3;
    box-shadow: 0 4px 0 #0d47a1;
}

.rent-again-button:active {
    box-shadow: 0 1px 0 #0d47a1;
}

.details-button {
    background-color: var(--primary-color);
}

/* Side Navbar */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    box-shadow: 4px 0 10px rgba(0,0,0,0.2);
}

.sidenav a {
    padding: 15px 15px 15px 25px;
    text-decoration: none;
    font-size: 18px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.2s;
    white-space: nowrap;
}

.sidenav a:hover {
    background-color: #efb810;
}

.sidenav a.active {
    background-color: #efb810;
    font-weight: bold;
}

.sidenav .closebtn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 22px;
    margin-left: 50px;
    padding: 5px 10px;
    background: #b1870a ;
    border-radius: 8px;
}

.sidenav-header {
    padding: 0 25px 25px;
    color: var(--secondary-color);
    border-bottom: 2px solid #856508;
    margin-bottom: 20px;
}

.sidenav-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #b1870a ;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.sidenav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.sidenav.open {
    width: 280px;
    animation: slideIn 0.3s forwards;
}

.sidenav-backdrop.visible {
    display: block;
    animation: fadeIn 0.3s forwards;
}

/* Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.lego-button:hover {
    animation: bounce 0.5s infinite;
    background: #b1870a ;
}

/* Withdrawal page styles */
.withdrawal-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.balance-summary {
    margin-bottom: 10px;
}

.withdrawal-form-container {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--lego-shadow);
    border: 2px solid var(--primary-color);
}

.withdrawal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 14px;
    color: var(--text-color);
    font-weight: bold;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    color: var(--primary-color);
}

.withdrawal-form input,
.withdrawal-form select {
    padding: 12px 12px 12px 40px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
    background-color: rgba(0, 204, 0, 0.05);
}

.withdrawal-form input:focus,
.withdrawal-form select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 204, 0, 0.3);
}

.fee-calculation {
    background-color: rgba(0, 204, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid var(--primary-color);
}

.fee-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.fee-item.total {
    border-top: 1px dashed var(--primary-color);
    margin-top: 8px;
    padding-top: 8px;
    font-weight: bold;
}

.withdrawal-button {
    margin-top: 10px;
    padding: 14px;
}

.withdrawal-history {
    margin-top: 20px;
}

.withdrawal-history h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--card-bg);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.history-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.history-icon.pending {
    background-color: #ff9800;
}

.history-details {
    flex: 1;
}

.history-main {
    display: flex;
    justify-content: space-between;
}

.history-date {
    font-size: 14px;
    color: var(--text-color);
}

.history-amount {
    font-weight: bold;
    font-size: 16px;
}

.history-status {
    font-size: 12px;
    color: var(--primary-color);
}

.history-status.pending {
    color: #ff9800;
}

/* Referral page styles */
.referral-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
}

.referral-cards {
    margin-bottom: 0;
}

.referral-link-container {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--lego-shadow);
    border: 2px solid var(--primary-color);
}

.referral-link-container h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.referral-link-box {
    display: flex;
    margin-bottom: 15px;
}

.referral-link-box input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--primary-color);
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    background-color: rgba(0, 204, 0, 0.05);
}

.copy-button {
    border-radius: 0 8px 8px 0;
    padding: 12px 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border: none;
    box-shadow: 0 3px 0 rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.share-button:active {
    transform: translateY(3px);
    box-shadow: none;
}

.whatsapp {
    background-color: #25D366;
}

.facebook {
    background-color: #1877F2;
}

.twitter {
    background-color: #1DA1F2;
}

.telegram {
    background-color: #0088cc;
}

.commission-levels {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--lego-shadow);
    border: 2px solid var(--primary-color);
}

.commission-levels h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.levels-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.level-card {
    background: #b1870a  !important;
    color: #fff !important;
    border: 2px solid #efb810 !important;
    box-shadow: 0 3px 0 #856508 !important;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.level-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.level-number {
    background: #efb810 !important;
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

.level-info {
    flex: 1;
}

.level-info h4 {
    color: #fff !important;
    margin-bottom: 5px;
    font-size: 16px;
}

.level-info p {
    font-size: 14px;
    color: #fff !important;
    font-weight: normal;
}

.level-connector {
    color: #fff !important;
    height: 30px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.referral-list {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--lego-shadow);
    border: 2px solid var(--primary-color);
}

.referral-list h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.referral-tabs {
    display: flex;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 15px;
}

.tab-button {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    position: relative;
}

.tab-button.active {
    color: var(--primary-color);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.referral-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    background-color: rgba(0, 204, 0, 0.1);
    margin-bottom: 10px;
    border: 1px solid var(--primary-color);
}

.referral-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.referral-info {
    flex: 1;
}

.referral-name {
    font-weight: bold;
    color: #333;
}

.referral-date {
    font-size: 12px;
    color: #555;
    font-weight: normal;
}

.referral-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
}

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

.stat-label {
    font-size: 12px;
    color: #555;
    font-weight: normal;
}

.stat-value {
    font-weight: bold;
    color: var(--primary-color);
}

/* Register page styles */
.register-page {
    background-color: #f5f5f5;
}

.register-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.invitation-banner {
    background: var(--primary-color);
    border-radius: 12px;
    padding: 15px;
    box-shadow: var(--lego-shadow);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 0 #009900;
    }
    50% {
        box-shadow: 0 6px 0 #009900;
    }
    100% {
        box-shadow: 0 4px 0 #009900;
    }
}

.invitation-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.invitation-info i {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.register-form-container {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--lego-shadow);
    border: 2px solid var(--primary-color);
}

.register-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 24px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.invitation-code-group {
    margin-top: 5px;
}

.terms-group {
    margin-top: 5px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    font-weight: normal;
    line-height: 1.4;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.register-button {
    margin-top: 10px;
    padding: 14px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
}

.login-link {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #555;
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

/* Login page styles */
.login-form-container {
    margin-top: 10px;
}

.login-logo {
    text-align: center;
    margin-bottom: 20px;
}

.login-infinity-logo {
    width: 150px;
    margin: 0 auto;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.remember-me {
    padding-left: 30px;
    margin-bottom: 0;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
}

.login-button {
    margin-top: 20px;
}

.social-login {
    margin-top: 20px;
    text-align: center;
}

.social-login p {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
    position: relative;
}

.social-login p::before,
.social-login p::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background-color: #ddd;
}

.social-login p::before {
    left: 0;
}

.social-login p::after {
    right: 0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    border: none;
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.social-button:active {
    transform: scale(0.95);
}

.google {
    background-color: #DB4437;
}

.facebook {
    background-color: #4267B2;
}

.apple {
    background-color: #000000;
}

.register-link {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #555;
}

.register-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

/* Payment page styles */
.payment-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.payment-summary {
    background: rgba(0, 204, 0, 0.15);
    border-radius: 12px;
    padding: 15px;
    box-shadow: var(--lego-shadow);
    border: 2px solid var(--primary-color);
}

.payment-info h3 {
    color: #007700;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.payment-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.payment-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-label {
    font-size: 12px;
    color: #555;
    font-weight: normal;
}

.payment-value {
    font-size: 16px;
    color: #006600;
    font-weight: bold;
}

.payment-timer {
    background: var(--primary-color);
    border-radius: 12px;
    padding: 15px;
    box-shadow: var(--lego-shadow);
    color: white;
    text-align: center;
}

.timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.timer-label {
    font-size: 14px;
    font-weight: bold;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    font-size: 28px;
    font-weight: bold;
}

.time-unit {
    font-size: 12px;
}

.time-separator {
    font-size: 28px;
    font-weight: bold;
}

.pix-qrcode-container {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--lego-shadow);
    border: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.qrcode-wrapper {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-color);
}

.pix-code-container {
    width: 100%;
}

.pix-code-container p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    text-align: center;
}

.pix-code-box {
    display: flex;
    width: 100%;
}

.pix-code-box input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--primary-color);
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    background-color: rgba(0, 204, 0, 0.05);
    text-overflow: ellipsis;
}

.copy-button {
    border-radius: 0 8px 8px 0;
    padding: 12px 15px;
    white-space: nowrap;
}

.payment-status {
    text-align: center;
    padding: 15px;
}

.status-waiting,
.status-confirmed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.status-waiting i {
    color: #ff9800;
    font-size: 40px;
}

.status-confirmed i {
    color: var(--primary-color);
    font-size: 40px;
}

.payment-actions {
    display: flex;
    gap: 10px;
}

.payment-actions button {
    flex: 1;
}

.secondary-button {
    background-color: #f44336;
    box-shadow: 0 4px 0 #b71c1c;
}

.secondary-button:active {
    box-shadow: 0 1px 0 #b71c1c;
}

.payment-instructions {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--lego-shadow);
    border: 2px solid var(--primary-color);
}

.payment-instructions h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 16px;
}

.payment-instructions ol {
    margin-left: 20px;
    color: #555;
}

.payment-instructions li {
    margin-bottom: 8px;
    font-weight: normal;
}

/* Extract page styles */
.extracts-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.extract-tabs {
    display: flex;
    background-color: var(--card-bg);
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    overflow: hidden;
    margin-bottom: 15px;
}

.extract-tabs .tab-button {
    flex: 1;
    background: none;
    border: none;
    padding: 15px 10px;
    font-size: 14px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.extract-tabs .tab-button.active {
    color: white;
    background-color: var(--primary-color);
}

.date-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px 15px;
    background-color: rgba(0, 204, 0, 0.1);
    border-radius: 8px;
    border: 1px solid var(--primary-color);
}

.date-filter label {
    font-size: 14px;
    color: #555;
}

.date-filter select {
    padding: 8px 10px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    background-color: white;
    font-size: 14px;
}

.extract-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.extract-day-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.day-header {
    font-size: 14px;
    color: #666;
    padding: 0 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.day-header::after {
    content: '';
    flex: 1;
    margin-left: 10px;
    height: 1px;
    background-color: #ddd;
}

.extract-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.extract-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.extract-item.pending {
    border-left-color: #ff9800;
    background-color: rgba(255, 152, 0, 0.05);
}

.extract-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.extract-icon.profit {
    background-color: var(--primary-color);
}

.extract-icon.referral {
    background-color: #2196f3;
}

.extract-icon.withdrawal {
    background-color: #ff5722;
}

.extract-info {
    flex: 1;
}

.extract-title {
    font-weight: bold;
    color: #333;
    font-size: 15px;
}

.extract-subtitle {
    font-size: 13px;
    color: #666;
    font-weight: normal;
}

.extract-amount {
    font-weight: bold;
    font-size: 16px;
}

.extract-amount.profit {
    color: var(--primary-color);
}

.extract-amount.referral {
    color: #2196f3;
}

.extract-amount.withdrawal {
    color: #ff5722;
}

.action-card p, .stat-info h3, .stat-info .amount, .category-header h2, .view-all, .bike-card-info h3, .premium-bike-info h3, .bike-price, .daily-return, .promo-content h3, .promo-content p, .testimonial-content, .testimonial-author, .footer-links a, .banner-content h1, .banner-content p {
    color: #fff !important;
}

.withdrawal-form-container, .register-form-container, .login-form-container {
    background: #705501 !important;
    color: #705501 !important;
    border-radius: 18px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
    border: 1.5px solid #f5f5f5 !important;
    padding: 32px 28px 24px 28px !important;
    margin: 0 auto !important;
    margin-top: 24px !important;
}

.lego-button, .register-button, .login-button, .withdrawal-button {
    background: #efb810 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 999px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    padding: 14px 0 !important;
    width: 100% !important;
    margin-top: 10px !important;
    box-shadow: 0 2px 0 #b80010 !important;
    transition: background 0.2s !important;
    letter-spacing: 0.5px !important;
}
.lego-button:hover, .register-button:hover, .login-button:hover, .withdrawal-button:hover {
    background: #b80010 !important;
}

.form-group label, .input-with-icon i {
    color: var(--primary-color) !important;
}

.page-header h1, .page-header p {
    color: var(--primary-color) !important;
    text-align: center;
    margin-bottom: 0.5rem;
}

.alert-danger { background-color: var(--primary-color); color: #fff; border-radius: 8px; }
.alert-success { background-color: #28a745; color: #fff; border-radius: 8px; }

/* Ajuste para links */
.register-link a, .login-link a {
    color: var(--primary-color) !important;
    text-decoration: underline;
}

/* Remove fundo escuro antigo */
.sidenav-backdrop { display: none !important; }