:root {
    --primary-color: #d4a373;
    --secondary-color: #faedcd;
    --text-color: #333;
    --light-text: #777;
    --bg-color: #fefae0;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

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

/* Header */
header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    max-height: 120px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-contato {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
}

.btn-contato:hover {
    background-color: #bc8a5f;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--white);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--secondary-color);
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.4);
}

/* Produtos Grid */
.produtos {
    padding: 100px 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.product-carousel-container {
    overflow-x: auto;
    padding: 20px 0;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Esconde scrollbar no Firefox */
}

.product-carousel-container::-webkit-scrollbar {
    display: none; /* Esconde scrollbar no Chrome/Safari */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
    background-color: #bc8a5f;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -60px;
}

.carousel-btn.next {
    right: -60px;
}

@media (max-width: 768px) {
    .carousel-btn {
        display: none; /* Esconde botões no mobile onde o swipe é melhor */
    }
    
    .product-carousel-container {
        padding: 10px 0;
    }
}

.product-grid {
    display: flex;
    gap: 30px;
    padding-bottom: 20px;
}

.product-card {
    flex: 0 0 300px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

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

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card.product-set img {
    object-fit: contain;
    background-color: #f9f9f9;
}

.product-card h3 {
    margin-bottom: 10px;
    white-space: normal;
}

.product-card p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 10px;
    white-space: normal;
}

.price {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Medidas */
.medidas {
    padding: 100px 0;
    background-color: var(--white);
}

.medidas-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.medidas-image, .medidas-text {
    flex: 1;
}

.medidas-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.medidas-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.medidas-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Sobre */
.sobre {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sobre-image, .sobre-text {
    flex: 1;
}

.sobre-image img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: var(--white);
    text-align: center;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content, .sobre-content, .medidas-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image, .medidas-image {
        order: -1;
    }

    .medidas-text .section-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
