/* Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fff9f0;
    color: #5c3a21;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Cabeçalho */
/* Novos estilos para o cabeçalho */
header {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
}

.header-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 180px; /* Ajuste conforme necessário */
    color: rgb(172, 145, 14);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}


.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: 1;
}

/* Seções */
section {
    margin-bottom: 50px;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

h2 {
    color: #d4a76a;
    margin-bottom: 25px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

h2 i {
    font-size: 1.5rem;
}

/* Sobre */
.about {
    display: flex;
    gap: 30px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Produtos */
.products {
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-card {
    background-color: #fffaf5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 1px solid #f1e6d6;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #d4a76a;
}

.product-card h3 {
    margin: 15px 0 10px;
    color: #5c3a21;
    font-size: 1.3rem;
    padding: 0 15px;
}

.product-card p {
    padding: 0 15px 20px;
    color: #7a5c3c;
    font-size: 0.95rem;
}

/* Localização */
.location-content {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.location-info {
    flex: 1;
}

.location-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #5c3a21;
}

.location-info i {
    color: #d4a76a;
    width: 20px;
    text-align: center;
}

.location-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-height: 350px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
}

/* Rodapé */
footer {
    background-color: #5c3a21;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.social-media a {
    color: white;
    font-size: 1.8rem;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #d4a76a;
}

.dev-credit {
    font-size: 0.8rem;
    margin-top: 15px;
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 900px) {
    .about, .location-content {
        flex-direction: column;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .header-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    header {
        height: 400px;
    }
    
    section {
        padding: 20px;
    }
    
    .header-content h1 {
        font-size: 2rem;
    }
    
    .header-content p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .location-info p {
        font-size: 1rem;
    }
}