
/* Variables and Base Styles */
:root {
    --primary: #e91e63;
    --primary-dark: #c2185b;
    --primary-light: #f48fb1;
    --primary-lighter: #fce4ec;
    --secondary: #8a7f8c;
    --secondary-dark: #6d6570;
    --secondary-light: #b8b1ba;
    --light: #fefefe;
    --dark: #4a4a4a;
    --gray: #8a8a8a;
    --success: #4caf50;
    --warning: #ff9800;
    --info: #2196f3;
    --danger: #f44336;
    --whatsapp: #25D366;
    --pink-light: #fce4ec;
    --gray-light: #f8f8f8;
    --sale-color: #4caf50;
    --sale-dark: #388e3c;
    --rent-color: #e91e63;
    --rent-dark: #c2185b;
    --container-max-width: 1400px;
    --section-padding: 40px;
    --border-radius: 16px;
    --border-radius-lg: 20px;
    --border-radius-xl: 25px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
    --shadow-sm: 0 2px 8px rgba(233, 30, 99, 0.2);
    --shadow-md: 0 6px 20px rgba(233, 30, 99, 0.25);
    --shadow-lg: 0 10px 35px rgba(233, 30, 99, 0.3);
    --shadow-primary: 0 8px 25px rgba(233, 30, 99, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-bottom: 1px solid var(--primary-dark);
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: 0;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.header.scrolled {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #ad1457 100%);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.5);
}

.nav {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    transition: all var(--transition-normal);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all var(--transition-normal);
    z-index: 1001;
}

.nav-brand i {
    font-size: 26px;
    color: white;
    transition: transform var(--transition-normal);
}

.nav-brand:hover {
    color: var(--primary-lighter);
}

.nav-brand:hover i {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 0;
    position: relative;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-lighter);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active {
    color: white;
}

.nav-link.active::before {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 4px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.service-btn {
    padding: 8px 12px;
    border: none;
    background: transparent;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.service-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-login, .btn-cart {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-login:hover, .btn-cart:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Main Content */
.main-content {
    margin-top: 90px;
    min-height: calc(100vh - 200px);
    width: 100%;
}

.section-header {
    margin-bottom: 25px;
    text-align: center;
    padding: 0 10px;
}

.section-title {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--gray);
    font-size: 16px;
    font-weight: 500;
}

/* Dropdown Menu */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    padding: 8px 0;
    z-index: 1000;
    display: none;
    margin-top: 8px;
}

.dropdown-menu.show {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    color: var(--dark);
    text-decoration: none;
    transition: all var(--transition-fast);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
}

.dropdown-item:hover {
    background: var(--primary-lighter);
    color: var(--primary);
}

.dropdown-item.logout {
    color: var(--danger);
    border-top: 1px solid var(--gray-light);
}

.dropdown-item.logout:hover {
    background: #ffeaea;
    color: var(--danger);
}

/* How It Works Styles */
.how-it-works {
    margin: 30px 0;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-primary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.step {
    background: linear-gradient(135deg, white 0%, var(--pink-light) 100%);
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-primary);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--pink-light);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.15), transparent);
    transition: left 0.6s;
}

.step:hover::before {
    left: 100%;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.35);
}

.step-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: var(--shadow-sm);
}

.step-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.1);
}

.step h3 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

.step p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    margin: 40px 0;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, white 0%, var(--pink-light) 100%);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--pink-light);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 20px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: rgba(233, 30, 99, 0.05);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
    color: var(--gray);
    line-height: 1.6;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-toggle {
    color: var(--primary);
    font-size: 18px;
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Contact Styles */
.contact-section {
    margin: 40px 0;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-primary);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    background: linear-gradient(135deg, white 0%, var(--pink-light) 100%);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--pink-light);
    transition: all var(--transition-normal);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.contact-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 14px;
}

.contact-form-container {
    background: linear-gradient(135deg, white 0%, var(--pink-light) 100%);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-primary);
    border: 2px solid var(--pink-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--pink-light);
    border-radius: 12px;
    font-size: 14px;
    transition: all var(--transition-normal);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

/* Map Section */
.map-section {
    margin: 40px 0;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-primary);
}

.map-container {
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: 25px;
    background: linear-gradient(135deg, var(--pink-light) 0%, white 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
}

/* Auth Styles */
.auth-section {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.auth-container {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid var(--pink-light);
}

.auth-tabs {
    display: flex;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.auth-tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
}

.auth-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.auth-tab.active {
    color: white;
}

.auth-tab.active::after {
    width: 80%;
}

.auth-tab:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.auth-content {
    padding: 30px 25px;
}

.auth-form {
    display: none;
    flex-direction: column;
    gap: 15px;
}

.auth-form.active {
    display: flex;
    animation: fadeIn 0.5s ease;
}

.btn-auth {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.btn-auth:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.auth-divider {
    text-align: center;
    margin: 15px 0;
    position: relative;
    color: var(--gray);
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--pink-light);
}

.auth-divider span {
    background: white;
    padding: 0 12px;
    position: relative;
}

.social-auth {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.btn-social {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--pink-light);
    border-radius: 12px;
    background: white;
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-google:hover {
    border-color: #DB4437;
    color: #DB4437;
}

.btn-facebook:hover {
    border-color: #4267B2;
    color: #4267B2;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--gray);
    font-size: 14px;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Profile Styles */
.profile-container {
    margin-top: 90px;
    padding: 20px;
    animation: fadeIn 0.5s ease;
    width: 100%;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: bold;
}

.profile-info h1 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 24px;
}

.profile-info p {
    color: var(--gray);
    margin-bottom: 5px;
    font-size: 14px;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Orders Section */
.orders-section {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-md);
    margin-bottom: 25px;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-card {
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 20px;
    transition: all var(--transition-normal);
    background: var(--gray-light);
}

.order-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.order-number {
    font-weight: bold;
    color: var(--primary);
    font-size: 16px;
}

.order-date {
    color: var(--gray);
    font-size: 13px;
}

.order-status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-pendente {
    background: #fff3cd;
    color: #856404;
}

.status-confirmada {
    background: #d1ecf1;
    color: #0c5460;
}

.status-enviada {
    background: #d4edda;
    color: #155724;
}

.status-entregue {
    background: var(--success);
    color: white;
}

.status-cancelada {
    background: #f8d7da;
    color: #721c24;
}

.order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.order-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px;
    background: white;
    border-radius: 8px;
}

.order-item-image {
    width: 50px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-info {
    flex: 1;
}

.order-item-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 13px;
}

.order-item-type {
    font-size: 11px;
    color: var(--gray);
}

.order-item-price {
    font-weight: bold;
    color: var(--primary);
    font-size: 13px;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    gap: 12px;
}

.order-total {
    font-weight: bold;
    color: var(--primary);
    font-size: 16px;
}

.order-actions {
    display: flex;
    gap: 8px;
}

.btn-action {
    padding: 6px 12px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    text-decoration: none;
}

.btn-view {
    background: var(--info);
    color: white;
}

.btn-view:hover {
    background: #1976d2;
    transform: translateY(-2px);
}

.btn-track {
    background: var(--warning);
    color: white;
}

.btn-track:hover {
    background: #f57c00;
    transform: translateY(-2px);
}

.btn-review {
    background: var(--success);
    color: white;
}

.btn-review:hover {
    background: #388e3c;
    transform: translateY(-2px);
}

.btn-print {
    background: var(--primary);
    color: white;
}

.btn-print:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--gray);
}

.empty-state i {
    font-size: 70px;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.empty-state h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 22px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    padding: 15px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 8px 12px;
    border: 2px solid var(--primary-light);
    background: white;
    color: var(--primary);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
}

.pagination-btn:hover:not(.disabled) {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: var(--gray-light);
    color: var(--gray);
}

.pagination-numbers {
    display: flex;
    gap: 4px;
}

.pagination-number {
    padding: 8px 12px;
    border: 2px solid var(--primary-light);
    background: white;
    color: var(--primary);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 600;
    text-decoration: none;
    min-width: 40px;
    text-align: center;
    font-size: 13px;
}

.pagination-number:hover,
.pagination-number.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination-info {
    color: var(--gray);
    font-size: 13px;
    margin-left: 15px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, #2c2c2c 100%);
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 14px;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--whatsapp) 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Print Styles */
@media print {
    .header, .footer, .btn-print, .nav-actions, .hamburger, .whatsapp-float {
        display: none !important;
    }
    
    .profile-container {
        margin-top: 0;
        padding: 0;
    }
    
    .order-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .contact-container {
        gap: 30px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .nav {
        padding: 0 10px;
        height: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px;
        gap: 0;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .nav-link {
        padding: 15px 0;
        font-size: 18px;
        justify-content: center;
        width: 100%;
        display: flex;
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .service-toggle {
        display: none;
    }
    
    .btn-login, .btn-cart {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .main-content {
        margin-top: 80px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    /* How It Works */
    .steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .step {
        padding: 20px 15px;
    }
    
    .step-icon {
        font-size: 42px;
    }
    
    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .map-container {
        height: 250px;
    }
    
    /* Auth */
    .auth-content {
        padding: 25px 20px;
    }
    
    .social-auth {
        flex-direction: column;
    }
    
    .auth-tab {
        padding: 12px;
        font-size: 14px;
    }
    
    /* Profile */
    .profile-container {
        margin-top: 70px;
        padding: 15px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .profile-avatar {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Orders */
    .orders-section {
        padding: 20px;
    }
    
    .order-header, .order-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .order-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .btn-action {
        flex: 1;
        justify-content: center;
        font-size: 11px;
        padding: 8px 10px;
    }
    
    .order-details {
        grid-template-columns: 1fr;
    }
    
    /* Pagination */
    .pagination {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .pagination-numbers {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
    
    .pagination-info {
        order: 2;
        margin-left: 0;
        text-align: center;
        width: 100%;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    .nav {
        padding: 0 8px;
        height: 55px;
    }
    
    .nav-brand {
        font-size: 18px;
    }
    
    .nav-brand i {
        font-size: 22px;
    }
    
    .btn-login, .btn-cart {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .main-content {
        margin-top: 65px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    /* How It Works */
    .how-it-works, .faq-section, .contact-section {
        padding: 20px 15px;
        margin: 25px 0;
    }
    
    .step {
        padding: 18px 12px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .step-icon {
        font-size: 38px;
        margin-bottom: 15px;
    }
    
    .step h3 {
        font-size: 18px;
    }
    
    /* FAQ */
    .faq-question {
        padding: 15px;
        font-size: 15px;
    }
    
    /* Contact */
    .contact-item {
        padding: 15px;
    }
    
    .contact-form-container {
        padding: 15px;
    }
    
    /* Auth */
    .auth-content {
        padding: 20px 15px;
    }
    
    .auth-tab {
        padding: 10px;
        font-size: 13px;
    }
    
    /* Profile */
    .profile-container {
        margin-top: 65px;
        padding: 10px;
    }
    
    .profile-header {
        padding: 15px;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    /* Orders */
    .orders-section {
        padding: 15px;
    }
    
    .order-card {
        padding: 15px;
    }
    
    .order-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .order-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-action {
        width: 100%;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    /* WhatsApp */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* Small Mobile Phones */
@media (max-width: 360px) {
    .container {
        padding: 0 5px;
    }
    
    .nav-brand {
        font-size: 16px;
    }
    
    .nav-brand i {
        font-size: 20px;
    }
    
    .btn-login, .btn-cart {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .main-content {
        margin-top: 60px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .profile-header {
        padding: 12px;
    }
    
    .profile-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .orders-section {
        padding: 12px;
    }
    
    .order-card {
        padding: 12px;
    }
}

/* Orientation-specific styles */
@media (max-height: 500px) and (orientation: landscape) {
    .nav-menu {
        padding: 20px;
        overflow-y: auto;
    }
    
    .main-content {
        margin-top: 70px;
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-brand, .nav-link, .btn-login, .btn-cart {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}
/* ==================== TOUCH ENHANCEMENTS ==================== */
@media (max-width: 768px) {
    /* Better touch targets */
    button, .btn, .nav-link, .payment-method {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Touch feedback */
    .btn:active, .payment-method:active, .quantity-btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    /* Form focus states */
    .form-group.focused {
        transform: translateY(-2px);
    }
    
    .form-group.focused .form-control,
    .form-group.focused .form-select {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
    }
    
    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        position: relative;
    }
}

/* ==================== MOBILE SPECIFIC ENHANCEMENTS ==================== */
@media (max-width: 480px) {
    /* Better text readability */
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Improved button visibility */
    .btn-primary, .btn-success, .btn-mpesa {
        font-weight: 600;
        text-shadow: 0 1px 1px rgba(0,0,0,0.2);
    }
    
    /* Enhanced form labels */
    .form-label {
        font-weight: 600;
        margin-bottom: 8px;
    }
    
    /* Better spacing for mobile */
    .container {
        padding: 10px;
    }
    
    section, .section {
        margin: 20px 0;
        padding: 15px;
    }
}
/* ==================== CARRINHO RESPONSIVO ==================== */
@media (max-width: 768px) {
    .cart-container {
        margin-top: 100px;
        padding: 15px;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px 0;
    }
    
    .cart-item-details {
        width: 100%;
    }
    
    .cart-item-total {
        text-align: center;
        width: 100%;
        margin-top: 10px;
    }
    
    .quantity-controls {
        justify-content: center;
    }
    
    .cart-summary {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .cart-container {
        margin-top: 80px;
        padding: 10px;
    }
    
    .cart-items, .cart-summary {
        padding: 15px;
    }
    
    .cart-item-image {
        width: 80px;
        height: 110px;
    }
    
    .cart-item-title {
        font-size: 16px;
    }
    
    .remove-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== CHECKOUT RESPONSIVO ==================== */
@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .checkout-steps {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .step {
        flex: 1;
        min-width: 80px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .full-width {
        grid-column: 1;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .order-summary-container {
        order: -1;
    }
}

@media (max-width: 480px) {
    .checkout-form-section {
        padding: 15px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .btn-mpesa, .btn-transferencia {
        font-size: 14px;
        padding: 12px 15px;
    }
}

/* ==================== CONFIRMAÇÃO RESPONSIVO ==================== */
@media (max-width: 768px) {
    .success-main {
        margin-top: 100px;
    }
    
    .success-hero {
        padding: 30px 15px;
    }
    
    .success-title {
        font-size: 28px;
    }
    
    .success-icon {
        font-size: 70px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .item-card {
        flex-direction: column;
        text-align: center;
    }
    
    .item-image {
        align-self: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .success-main {
        margin-top: 80px;
    }
    
    .success-hero {
        padding: 20px 10px;
    }
    
    .success-title {
        font-size: 24px;
    }
    
    .code-number {
        font-size: 20px;
    }
    
    .info-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .item-meta {
        flex-direction: column;
        gap: 5px;
    }
}

/* ==================== NOTIFICAÇÕES MOBILE ==================== */
@media (max-width: 768px) {
    .notification {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* ==================== BOTÕES MOBILE ==================== */
@media (max-width: 480px) {
    .btn-action, .btn-primary, .btn-secondary, .btn-success {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .checkout-btn, .continue-shopping {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ==================== FORMULÁRIOS MOBILE ==================== */
@media (max-width: 768px) {
    .form-control, .form-select {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .form-grid {
        gap: 12px;
    }
}

/* ==================== TABELAS E GRIDS MOBILE ==================== */
@media (max-width: 768px) {
    .order-details, .profile-stats, .steps {
        grid-template-columns: 1fr;
    }
    
    .order-header, .order-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .order-actions {
        width: 100%;
        justify-content: space-between;
    }
}

/* ==================== PAGINAÇÃO MOBILE ==================== */
@media (max-width: 480px) {
    .pagination {
        flex-direction: column;
        gap: 10px;
    }
    
    .pagination-numbers {
        order: 2;
        justify-content: center;
    }
    
    .pagination-info {
        order: 3;
        text-align: center;
    }
}

/* ==================== TOUCH ENHANCEMENTS ==================== */
@media (max-width: 768px) {
    /* Better touch targets */
    button, .btn, .nav-link, .payment-method {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Touch feedback */
    .btn:active, .payment-method:active, .quantity-btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    /* Form focus states */
    .form-group.focused {
        transform: translateY(-2px);
    }
    
    .form-group.focused .form-control,
    .form-group.focused .form-select {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
    }
    
    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        position: relative;
    }
}

/* ==================== MOBILE SPECIFIC ENHANCEMENTS ==================== */
@media (max-width: 480px) {
    /* Better text readability */
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Improved button visibility */
    .btn-primary, .btn-success, .btn-mpesa {
        font-weight: 600;
        text-shadow: 0 1px 1px rgba(0,0,0,0.2);
    }
    
    /* Enhanced form labels */
    .form-label {
        font-weight: 600;
        margin-bottom: 8px;
    }
    
    /* Better spacing for mobile */
    .container {
        padding: 10px;
    }
    
    section, .section {
        margin: 20px 0;
        padding: 15px;
    }
}