* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #FAFAFA;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background: linear-gradient(135deg, #D0B078 0%, #C9A876 50%, #D4B896 100%);
    color: #333;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo h1,
.logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    display: block;
}

.search-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 0.3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
}

.search-input {
    border: none;
    outline: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    flex: 1;
    font-size: 0.9rem;
}

.search-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #333;
}

.search-btn svg {
    width: 16px;
    height: 16px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8B6914;
}

.cart-icon a {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon svg {
    width: 20px;
    height: 20px;
}

.login-btn {
    background: #333;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #555;
    transform: translateY(-1px);
}

/* Mobile Navigation Top - Hidden by default */
.nav-top {
    display: none;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 0.3rem;
}

.nav-top .logo h1,
.nav-top .logo .logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Remove any emojis from navigation */
.nav-top *::before,
.nav-top *::after,
.nav-left *::before,
.nav-left *::after {
    content: none !important;
}

/* Ensure clean logo text */
.logo-text::before,
.logo-text::after {
    display: none !important;
    content: none !important;
}

@media (max-width: 768px) {
    /* Show mobile nav-top */
    .nav-top {
        display: flex !important;
    }

    /* Hide desktop nav-left completely on mobile */
    .nav-left {
        display: none !important;
    }

    /* Make sure no emoji or house icon appears */
    .nav-top .logo::before,
    .nav-top .logo::after {
        display: none !important;
        content: none !important;
    }

    .hero {
        padding-top: calc(140px + 2rem);
        height: 100vh;
        min-height: 500px;
        background-attachment: scroll;
    }
}

/* Hero Section - Using manual code at end of file */

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(255, 255, 255, 0.3);
}

.hero-line-1, .hero-line-3 {
    display: block;
    color: #1a1a1a;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

.hero-line-2 {
    display: block;
    color: #8B6914;
    margin: 0.2rem 0;
    font-size: 5.5rem;
    background: linear-gradient(135deg, #B8956B 0%, #8B6914 25%, #B8956B 50%, #8B6914 75%, #B8956B 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(139, 105, 20, 0.4);
    animation: shimmer 4s ease-in-out infinite alternate;
    filter: brightness(1) saturate(1.2);
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
        filter: brightness(1.1) saturate(1.1) drop-shadow(0 0 8px rgba(184, 149, 107, 0.4));
    }
    100% {
        background-position: 100% 0;
        filter: brightness(1.2) saturate(1.2) drop-shadow(0 0 12px rgba(184, 149, 107, 0.5));
    }
}

.hero-description {
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-description p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Collection Section */
.collection-section {
    padding: 6rem 0;
    background: white;
}

.collection-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

/* Featured Product Styles */
.featured-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
    gap: 3rem;
}

.featured-product-card {
    background: #F5F5F5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 500px;
    width: 100%;
}

.featured-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.featured-product-image {
    position: relative;
    overflow: hidden;
}

.featured-product-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-product-card:hover .featured-product-image img {
    transform: scale(1.05);
}

.featured-product-info {
    padding: 2rem;
    text-align: center;
}

.featured-product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.featured-product-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.featured-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.ar-test-button {
    background: linear-gradient(135deg, #D4B896 0%, #C9A876 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 184, 150, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.ar-test-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 184, 150, 0.4);
    background: linear-gradient(135deg, #C9A876 0%, #B8956B 100%);
}

.price-button {
    background: transparent;
    color: #D4B896;
    border: 2px solid #D4B896;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 2px 8px rgba(212, 184, 150, 0.2);
}

.price-button:hover {
    background: #D4B896;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 184, 150, 0.3);
}

.view-all-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.view-all-button {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 1rem 3rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
}

.view-all-button:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.product-card {
    background: #F5F5F5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.ar-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #D4B896;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(212, 184, 150, 0.3);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.test-button {
    width: 100%;
    background: #D4B896;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.test-button:hover {
    background: #C9A876;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 184, 150, 0.4);
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: #FAFAFA;
}

.how-it-works h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon svg {
    width: 48px;
    height: 48px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose */
.why-choose {
    padding: 6rem 0;
    background: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit {
    background: #F8F8F8;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #D4B896;
    font-weight: 600;
}

.benefit p {
    color: #666;
    line-height: 1.6;
}

/* AR Info Button */
.ar-info-btn {
    background: linear-gradient(135deg, #D4B896 0%, #C9A876 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ar-info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 184, 150, 0.4);
}

/* AR Explanation Section */
.ar-explanation-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F8F8 0%, #EFEFEF 100%);
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Animação para produtos filtrados */
.product-card {
    animation: fadeIn 0.3s ease-in;
}

/* Estilo para mensagem de nenhum resultado */
.no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.2rem;
    background: #f8f8f8;
    border-radius: 15px;
    margin: 2rem 0;
}

.no-results-message p:first-child {
    font-weight: 600;
    color: #333;
}

/* Melhorar responsividade da busca */
.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 184, 150, 0.3);
}

.ar-explanation-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.ar-content {
    max-width: 1000px;
    margin: 0 auto;
}

.ar-feature {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ar-feature-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ar-feature-icon svg {
    width: 64px;
    height: 64px;
    stroke: #D4B896;
    stroke-width: 1.5;
}

.ar-feature h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #D4B896;
    font-weight: 700;
}

.ar-feature p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

.ar-steps {
    margin-bottom: 4rem;
}

.ar-steps h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.ar-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1000px;
}

.ar-step {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 160px;
}

/* Correcting the order of steps on mobile */
@media (max-width: 480px) {
    .ar-steps-grid {
        display: flex;
        flex-direction: column;
    }

    .ar-step:nth-child(1) { order: 1; }
    .ar-step:nth-child(2) { order: 2; }
    .ar-step:nth-child(3) { order: 3; }
    .ar-step:nth-child(4) { order: 4; }
    .ar-step:nth-child(5) { order: 5; }
}

.ar-step:hover {
    transform: translateY(-5px);
}

.ar-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4B896 0%, #C9A876 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.ar-step p {
    color: #666;
    font-weight: 500;
    line-height: 1.5;
}

.ar-benefits h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.ar-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ar-benefit {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.ar-benefit:hover {
    transform: translateY(-5px);
}

.ar-benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ar-benefit-icon svg {
    width: 40px;
    height: 40px;
}

.ar-benefit h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #D4B896;
    font-weight: 600;
}

.ar-benefit p {
    color: #666;
    line-height: 1.6;
}

/* Transform CTA Section */
.transform-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #D4B896 0%, #C9A876 100%);
    color: white;
    text-align: center;
}

.transform-cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.transform-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #D4B896 0%, #C9A876 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #333;
    color: white;
}

.btn-primary:hover {
    background: #555;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #C9A876;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.underline {
    width: 60px;
    height: 3px;
    background: #D4B896;
    margin-bottom: 2rem;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

.highlight {
    color: #D4B896;
    font-weight: 600;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.explore-btn {
    background: #333;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: #555;
    transform: translateY(-2px);
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.mission-section {
    text-align: center;
    margin-bottom: 6rem;
    padding: 3rem 0;
    background: #FAFAFA;
    border-radius: 20px;
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.mission-section p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
max-width: 800px;
    margin: 0 auto 0.5rem;
}

.mission-tagline {
    font-size: 1.3rem;
    color: #D4B896;
    font-weight: 600;
    margin-top: 0.5rem;
}

.how-we-work {
    margin-bottom: 6rem;
}

.how-we-work h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
    font-weight: 700;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.work-item {
    text-align: center;
    padding: 2rem;
}

.work-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.work-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.work-item p {
    color: #666;
    line-height: 1.6;
}

.innovation-section {
    margin-bottom: 6rem;
}

.innovation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.innovation-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.innovation-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 700;
}

.innovation-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.final-cta {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #F8F8F8 0%, #EFEFEF 100%);
    border-radius: 20px;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.final-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: #333;
    color: white;
}

/* Footer */
.footer {
    background: #2C2C2C;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #D4B896;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    color: #D4B896;
    background: rgba(212, 184, 150, 0.2);
    transform: translateY(-2px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background: #444;
    color: white;
}

.newsletter-form button {
    background: #D4B896;
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #C9A876;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4B896;
}

/* Modal AR Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    height: 90vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    background: rgba(212, 184, 150, 0.8);
}

.ar-container {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    width: 100%;
    overflow: hidden;
}

.ar-header {
    background: linear-gradient(135deg, #D4B896 0%, #C9A876 100%);
    color: #2C2C2C;
    padding: 24px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

model-viewer {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #F8F8F8 0%, #EFEFEF 100%);
    border-bottom: 1px solid #e0e0e0;
}

.ar-controls {
    padding: 24px;
}

.control-group {
    margin-bottom: 24px;
}

.control-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2C2C2C;
    font-size: 15px;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #D4B896, #C9A876);
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4B896 0%, #C9A876 100%);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(212, 184, 150, 0.3);
    transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(212, 184, 150, 0.4);
}

.value-display {
    min-width: 50px;
    text-align: center;
    font-weight: 700;
    color: #D4B896;
    font-size: 14px;
    background: rgba(212, 184, 150, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
}

.ar-button-viewer {
    width: 100%;
    background: linear-gradient(135deg, #D4B896 0%, #C9A876 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ar-button-viewer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 184, 150, 0.4);
}

.reset-button {
    background: linear-gradient(135deg, #6C757D 0%, #5A6268 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 16px;
    width: 100%;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reset-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.ar-info {
    background: linear-gradient(135deg, rgba(212, 184, 150, 0.1) 0%, rgba(201, 168, 118, 0.1) 100%);
    padding: 20px;
    margin: 24px;
    border-radius: 16px;
    border-left: 4px solid #D4B896;
}

.ar-info h3 {
    color: #2C2C2C;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.ar-info ul {
    color: #555;
    font-size: 14px;
    padding-left: 20px;
}

.ar-info li {
    margin-bottom: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
        align-items: stretch;
    }

    .logo {
        margin: 0;
    }

    .logo h1 {
        font-size: 1.6rem;
    }

    .login-btn {
        margin: 0;
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .nav-links {
        display: flex;
        justify-content: space-between;
        gap: 0.2rem;
        font-size: 0.75rem;
        width: 100%;
        margin: 0.2rem 0;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .nav-links li {
        flex: 0 0 auto;
        text-align: center;
        min-width: fit-content;
        padding: 0.2rem 0.4rem;
        white-space: nowrap;
    }

    .nav-links a {
        font-size: 0.75rem;
        font-weight: 500;
    }

    .cart-icon {
        order: 5;
        font-size: 1rem;
    }

    .search-container {
        width: 100%;
        max-width: none;
        margin: 0.3rem 0 0 0;
    }

    .search-input {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .hero {
        padding: 8rem 1rem 4rem;
        margin-top: 0;
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .hero-line-2 {
        font-size: 4rem;
    }

    .hero-description {
        margin: 0 1rem;
        padding: 1rem 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .featured-product {
        gap: 2rem;
        margin-top: 2rem;
    }

    .featured-product-card {
        max-width: 100%;
    }

    .featured-product-image img {
        height: 280px;
    }

    .featured-product-info {
        padding: 1.5rem;
    }

    .featured-product-info h3 {
        font-size: 1.6rem;
    }

    .featured-buttons {
        gap: 0.8rem;
    }

    .ar-test-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .price-button {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }

    .view-all-button {
        padding: 0.9rem 2.5rem;
        font-size: 1rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .ar-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .ar-step {
        padding: 1rem;
        min-height: 120px;
    }

    /* This section is for arranging steps, adjusted to target the 4th step for centering */
    .ar-step:nth-child(4) {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .ar-step:nth-child(5) {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .ar-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .ar-step p {
        font-size: 0.9rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-content, .innovation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons, .final-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .modal-content {
        width: 95%;
        margin: 1% auto;
        height: 95vh;
    }

    model-viewer {
        height: 300px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.6rem 0.8rem;
        gap: 0.3rem;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .login-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }

    .nav-links {
        font-size: 0.7rem;
        gap: 0.1rem;
        margin: 0.2rem 0;
        justify-content: space-around;
    }

    .nav-links li {
        flex: 1;
        max-width: 18%;
    }

    .nav-links a {
        font-size: 0.7rem;
        display: block;
        padding: 0.2rem 0;
    }

    .cart-icon a {
        font-size: 0.9rem;
    }

    .search-container {
        margin: 0.2rem 0 0 0;
        padding: 0.2rem;
    }

    .search-input {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .search-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 10rem 1rem 4rem;
        margin-top: 0;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-line-2 {
        font-size: 3rem;
    }

    .collection-section h2, .how-it-works h2, .why-choose h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .featured-product {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .featured-product-image img {
        height: 250px;
    }

    .featured-product-info {
        padding: 1.2rem;
    }

    .featured-product-info h3 {
        font-size: 1.4rem;
    }

    .featured-product-info p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .featured-buttons {
        gap: 0.6rem;
    }

    .ar-test-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        max-width: 100%;
    }

    .price-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        max-width: 100%;
    }

    .view-all-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
        max-width: 100%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ar-steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ar-step {
        padding: 1.5rem;
        min-height: auto;
    }

    .ar-step:nth-child(4) {
        grid-column: 1;
        grid-row: 4; /* Adjusted to correctly place the 4th step */
        margin: 0 auto;
        width: 100%;
    }
    
    .ar-step:nth-child(5) {
        grid-column: 1;
        grid-row: 5; /* Adjusted to correctly place the 5th step */
        margin: 0 auto;
        width: 100%;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }
}
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
                url('./attached_assets/Gemini_Generated_Image_jisff0jisff0jisf_1763382401159.png') center/cover no-repeat;
    padding: 12rem 2rem 6rem;
    text-align: center;
    margin-top: 0;
    padding-top: calc(120px + 4rem);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 768px) {
    .hero {
        padding-top: calc(140px + 2rem);
        min-height: 500px;
        background-attachment: scroll;
        background-position: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 10rem 1rem 4rem;
        padding-top: calc(160px + 2rem);
        min-height: 500px;
    }
}
/* Profile Dropdown Styles */
.profile-icon {
    position: relative;
}

.profile-dropdown {
    position: relative;
}

.profile-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.profile-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.profile-btn svg {
    width: 22px;
    height: 22px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: #333;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: #f5f5f5;
    color: #333;
}

.dropdown-item svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 0.5rem 0;
}

/* Cart Count Badge */
.cart-icon {
    position: relative;
}

.cart-icon a {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Minha Conta Page Styles */
.account-page {
    padding-top: 100px;
    min-height: 100vh;
    background: #FAFAFA;
}

.account-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.account-header {
    margin-bottom: 2rem;
}

.account-header h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.account-header p {
    color: #666;
}

.account-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.account-section h2 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.account-section h2 svg {
    color: #D4B896;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #D4B896;
}

.save-btn {
    background: linear-gradient(135deg, #D0B078 0%, #C9A876 100%);
    color: #333;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 184, 150, 0.4);
}

.address-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.address-info h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.25rem;
}

.address-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.address-actions {
    display: flex;
    gap: 0.5rem;
}

.address-actions button {
    background: none;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.address-actions button:hover {
    background: #f5f5f5;
}

.address-actions .delete-btn {
    color: #e74c3c;
    border-color: #e74c3c;
}

.address-actions .delete-btn:hover {
    background: #fef2f2;
}

.add-address-btn {
    width: 100%;
    padding: 1rem;
    border: 2px dashed #ddd;
    border-radius: 12px;
    background: none;
    color: #666;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-address-btn:hover {
    border-color: #D4B896;
    color: #333;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .account-container {
        padding: 1rem;
    }
    
    .dropdown-menu {
        right: -50px;
    }
}
