body {
    font-family: 'Didact Gothic', sans-serif;
    background-color: #F8F8F8;
    color: #333;
    margin: 0;
}

.header-minimalista {
    background-color: white;
    padding: 1.5rem 0;
    text-align: center;
}

.header-minimalista nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-minimalista nav a {
    color: #555;
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 1.1rem;
}

.logo-minimalista {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: bold;
    color: #B8860B; /* Dourado */
    margin: 0 2rem;
}

.hero-minimalista {
    position: relative;
    text-align: center;
    padding: 5rem 0;
}

.hero-content-minimalista {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-minimalista img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-content-minimalista h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    z-index: 10;
}

.btn-minimalista {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: #B8860B;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
}

.products-minimalista {
    padding: 4rem 2rem;
    text-align: center;
}

.product-grid-minimalista {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.product-item-minimalista {
    width: 250px;
    text-align: center;
}

.product-item-minimalista img {
    width: 100%;
    border-radius: 5px;
}

.product-item-minimalista:hover {
    transform: translateY(-8px);
}

.about-hero {
    text-align: center;
    padding: 3rem 0;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #333;
}

.about-intro {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.about-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.values-section {
    margin-top: 4rem;
    text-align: center;
}

.values-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.value-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    color: #B8860B; /* Dourado */
}

.value-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-top: 1rem;
}

.value-item p {
    font-family: 'Didact Gothic', sans-serif;
    color: #555;
}

.differentiators-section {
    margin-top: 4rem;
    text-align: center;
}

.differentiators-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.differentiators-content p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}




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

.contact-section {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.minimalist-form {
    display: flex;
    flex-direction: column;
}

.minimalist-form label {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 1rem;
    margin-top: 1rem;
    color: #555;
}

.minimalist-form input,
.minimalist-form textarea {
    padding: 0.75rem;
    margin-top: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Didact Gothic', sans-serif;
}

.minimalist-form textarea {
    resize: vertical;
}

.submit-button {
    background-color: #B8860B; /* Dourado */
    color: white;
    font-family: 'Didact Gothic', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    margin-top: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #a3780a;
}

.contact-info-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-top: 0;
}

.contact-info-container p {
    line-height: 1.6;
    color: #555;
}

.map-container {
    margin-top: 2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    display: block;
}


.footer-minimalista {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    max-width: 1200px;
    height: 600px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-80%, -50%);
    width: 40%;
    z-index: 10;
    text-align: left;
}

.hero-content .about-us-box {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.hero-content .about-us-box h2 {
    text-align: left;
    margin-top: 0;
    color: #333;
}

.hero-content .about-us-box p {
    color: #555;
}

.cta-button {
    display: inline-block;
    background-color: #B8860B;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #a3780a;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
    background-color: #B8860B;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* AQUI COMEÇA A PAGINA DE colection*/
.collection-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.collection-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #333;
}

.collection-description {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.collection-products {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.product-card {
    background-color: white;
    width: 320px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-top: 0;
}

.card-content p {
    font-family: 'Didact Gothic', sans-serif;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-price {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: #B8860B; /* Dourado */
    display: block;
    margin-bottom: 1rem;
}

.btn-card {
    background-color: #B8860B;
    color: white;
    font-family: 'Didact Gothic', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-card:hover {
    background-color: #a3780a;
}


/* AQUI COMEÇA A PAGINA DE PRODUTO */

.product-detail-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    padding: 3rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image-container {
    flex-shrink: 0;
    width: 500px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    display: block;
}

.product-info {
    flex-grow: 1;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-top: 0;
}

.product-description {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.product-price-container {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    gap: 2rem;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: bold;
    color: #B8860B; /* Dourado */
}

.add-to-cart-button {
    background-color: #B8860B;
    color: white;
    font-family: 'Didact Gothic', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.add-to-cart-button:hover {
    background-color: #a3780a;
}

.related-products-section {
    margin-top: 4rem;
    text-align: center;
}

.related-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.related-products-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.related-item {
    text-align: center;
    width: 250px;
}

.related-item img {
    width: 100%;
    border-radius: 5px;
}

.related-item:hover {
    transform: translateY(-8px);
}




