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

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
}

header {
    position: fixed;
    width: 100%;
    background: #7A0105;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d4af37;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #d4af37;
}

.hero {
    height: 70vh;
    background: url('banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
}

.hero-content .subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #888;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #d4af37;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.colecao {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.colecao h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

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

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

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

.card-img {
    height: 300px;
    background: #f5f5f5;
    background-size: cover;
    background-position: center;
}

.card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #2c2c2c;
}

.card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

.sobre {
    background: #f9f9f9;
    padding: 5rem 5%;
}

.sobre-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sobre h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.sobre p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat strong {
    font-size: 2rem;
    color: #d4af37;
}

.stat span {
    font-size: 0.9rem;
    color: #999;
}

.contato {
    padding: 5rem 5%;
    text-align: center;
}

.contato h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.contato-info {
    max-width: 600px;
    margin: 0 auto;
}

.social a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: transform 0.3s;
}

.social a:hover {
    transform: scale(1.05);
}

.contato-info p {
    margin-top: 1rem;
    color: #666;
}

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

@media (max-width: 768px) {
    nav {
        padding: 0.5rem 3%;
    }
    
    nav ul {
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .logo img {
        height: 50px !important;
    }
    
    .hero {
        height: 60vh;
        padding-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-content .subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .colecao, .sobre, .contato {
        padding: 3rem 5%;
    }
    
    h2 {
        font-size: 2rem;
    }
}
