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

.header {
    background-color: #E0D1BE;
    color: #8b6f47;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #d0c1ae;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    color: inherit;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 18px;
}

.nav-link {
    text-decoration: none;
    color: inherit;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d4a574;
}

/* Adjust hero section to account for fixed header */
.hero {
    padding-top: 140px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #5d4e37;
    background: #faf8f5;
}

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

/* Header */
.hero {
    background: linear-gradient(135deg, #f5f2ed 0%, #ebe4d6 100%);
    color: #5d4e37;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./images/hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #8b6f47;
    text-shadow: 2px 2px 4px rgba(141, 111, 71, 0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #6b5b47;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    background: linear-gradient(45deg, #d4a574, #c9965f);
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(45deg, #c9965f, #b8835a);
}

/* Product Section */
.product-section {
    background: #ffffff;
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-image {
    text-align: center;
}

.main-product-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(141, 111, 71, 0.15);
    transition: transform 0.3s ease;
}

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

.product-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: #d4a574;
}

.product-info h2 {
    font-size: 2rem;
    color: #8b6f47;
    margin-bottom: 20px;
    font-weight: 700;
}

.product-description {
    font-size: 1.1rem;
    color: #6b5b47;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Features */
.features {
    background: linear-gradient(135deg, #f0ead6, #e8dcc0);
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
    color: #8b6f47;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(141, 111, 71, 0.1);
    border: 1px solid #f0ead6;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #d4a574, #c9965f);
}

.feature-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
}

.emoji-feature {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c9965f66;
    font-size: 22px;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #8b6f47;
}

.feature-card p {
    color: #6b5b47;
}

/* Specifications */
.specs {
    background: #faf8f5;
    padding: 80px 0;
    width: 100%;
}

.specs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #8b6f47;
    font-weight: 700;
}

.specs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.specs-image {
    text-align: center;
}

.specs-img {
    width: 100%;
    max-width: 400px;
    height: 350px;
}

.specs-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #faf8f5;
    padding: 0 20px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1400px;
}

.spec-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(141, 111, 71, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid #d4a574;
}

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

.spec-label {
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.spec-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8b6f47;
}

/* Benefits */
.benefits {
    background: white;
    padding: 80px 0;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #8b6f47;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.benefit-item {
    background: linear-gradient(135deg, #f5f2ed, #ebe4d6);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(141, 111, 71, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 25px;
}

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

.benefit-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #8b6f47;
}

.benefit-content p {
    color: #6b5b47;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #f0ead6, #e8dcc0);
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #8b6f47;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background: white;
    padding: 30px;
    padding-left: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(141, 111, 71, 0.1);
    position: relative;
}

.testimonial-item::before {
    content: '★★★★★';
    font-size: 1.5rem;
    color: #d4a574;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: #6b5b47;
    margin-top: 24px;
    position: relative;
    text-align: left;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.author-info h4 {
    color: #8b6f47;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: #999;
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #8b6f47, #6b5b47);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #8b6f47;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5d982;
    margin: 30px 0;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
    color: #ddd;
}

.guarantee {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 600px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-buttons {
    margin-top: 40px;
}

.cta-button.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.cta-button.phone {
    background: linear-gradient(45deg, #d4a574, #c9965f);
}

.delivery-info {
    margin-top: 40px;
    font-size: 1.1rem;
}

.delivery-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .gallery-thumb {
        width: 70px;
        height: 70px;
    }
    
    .product-grid,
    .specs-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-img {
        width: 80px;
        height: 80px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons .cta-button {
        display: block;
        margin: 10px auto;
        width: 280px;
    }
}

/* Floating elements */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    color: #d4a574;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.floating-icon:nth-child(3) { top: 80%; left: 20%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Color Circles */
.color-circles {
    justify-content: center;
    display: flex;
    padding: 5px 0;
}

.color-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: -10px;
}

.color-circle:first-child {
    margin-left: 0;
    z-index: 3;
}

.color-circle:nth-child(2) {
    z-index: 2;
}

.color-circle:nth-child(3) {
    z-index: 1;
}

.color-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    cursor: pointer;
}