:root {
    --souza-orange: #ee4d2d;
    --souza-bg: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333;
    --text-light: #666;
    --card-bg: #ffffff;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--souza-bg);
    margin: 0;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* --- Header Styles --- */
.main-header {
    background: linear-gradient(-180deg,#f53d2d,#ff6633);
    color: white;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 8px 5%;
    font-size: 10px;
    background: rgba(0,0,0,0.1);
}

.top-bar span, .top-bar a {
    margin-right: 15px;
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.search-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5%;
}

.search-container {
    flex: 1;
    display: flex;
    background: white;
    margin: 0 40px;
    border-radius: 2px;
    padding: 3px;
}

.search-container input {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
    font-size: 14px;
}

.btn-search {
    background-color: var(--souza-orange);
    border: none;
    color: white;
    padding: 0 20px;
    cursor: pointer;
    border-radius: 2px;
}

/* --- Promo Cards --- */
.section-title {
    font-size: 1.1rem;
    color: #666;
    margin: 30px 0 15px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.card {
    border-radius: 4px;
    min-height: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.orange-gradient {
    background: linear-gradient(135deg, #ff5722, #ff8a65);
    color: white;
    padding: 20px;
}

.orange-solid {
    background-color: #f6432e;
    color: white;
    padding: 20px;
}

.white-card {
    background-color: white;
}

.card-top-promo {
    background-color: #f6432e;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    border-radius: 4px 4px 0 0;
}

.big-number {
    font-size: 40px;
    font-weight: bold;
    margin-right: 15px;
}

.card-footer-promo {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-souza-small {
    background-color: #ee4d2d;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
}

/* --- Bottom Menu --- */
.bottom-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.menu-item {
    background: white;
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #eee;
    transition: 0.2s;
}

.menu-item span {
    font-size: 12px;
    color: #555;
    margin-top: 10px;
    display: block;
}

.icon-box {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.red { background-color: #ff4d4d; }
.orange { background-color: #ff9f43; }
.dark-orange { background-color: #ee5253; }
.red-alt { background-color: #ff6b6b; }
.cart { background-color: #f36c53; }

/* Responsividade Básica */
@media (max-width: 768px) {
    .promo-grid, .bottom-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Catalog Layout --- */
.catalog-layout {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.catalog-sidebar {
    width: 250px;
    flex-shrink: 0;
    background: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    height: fit-content;
}

.catalog-content {
    flex-grow: 1;
}

.filter-group {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-title {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    color: #333;
    font-size: 14px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    margin-bottom: 8px;
}

.filter-list a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
}

.filter-list a:hover, .filter-list a.active {
    color: var(--souza-orange);
    font-weight: bold;
}

.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: white;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .catalog-layout {
        flex-direction: column;
    }
    .catalog-sidebar {
        width: 100%;
        box-sizing: border-box;
    }
}

/* --- Navigation Bar Moderno --- */
.main-nav-categories {
    background-color: rgba(0,0,0,0.05); /* Fundo sutilmente mais escuro para separar */
    box-shadow: none;
    border-bottom: none;
    position: relative;
    z-index: 100;
}

.main-nav-categories .container {
    padding: 0 20px;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
    white-space: nowrap;
    position: relative;
}

.nav-link:hover {
    color: rgba(255,255,255,0.8);
}

/* Efeito de sublinhado animado */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
    left: 0;
}

.nav-link .arrow {
    font-size: 10px;
    margin-left: 5px;
    color: rgba(255,255,255,0.7);
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 0 0 4px 4px;
    padding: 10px 0;
    border-top: 2px solid var(--souza-orange);
    animation: fadeIn 0.2s ease;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background-color: #f9f9f9;
    color: var(--souza-orange);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .nav-list {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 5px;
    }
    .nav-link {
        padding: 12px 15px;
    }
}

/* --- ESTILOS DA HOME (Migrados do index.php) --- */

/* Títulos e Cards Modernos */
.section-title-modern {
    text-align: center;
    font-size: 28px;
    color: var(--text-dark);
    margin: 40px 0 30px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-title-modern.left-align { text-align: left; margin-left: 10px; }
.section-title-modern::after {
    content: ''; display: block; width: 60px; height: 4px;
    background: var(--souza-orange); margin: 10px auto 0; border-radius: 2px;
}
.section-title-modern.left-align::after { margin: 10px 0 0; }

.modern-card {
    background: var(--card-bg); border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; border: 1px solid #f0f0f0;
    display: flex; flex-direction: column; height: 100%;
}
.modern-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

/* Slider Principal */
.slider-container { position: relative; max-width: 100%; margin: 20px 0 40px 0; overflow: hidden; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.mySlides { display: none; width: 100%; animation: fade 1.5s; }
.mySlides img { width: 100%; height: 500px; display: block; object-fit: cover; object-position: center; filter: brightness(0.9); }
.banner-html-container { width: 100%; height: 500px; overflow: hidden; background: #f0f0f0; display: flex; align-items: center; justify-content: center; }
.banner-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; width: 80%; z-index: 2; }
.banner-title { font-size: 3.5em; color: white; font-weight: 800; text-transform: uppercase; text-shadow: 0 4px 10px rgba(0,0,0,0.6); margin: 0 0 20px 0; opacity: 0; animation: growText 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; animation-delay: 0.3s; }
.banner-btn { font-size: 18px; padding: 12px 30px; border-radius: 50px; background: var(--souza-orange); border: 2px solid white; box-shadow: 0 4px 15px rgba(238, 77, 45, 0.4); animation: growText 1s forwards; animation-delay: 0.6s; opacity: 0; display: inline-block; color: white; text-decoration: none; }
@keyframes growText { 0% { transform: scale(0.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes fade { from {opacity: .4} to {opacity: 1} }
.prev, .next { cursor: pointer; position: absolute; top: 50%; width: auto; padding: 16px; margin-top: -22px; color: white; font-weight: bold; font-size: 18px; transition: 0.6s ease; border-radius: 0 3px 3px 0; user-select: none; background-color: rgba(0,0,0,0.3); text-decoration: none; }
.next { right: 0; border-radius: 3px 0 0 3px; }
.prev:hover, .next:hover { background-color: rgba(0,0,0,0.8); }

/* Cards de Produto */
.product-card-body { padding: 15px; display: flex; flex-direction: column; height: 100%; text-align: center; }
.product-img-container { height: 140px; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-img-container.small { height: 120px; }
.product-img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-placeholder { font-size: 50px; }
.product-placeholder.small { font-size: 40px; }
.product-title { font-size: 16px; font-weight: 600; margin: 0 0 10px 0; color: #333; flex-grow: 1; }
.product-title.small { font-size: 15px; }
.product-meta { font-size: 12px; color: #888; margin-bottom: 10px; display: flex; justify-content: center; align-items: center; gap: 10px; }
.product-meta-star { color: #ffc107; }
.product-production { font-size: 11px; color: #666; margin: 0 0 10px 0; }
.product-production img { height: 20px; vertical-align: middle; margin-right: 3px; }
.product-price { color: var(--souza-orange); font-weight: bold; font-size: 18px; margin: 0 0 15px 0; }
.product-btn { width: 100%; text-align: center; text-decoration: none; display: block; border-radius: 6px; }

/* Layout Home */
.home-layout { display: flex; gap: 30px; align-items: flex-start; flex-wrap: wrap; }
.home-main-col { flex: 2; min-width: 300px; }
.home-sidebar-col { flex: 1; min-width: 280px; margin-top: 40px; }

/* Avaliações */
.reviews-section { margin-top: 50px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.review-card-content { padding: 20px; }
.review-stars { color: #ffc107; font-size: 20px; margin-bottom: 10px; }
.review-text { color: #555; font-style: italic; margin-bottom: 15px; line-height: 1.5; }
.review-author { font-size: 13px; color: #888; border-top: 1px solid #eee; padding-top: 10px; }
.review-product-name { color: var(--souza-orange); }
.reviews-empty { grid-column: 1/-1; text-align: center; color: #666; }

/* Widgets Sidebar */
.widget-card { padding: 20px; margin-bottom: 20px; text-align: center; }
.widget-card.top-product { border: 2px solid #ffc107; }
.widget-card.best-offer { border: 2px solid #28a745; }
.widget-card.earn-balance { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border: none; }
.widget-title { margin-top: 0; color: #333; }
.widget-card.earn-balance .widget-title { color: white; }
.widget-img { max-width: 100%; height: 100px; object-fit: contain; margin: 10px 0; }
.widget-placeholder { font-size: 50px; }
.widget-prod-name { margin: 10px 0; }
.widget-price { color: #28a745; font-weight: bold; font-size: 24px; }
.widget-btn-offer { display: block; background-color: #28a745; }
.widget-btn-earn { display: block; background: white; color: #764ba2; border: none; }

.sidebar-banner { margin-bottom: 20px; background: white; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); overflow: hidden; }
.sidebar-banner-link { text-decoration: none; color: inherit; display: block; }
.sidebar-banner-img { width: 100%; display: block; }
.sidebar-banner-title { padding: 15px; text-align: center; border-top: 1px solid #eee; }
.sidebar-banner-title h4 { margin: 0; color: #333; font-size: 16px; font-weight: 600; }

/* Banner Rodapé */
.footer-banner { margin: 40px 0; text-align: center; }
.footer-banner img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

/* Menu Rápido */
.menu-item { text-decoration: none; color: inherit; }

/* Benefícios */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: left; margin-top: 60px; margin-bottom: 40px; border-top: 1px solid #eee; padding-top: 40px; }
.benefit-card { background: white; padding: 25px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.benefit-icon { font-size: 40px; margin-bottom: 15px; }
.benefit-title { margin: 0 0 10px 0; }
.benefit-desc { color: #666; margin: 0; }

/* Banner Material Impresso */
.print-material-section { margin: 60px 0; text-align: center; }
.print-material-card { 
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%), url('upload/banner.jpg'); 
    background-size: cover; background-position: center; 
    border-radius: 12px; overflow: hidden; 
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; 
}
.print-material-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4); }
.print-material-content { padding: 40px; color: white; text-align: center; }
.print-material-icon { font-size: 60px; margin-bottom: 20px; }
.print-material-title { font-size: 26px; font-weight: 700; margin: 0 0 15px 0; }
.print-material-desc { font-size: 14px; line-height: 1.6; margin: 0 0 25px 0; opacity: 0.95; }
.print-material-tags { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.print-material-tag { background: rgba(255,255,255,0.2); padding: 6px 12px; border-radius: 20px; font-size: 12px; }
.print-material-btn { display: inline-block; background: white; color: #667eea; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; border: 2px solid white; }

/* Alertas Gerais (Desktop) */
.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    font-size: 14px;
}
.alert-info {
    background-color: #e2e3e5;
    border-color: #d6d8db;
    color: #383d41;
}

/* Cookie Consent */
.cookie-consent { 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    background: rgba(30, 30, 30, 0.95); 
    color: white; 
    padding: 20px; 
    z-index: 9999; 
    display: none; 
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3); 
    border-top: 3px solid var(--souza-orange);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.cookie-content p { margin: 0; font-size: 15px; color: #fff; line-height: 1.5; }
.cookie-content a { 
    color: #fff; 
    text-decoration: none; 
    font-weight: bold; 
    border-bottom: 2px solid var(--souza-orange);
    transition: color 0.2s;
}
.cookie-content a:hover { color: var(--souza-orange); }
@media (max-width: 768px) { .cookie-content { flex-direction: column; text-align: center; } }

/* --- PERFIL & AUTH STYLES --- */
/* Estilos para Perfil com cor padrão laranja */
input:focus, textarea:focus, select:focus {
    border-color: var(--souza-orange, #ee4d2d) !important;
    box-shadow: 0 0 0 2px rgba(238, 77, 45, 0.2);
    outline: none;
}
.btn-souza-small {
    background-color: var(--souza-orange) !important;
    border: 1px solid var(--souza-orange) !important;
}
.btn-souza-small:hover {
    opacity: 0.9;
}

/* --- ESTILOS GERAIS DO PERFIL --- */
.profile-main-content { background: white; border-radius: 8px; padding: 30px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.profile-content-title { margin-top: 0; margin-bottom: 25px; color: #333; }
.profile-alert { padding: 15px; margin-bottom: 20px; border-radius: 4px; }
.profile-alert.success { background: #d4edda; color: #155724; }
.profile-alert.error { background: #f8d7da; color: #721c24; }

/* Layout Sidebar Desktop */
.profile-dashboard {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.profile-sidebar {
    width: 280px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    flex-shrink: 0;
}
.sidebar-header { padding: 30px 20px; text-align: center; border-bottom: 1px solid #eee; }
.sidebar-avatar-wrapper { position: relative; display: inline-block; }
.sidebar-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 15px; border: 3px solid #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.sidebar-avatar-edit { position: absolute; bottom: 10px; right: 0; background: var(--souza-orange, #ee4d2d); color: white; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 12px; border: 2px solid white; }
.sidebar-username { margin: 0; font-size: 18px; color: #333; }
.sidebar-email { margin: 5px 0 0; color: #999; font-size: 14px; }
.sidebar-divider { height: 1px; background: #eee; margin: 10px 20px; }
.logout-link { color: #dc3545 !important; }
.logout-link:hover { background: #f8d7da !important; }

.profile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    color: #555;
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: all 0.2s;
    font-size: 15px;
}
.profile-menu a:hover {
    background: #f8f9fa;
    color: var(--souza-orange, #ee4d2d);
}
.profile-menu a.active {
    background: #fff5f1;
    color: var(--souza-orange, #ee4d2d);
    border-left-color: var(--souza-orange, #ee4d2d);
    font-weight: 600;
}
.stat-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
}
.stat-card:hover {
    transform: translateY(-5px);
}
.stat-icon { background: #e3f2fd; color: #2196F3; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.stat-value { font-size: 24px; font-weight: bold; color: #333; }
.stat-label { color: #666; font-size: 14px; }
.stat-card .stat-icon.wallet { background: #fff3e0; color: #ff9800; }
.stat-card .stat-icon.balance { background: #e8f5e9; color: #4caf50; }

@media (max-width: 900px) {
    .profile-dashboard { flex-direction: column; }
    .profile-sidebar { width: 100%; }
}

/* Modern Login/Register Styles */
.auth-container { max-width: 1100px; margin: 0 auto; }
.auth-header { text-align: center; margin-bottom: 50px; }
.auth-header h1 { font-size: 2.5rem; color: #333; margin: 0 0 15px 0; font-weight: 800; letter-spacing: -1px; }
.auth-header p { color: #666; font-size: 1.1rem; margin: 0; }

.auth-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; align-items: start; }

.auth-card { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: transform 0.3s ease; border: 1px solid rgba(0,0,0,0.05); position: relative; overflow: hidden; }
.auth-card:hover { transform: translateY(-5px); }

.auth-card.register-card { background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%); border: 1px solid #eee; }

.auth-title { font-size: 1.5rem; color: #333; margin: 0 0 30px 0; font-weight: 700; position: relative; padding-bottom: 15px; }
.auth-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 4px; background: var(--souza-orange, #ee4d2d); border-radius: 2px; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 600; color: #444; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; }
.form-input { width: 100%; padding: 15px 18px; border: 2px solid #eee; border-radius: 10px; font-size: 1rem; transition: all 0.3s; background: #fcfcfc; box-sizing: border-box; }
.form-input:focus { border-color: var(--souza-orange, #ee4d2d); background: white; box-shadow: 0 0 0 4px rgba(238, 77, 45, 0.1); outline: none; }

.btn-google { width: 100%; padding: 15px; border: 2px solid #eee; background: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 12px; cursor: pointer; font-weight: 600; color: #555; transition: all 0.2s; font-size: 1rem; margin-bottom: 25px; }
.btn-google:hover { background: #f8f9fa; border-color: #ddd; transform: translateY(-1px); }

.divider { display: flex; align-items: center; margin: 25px 0; color: #999; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: #eee; }
.divider span { padding: 0 15px; }

.btn-submit { width: 100%; padding: 16px; font-size: 1.1rem; font-weight: 700; border-radius: 10px; background: var(--souza-orange, #ee4d2d); color: white; border: none; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 15px rgba(238, 77, 45, 0.3); text-transform: uppercase; letter-spacing: 0.5px; }
.btn-submit:hover { background: #d63f20; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(238, 77, 45, 0.4); }

.password-wrapper { position: relative; }
.toggle-password { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: #999; font-size: 1.2rem; padding: 5px; transition: color 0.2s; }
.toggle-password:hover { color: var(--souza-orange, #ee4d2d); }

.auth-links { margin-top: 25px; padding-top: 20px; border-top: 1px solid #eee; text-align: center; font-size: 0.95rem; }
.auth-links a { color: #666; text-decoration: none; font-weight: 500; transition: color 0.2s; display: inline-block; margin: 5px 0; }
.auth-links a:hover { color: var(--souza-orange, #ee4d2d); }

@media (max-width: 768px) {
    .auth-grid { grid-template-columns: 1fr; gap: 20px; }
    .auth-header h1 { font-size: 2rem; }
    .auth-card { padding: 25px; }
}

/* --- MOVIMENTOS STYLES --- */
.balance-card {
    background: linear-gradient(135deg, #2196F3 0%, #1976d2 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.balance-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

/* --- Pricing Plans (Planos em Destaque) --- */
.plans-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: stretch; /* Garante altura igual */
    padding: 20px 0;
}

.plan-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    min-height: 480px;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.plan-card.featured {
    border: 2px solid var(--souza-orange);
    box-shadow: 0 10px 30px rgba(238, 77, 45, 0.15);
    z-index: 2;
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--souza-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-icon { width: 60px; height: 60px; margin: 0 auto 20px; object-fit: contain; }
.plan-title { font-size: 1.4rem; font-weight: 700; color: #333; margin-bottom: 10px; }
.plan-price-box { margin: 20px 0; color: #333; }
.plan-currency { font-size: 1.2rem; vertical-align: top; font-weight: 500; }
.plan-amount { font-size: 3rem; font-weight: 800; line-height: 1; color: var(--souza-orange); }
.plan-period { font-size: 0.9rem; color: #999; font-weight: 400; }

.plan-features { list-style: none; padding: 0; margin: 0 0 30px; text-align: left; flex-grow: 1; }
.plan-features li { padding: 10px 0; border-bottom: 1px solid #f5f5f5; color: #666; font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
.plan-features li:last-child { border-bottom: none; }
.plan-features li i { color: #4caf50; }

.plan-btn { display: block; width: 100%; padding: 15px; border-radius: 8px; font-weight: bold; text-decoration: none; transition: all 0.2s; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; margin-top: auto; text-align: center; box-sizing: border-box; }
.plan-btn.outline { background: transparent; border: 2px solid var(--souza-orange); color: var(--souza-orange); }
.plan-btn.outline:hover { background: var(--souza-orange); color: white; }
.plan-btn.solid { background: var(--souza-orange); border: 2px solid var(--souza-orange); color: white; box-shadow: 0 4px 15px rgba(238, 77, 45, 0.3); }
.plan-btn.solid:hover { background: #d63f20; border-color: #d63f20; }

@media (max-width: 768px) {
    .plans-container { flex-direction: column; align-items: center; }
    .plan-card { width: 100%; max-width: 350px; }
    .plan-card.featured { transform: scale(1); }
    .plan-card.featured:hover { transform: translateY(-5px); }
}