/* --- Variáveis de Cores (Paleta inspirada na logo) --- */
:root {
    --bg-color: #FAF9F6; /* Creme/Off-white do fundo */
    --text-dark: #333333;
    --text-light: #666666;
    
    /* Tons do Dourado/Champanhe da Logo */
    --gold-dark: #9A7B4F;
    --gold-main: #C29B62;
    --gold-light: #E8D0A5;
    
    /* Fontes */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* --- Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.text-center {
    text-align: center;
}

/* --- Efeitos Especiais --- */
.gold-text {
    background: linear-gradient(to right, var(--gold-dark), var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--gold-main);
    margin: 15px auto;
}

.subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.section-padding {
    padding: 50px 0;
}

.bg-light {
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0,0,0,0.02) inset;
}

/* --- Navegação --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 10px 0;
}

header.scrolled {
    padding: 5px 0;
    background-color: var(--bg-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%; 
}

/* Ajuste da logo em formato de imagem no menu */
.nav-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: none;
    gap: 20px;
}

.nav-links a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-main);
}

/* --- Menu Hamburger --- */
.hamburger {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: rgba(250, 249, 246, 0.98);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.nav-menu.active {
    max-height: 300px;
}

.nav-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
}

.nav-menu .nav-links li {
    border-bottom: 1px solid rgba(194, 155, 98, 0.1);
    padding: 12px 0;
}

.nav-menu .nav-links li:last-child {
    border-bottom: none;
}

.nav-menu .nav-links a {
    font-size: 0.9rem;
    display: block;
}

/* --- Hero Section --- */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #ffffff 0%, var(--bg-color) 100%);
    padding-top: 60px;
}

.hero-content {
    max-width: 100%;
    padding: 20px;
}

/* Ajuste da logo central no início da página */
.hero-logo-img {
    height: 100px;
    width: auto;
    display: block;
    margin: 0 auto 20px auto;
    object-fit: contain;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Botões */
.btn-gold {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(194, 155, 98, 0.3);
}

.btn-gold.large {
    padding: 12px 32px;
    font-size: 0.85rem;
}

/* --- Sobre --- */
.sobre-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.sobre-text {
    flex: 1;
    width: 100%;
}

.sobre-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    text-align: justify;
    font-size: 0.95rem;
}

.sobre-image {
    flex: 1;
    width: 100%;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    display: block;
}

/* --- Produtos --- */
.produtos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.produto-card {
    background-color: var(--bg-color);
    border: 1px solid rgba(194, 155, 98, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(194, 155, 98, 0.15);
}

.produto-img {
    height: 250px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.img-1 {
    background-image: url('imagens/elegance.png');
}

.img-2 {
    background-image: url('imagens/alfaiataria.png');
}

.img-3 {
    background-image: url('imagens/blazer.png');
}

.produto-info {
    padding: 15px;
    background-color: #eee;
}

.produto-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-dark);
    margin-bottom: 5px;
}

.preco {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.cta-loja {
    margin-top: 30px;
}

/* --- Contatos --- */
.contato-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contato-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    min-width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-bottom: 3px solid var(--gold-main);
    font-size: 0.9rem;
}

.contato-item h3 {
    font-family: var(--font-heading);
    color: var(--gold-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* --- Footer --- */
footer {
    background-color: var(--text-dark);
    color: #fff;
    padding: 20px 0;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* --- Responsividade --- */

/* Tablet - 768px e acima */
@media (min-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        position: static;
        max-height: none;
        background-color: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }
    
    .nav-menu .nav-links {
        flex-direction: row;
        gap: 20px;
        padding: 0;
    }
    
    .nav-menu .nav-links li {
        border-bottom: none;
        padding: 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    header {
        padding: 15px 0;
    }
    
    .nav-container {
        height: 70px;
    }
    
    .nav-logo-img {
        height: 55px;
    }
    
    .nav-links {
        display: flex;
    }
    
    .hero {
        padding-top: 70px;
    }
    
    .hero-logo-img {
        height: 150px;
    }
    
    .hero h2 {
        font-size: 2.4rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .sobre-container {
        flex-direction: row;
        gap: 40px;
    }
    
    .image-placeholder {
        height: 350px;
    }
    
    .sobre-text p {
        font-size: 1rem;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .produto-img {
        height: 300px;
    }
    
    .produto-info {
        padding: 18px;
    }
    
    .produto-info h3 {
        font-size: 1.15rem;
    }
    
    .contato-item {
        min-width: 200px;
        padding: 25px;
    }
    
    .btn-gold.large {
        padding: 13px 36px;
        font-size: 0.9rem;
    }
}

/* Desktop - 1024px e acima */
@media (min-width: 1024px) {
    body {
        font-size: 16px;
    }
    
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        position: static;
        max-height: none;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    header {
        padding: 0;
    }
    
    .nav-container {
        height: 80px;
    }
    
    .nav-logo-img {
        height: 65px;
    }
    
    .nav-links {
        gap: 30px;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .hero {
        height: 100vh;
        padding-top: 80px;
    }
    
    .hero-logo-img {
        height: 200px;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .sobre-container {
        gap: 50px;
    }
    
    .image-placeholder {
        height: 400px;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .produto-img {
        height: 350px;
    }
    
    .produto-info {
        padding: 20px;
    }
    
    .produto-info h3 {
        font-size: 1.2rem;
    }
    
    .cta-loja {
        margin-top: 40px;
    }
    
    .contato-info {
        gap: 40px;
    }
    
    .contato-item {
        min-width: 250px;
        padding: 30px;
    }
    
    .btn-gold {
        padding: 12px 30px;
        letter-spacing: 2px;
        font-size: 0.85rem;
    }
    
    .btn-gold:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(194, 155, 98, 0.3);
    }
    
    .btn-gold.large {
        padding: 15px 40px;
        font-size: 1rem;
    }
}