* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Respeitar preferências de movimento */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Custom cursor - apenas em desktop */
@media (hover: hover) and (pointer: fine) {
    .custom-cursor {
        position: fixed;
        width: 25px;
        height: 25px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(224, 224, 224, 0.6) 50%, transparent 100%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        mix-blend-mode: screen;
        transition: transform 0.1s ease;
        filter: blur(0.3px);
        border: 1px solid rgba(255, 255, 255, 0.4);
    }

    .custom-cursor.hover {
        transform: scale(1.4);
        background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(240, 240, 240, 0.7) 50%, transparent 100%);
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #000000;
    min-height: 100vh;
    color: #333;
    overflow-x: hidden;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
    transition: background 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-symbol {
    font-size: 28px;
    font-weight: 300;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 15%, #c0c0c0 30%, #a9a9a9 45%, #909090 60%, #a9a9a9 75%, #c0c0c0 85%, #e8e8e8 95%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.logo-text {
    font-size: 24px;
    font-weight: 200;
    color: #ffffff;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 250px;
    border-radius: 15px;
    padding: 25px;
    margin-top: 10px;
    border: 1px solid rgba(192, 192, 192, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-menu .dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #c0c0c0 !important;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    transition: all 0.3s ease;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    color: #ffffff !important;
    padding-left: 10px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #c0c0c0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #c0c0c0, transparent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    position: relative;
}

.cart-icon {
    position: relative;
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
}

.cart-icon:hover {
    color: #c0c0c0;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #B19CD9 0%, #8B5FBF 25%, #6A4C93 50%, #5A3E7F 75%, #8B5FBF 100%);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(139, 95, 191, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: metallicGlow 3s ease-in-out infinite;
}

@keyframes metallicGlow {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(139, 95, 191, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 4px 12px rgba(139, 95, 191, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}

/* Cart Dropdown */
.cart-dropdown {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 15px;
    padding: 20px;
    min-width: 300px;
    max-width: 350px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.cart-dropdown.active {
    display: block;
}

.cart-dropdown-empty {
    color: #a0a0a0;
    text-align: center;
    padding: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    color: #fff;
    font-size: 14px;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-remove {
    background: rgba(255, 100, 100, 0.2);
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: rgba(255, 100, 100, 0.4);
}

.cart-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    color: #fff;
    font-weight: 500;
    text-align: right;
}

.cart-actions {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-btn {
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cart-btn-primary {
    background: linear-gradient(135deg, #B19CD9 0%, #8B5FBF 50%, #6A4C93 100%);
    color: white;
}

.cart-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 95, 191, 0.4);
}

.cart-btn-secondary {
    background: rgba(192, 192, 192, 0.2);
    color: #c0c0c0;
}

.cart-btn-secondary:hover {
    background: rgba(192, 192, 192, 0.3);
}

.search-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 25px;
    padding: 10px 20px;
    color: #ffffff;
    width: 300px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.search-box::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-results {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 15px;
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 12px;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s ease;
    margin-bottom: 8px;
}

.search-result-item:hover {
    background: rgba(192, 192, 192, 0.1);
}

.search-result-name {
    font-weight: 500;
    margin-bottom: 5px;
}

.search-result-price {
    color: #c0c0c0;
    font-size: 14px;
}

.login-btn {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: #000000;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.login-btn:hover {
    background: linear-gradient(135deg, #ffffff, #e8e8e8, #c0c0c0);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(192, 192, 192, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: #000000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(192, 192, 192, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(169, 169, 169, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 150px,
            rgba(192, 192, 192, 0.05) 150px,
            rgba(192, 192, 192, 0.05) 152px);
    animation: silverShimmer 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.6), transparent);
    animation: silverReflection 4s ease-in-out infinite;
}

@keyframes silverReflection {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleX(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes silverShimmer {

    0%,
    100% {
        opacity: 0.6;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(10px);
    }
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
}

.hero-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.hero-logo-symbol {
    font-size: 80px;
    font-weight: 300;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 15%, #c0c0c0 30%, #a9a9a9 45%, #909090 60%, #a9a9a9 75%, #c0c0c0 85%, #e8e8e8 95%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-shadow: 0 0 40px rgba(192, 192, 192, 0.5);
    animation: logoGlow 4s ease-in-out infinite;
}

.hero-logo {
    font-size: 48px;
    font-weight: 100;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 15%, #c0c0c0 30%, #a9a9a9 45%, #909090 60%, #a9a9a9 75%, #c0c0c0 85%, #e8e8e8 95%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    text-shadow: 0 0 40px rgba(192, 192, 192, 0.5);
    animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {

    0%,
    100% {
        filter: brightness(1);
        text-shadow: 0 0 40px rgba(192, 192, 192, 0.5);
    }

    50% {
        filter: brightness(1.2);
        text-shadow: 0 0 60px rgba(192, 192, 192, 0.8);
    }
}

.hero-slogan {
    font-size: 18px;
    color: #a0a0a0;
    margin-bottom: 50px;
    font-style: italic;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #333333, #000000);
    color: #ffffff;
    border: 2px solid #c0c0c0;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a1a1a, #333333, #4a4a4a);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: #000000;
    border: 2px solid #c0c0c0;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ffffff, #e8e8e8, #c0c0c0, #a0a0a0);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 2px 0 rgba(255, 255, 255, 0.6);
}

/* Credibility Section */
.credibility-section {
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    padding: 60px 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

.credibility-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: center;
    text-align: center;
}

.credibility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.credibility-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.credibility-text {
    font-size: 13px;
    color: #666;
    font-weight: 300;
    line-height: 1.5;
}

.credibility-highlight {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.trust-badge {
    background: #ffffff;
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 11px;
    color: #666;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Main Content */
.main-content {
    background: linear-gradient(to bottom,
            #000000 0%,
            #1a1a1a 10%,
            #333333 25%,
            #666666 40%,
            #999999 55%,
            #cccccc 70%,
            #f0f0f0 85%,
            #ffffff 100%);
    min-height: 100vh;
    padding: 80px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: 42px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #fff 0%, #999898 25%, #c0c0c0 50%, #a9a9a9 75%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-bottom: 120px;
}

.product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(192, 192, 192, 0.2);
    position: relative;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #B19CD9 0%, #8B5FBF 25%, #6A4C93 50%, #5A3E7F 75%, #8B5FBF 100%);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(139, 95, 191, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: metallicGlow 3s ease-in-out infinite;
}

.product-stock {
    position: absolute;
    top: 45px;
    right: 15px;
    background: linear-gradient(135deg, #B19CD9 0%, #8B5FBF 50%, #6A4C93 100%);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: bold;
    z-index: 3;
    box-shadow: 0 2px 6px rgba(139, 95, 191, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

.product-placeholder {
    width: 120px;
    height: 160px;
    background: linear-gradient(135deg, #e8e8e8, #f0f0f0);
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(192, 192, 192, 0.4);
    text-align: center;
    padding: 15px;
}

.placeholder-icon {
    font-size: 24px;
    color: #999;
    margin-bottom: 8px;
}

.placeholder-text {
    font-size: 10px;
    color: #666;
    font-weight: 300;
    line-height: 1.3;
    text-align: center;
}

.product-info {
    padding: 35px;
}

.product-name {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.product-price {
    font-size: 26px;
    font-weight: 400;
    color: #666;
    margin-bottom: 20px;
}

.product-nutrition {
    background: rgba(192, 192, 192, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #666;
}

.nutrition-title {
    font-weight: 500;
    margin-bottom: 8px;
}

.btn-add {
    width: 100%;
    background: linear-gradient(135deg, #333, #666);
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-add:hover {
    background: linear-gradient(135deg, #4a4a4a, #666, #333);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    background: linear-gradient(135deg, #B19CD9 0%, #8B5FBF 25%, #6A4C93 50%, #5A3E7F 75%, #8B5FBF 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(139, 95, 191, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 95, 191, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #C7B8E8 0%, #9A6FD4 25%, #7A5BA8 50%, #6A4C93 75%, #9A6FD4 100%);
}

.chat-button::before {
    content: '💬';
    font-size: 16px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
}

/* Angola Payment Methods */
.payment-methods {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(192, 192, 192, 0.05);
    border-radius: 10px;
}

.payment-method {
    background: #ffffff;
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 10px;
    color: #666;
    font-weight: 500;
}

/* Stock Alert */
.stock-alert {
    background: linear-gradient(135deg, #B19CD9 0%, #8B5FBF 25%, #6A4C93 50%, #5A3E7F 75%, #8B5FBF 100%);
    color: white;
    padding: 8px 15px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(139, 95, 191, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.stock-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: metallicShine 2s infinite;
}

@keyframes metallicShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Educational Section */
.education-section {
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    padding: 100px 0;
    margin-top: 80px;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.education-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #c0c0c0;
}

.education-title {
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.3;
}

.education-content {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.read-more {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #c0c0c0;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #333;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    padding: 100px 0;
}

.faq-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #B19CD9;
}

.faq-question {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* ===== Responsivo ===== */
@media screen and (max-width: 1024px) {
    .search-container {
        display: none;
        /* opcional: esconde pesquisa em tablets */
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;

        z-index: 999;

    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px;
    }

    .nav-menu li a {
        padding: 12px 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions {
        display: flex;
        /* mantém carrinho visível */
    }

    .login-btn {
        display: none;
        /* opcional: esconde login no mobile */
    }

    /* Dropdown mobile */
    .dropdown:hover .dropdown-content {
        display: none;
        /* remove hover para mobile */
    }

    .dropdown-content {
        position: relative;
        top: 0;
        box-shadow: none;
    }

    /* Mostrar dropdown ao clicar no link */
    .dropdown.active .dropdown-content {
        display: flex;
        flex-direction: column;
    }
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px;
    max-height: 500px;
    /* 👈 limita a altura */
    overflow-y: auto;
    /* 👈 ativa o scroll vertical */
}

.cart-dropdown::-webkit-scrollbar-thumb {
    background-color: #007bff;
    border-radius: 3px;
}

@media screen and (max-width: 768px) {
    .cart-dropdown {
        left: 50%;
        /* centraliza horizontalmente */
        right: auto;
        /* remove a posição do lado direito */
        transform: translateX(-50%);
        /* move 50% da largura para a esquerda */
        width: 90%;
        /* largura responsiva */
        max-width: 400px;
        /* limite máximo */
        max-height: 60vh;
        /* altura máxima */
        padding: 10px;

        .cart-total {
            text-align: center;
            /* centraliza o texto */
            width: 100%;
            /* garante que ocupe toda a largura do dropdown */
            margin: 10px 0;
            /* espaçamento vertical */
            font-size: 1rem;
            /* opcional: ajusta tamanho da fonte no mobile */
        }
    }

    .cart-actions {
        flex-direction: column;
        gap: 10px;
    }

    .cart-actions .cart-btn {
        width: 100%;
    }
}





.custom-scroll::-webkit-scrollbar {
    width: 6px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.animate-slide-in {
    animation: slideIn 0.4s ease-out;
}

.to-indigo-700 {
    --tw-gradient-to: #222 var(--tw-gradient-to-position);
}


.from-blue-600 {
    --tw-gradient-from: #575757 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(30 30 30) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* 💳 Estilo das opções de pagamento */
.payment-option .option-box {
    @apply flex flex-col items-center justify-center gap-2 p-4 border rounded-2xl cursor-pointer transition-all bg-white shadow-sm hover:border-blue-600 hover:shadow-md;
}

.payment-option input:checked+.option-box {
    @apply border-blue-600 ring-2 ring-blue-200 scale-[1.02];
}




/* Custom Scroll */
.custom-scroll::-webkit-scrollbar {
    width: 6px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

/* Itens do carrinho - responsividade */
@media screen and (max-width: 768px) {
    .space-y-4>div {
        flex-direction: column !important;
        /* empilha verticalmente */
        align-items: flex-start !important;
        gap: 8px;
        padding: 10px !important;
    }

    .space-y-4>div img {
        width: 100%;
        max-width: 120px;
        height: auto;
        border-radius: 12px;
    }

    .space-y-4>div .flex.items-center.gap-2.mt-1 {
        justify-content: flex-start;
        width: 100%;
        gap: 10px;
    }

    .space-y-4>div .text-right {
        width: 100%;
        text-align: left !important;
        margin-top: 5px;
    }

    .space-y-4>div .text-right p {
        font-size: 0.9rem;
        /* ajusta tamanho do preço */
    }

    .space-y-4>div .text-right button {
        margin-top: 5px;
    }

    /* Scroll do container do carrinho */
    .max-h-96 {
        max-height: 50vh;
        /* reduz altura no celular */
    }
}



.faq-answer {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-toggle {
    font-size: 20px;
    color: #B19CD9;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Manual Section */
.manual-section {
    background: linear-gradient(135deg, #333, #666);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.manual-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.manual-title {
    font-size: 42px;
    font-weight: 200;
    margin-bottom: 40px;
    letter-spacing: 3px;
    line-height: 1.3;
}

.manual-desc {
    font-size: 20px;
    margin-bottom: 50px;
    line-height: 1.6;
    color: #c0c0c0;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #c0c0c0;
}

.footer-section a {
    color: #a0a0a0;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    color: #a0a0a0;
}

/* Login Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, #333, #666);
    color: #ffffff;
    padding: 30px;
    text-align: center;
    position: relative;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 200;
    margin: 0;
    letter-spacing: 2px;
}

.close {
    color: #c0c0c0;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffffff;
}

.modal-body {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 300;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: #fafafa;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: #c0c0c0;
    background: #ffffff;
}

.form-error {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.form-error.active {
    display: block;
}

.login-submit {
    width: 100%;
    background: linear-gradient(135deg, #333, #666);
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.login-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #666, #333);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.login-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.modal-footer {
    text-align: center;
    padding-bottom: 20px;
}

.modal-footer a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.modal-footer a:hover {
    color: #333;
}

.register-link {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Notification Toast */
.toast {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.toast.active {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    border-left: 4px solid #4CAF50;
}

.toast.error {
    border-left: 4px solid #ff6b6b;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        flex-wrap: nowrap;
        gap: 15px;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu .dropdown-content {
        position: static;
        display: block !important;
        background: rgba(139, 95, 191, 0.1);
        margin-top: 15px;
        padding: 15px;
        border-radius: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu .dropdown.active .dropdown-content {
        max-height: 500px;
    }

    .header-actions {
        gap: 8px;
        order: 2;
        flex-wrap: wrap;
    }

    .search-box {
        width: 100px;
        font-size: 11px;
        padding: 6px 12px;
    }

    .login-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .cart-icon {
        font-size: 18px;
    }

    .credibility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .credibility-icon {
        font-size: 28px;
    }

    .credibility-text {
        font-size: 11px;
    }

    .trust-badges {
        gap: 10px;
    }

    .trust-badge {
        font-size: 9px;
        padding: 6px 10px;
    }

    .hero-logo-symbol {
        font-size: 50px;
        letter-spacing: 2px;
    }

    .hero-logo {
        font-size: 30px;
        letter-spacing: 4px;
    }

    .hero-slogan {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 50px;
        letter-spacing: 2px;
    }

    .products-grid,
    .education-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .payment-methods {
        gap: 5px;
    }

    .payment-method {
        font-size: 9px;
        padding: 6px 8px;
    }

    .product-badge,
    .product-stock {
        font-size: 9px;
        padding: 4px 8px;
    }

    .stock-alert {
        font-size: 11px;
        padding: 6px 10px;
    }

    .chat-button {
        font-size: 12px;
        padding: 12px 15px;
        bottom: 15px;
        right: 15px;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-body {
        padding: 20px;
    }

    .product-info {
        padding: 25px;
    }

    .product-name {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .product-price {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .cart-dropdown {
        right: -20px;
        max-width: 280px;
    }
}