:root {
    --primary: #c9a227;
    /* Dourado Imperial */
    --dark: #121212;
    --light-grey: #f4f4f4;
    --text-color: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-color);
    scroll-behavior: smooth;
}

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

header {
    background: var(--dark);
    color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary);
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

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

/* Estilo para o botão de contato no menu */
.btn-contato {
    background-color: #25d366 !important;
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-contato:hover {
    background-color: #128c7e !important;
}

/* Botão Flutuante fixo no canto da tela */
.whatsapp-fixed {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    color: white;
}

/* Hero Section */
.hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1556906781-9a412961c28c?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.btn-main {
    background: var(--primary);
    color: var(--dark);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    display: inline-block;
    margin-top: 20px;
}

/* Produtos */
.section-title {
    text-align: center;
    margin: 50px 0;
    font-size: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    width: 50px;
    height: 3px;
    background: var(--primary);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
    padding-bottom: 20px;
}

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

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

.product-card h3 {
    margin: 15px 0 5px;
    font-size: 1.2rem;
}

.product-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Unidades */
.unidades-section {
    background: var(--light-grey);
    padding: 60px 0;
}

.unidades-flex {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.unidade-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 300px;
    border-bottom: 4px solid var(--primary);
}

.unidade-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-top: 50px;
}

.social {
    margin-top: 20px;
    font-size: 1.5rem;
    gap: 15px;
    display: flex;
    justify-content: center;
}