:root {
    --primary-color: #c9b27c;
    --secondary-color: #1a1a12;
    --background-color: #1a1a12;
    --text-color: #f5f5f5;
    --section-padding: 80px 0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.diamond-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.diamond-separator .diamond {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    transform: rotate(45deg);
}

.diamond-separator .line {
    width: 60px;
    height: 1px;
    background-color: var(--primary-color);
    margin: 0 10px;
}

.btn-primary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 12px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 26, 18, 0.9);
    padding: 15px 0;
    backdrop-filter: blur(5px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    width: 150px;
}

.logo img {
    width: 100%;
    height: auto;
}

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

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--text-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero {
    background-size: cover;
    background-position: center;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.hero .btn-primary {
    margin-top: 20px;
}

/* Pertencimento Section */
#pertencimento.hero {
    background-attachment: fixed;
}

/* Conceito Section */
.conceito {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.conceito .eye-icon {
    margin: 20px auto;
    width: 40px;
}

.conceito .eye-icon img {
    width: 100%;
}

.conceito .content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.conceito .text {
    flex: 1;
}

.conceito .image {
    flex: 1;
}

.conceito .image img {
    width: 100%;
    height: auto;
    border: 2px solid var(--primary-color);
}

/* Benefícios Section */
.beneficios {
    padding: var(--section-padding);
    background-color: var(--secondary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border: 1px solid rgba(201, 178, 124, 0.3);
    text-align: center;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Serviços Section */
.servicos {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border: 1px solid rgba(201, 178, 124, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card .subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Consultoria Section */
.consultoria {
    padding: var(--section-padding);
    background-color: var(--secondary-color);
}

.consultoria-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.consultoria .text {
    flex: 1;
}

.consultoria .text h2 {
    margin-bottom: 10px;
}

.consultoria .text .subtitle {
    margin-bottom: 30px;
}

.consultoria .image {
    flex: 1;
}

.consultoria .image img {
    width: 100%;
    height: auto;
    border: 2px solid var(--primary-color);
}

/* Open House Section */
.open-house {
    padding: var(--section-padding);
    background-color: var(--secondary-color);
}

.open-house-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.open-house .text {
    flex: 1;
}

.open-house .form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form button {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 12px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.form button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Galeria Section */
.galeria {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Localização Section */
.localizacao {
    padding: var(--section-padding);
    background-color: var(--secondary-color);
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map {
    width: 100%;
    height: 400px;
    border: 1px solid var(--primary-color);
}

.address {
    text-align: center;
    font-size: 1.1rem;
}

/* Rodapé */
footer {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo-section {
    flex: 1;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
}

.footer-tagline {
    margin-bottom: 20px;
    font-style: italic;
}

.footer-legal {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-color);
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.private-club {
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 992px) {
    .conceito .content,
    .consultoria-content,
    .open-house-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .benefits-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-logo-section {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-logo {
        margin: 0 auto 20px;
    }
}

@media (max-width: 768px) {
    header .container {
        justify-content: space-between;
        padding: 0 15px;
    }
    
    nav {
        display: none;
    }
    
    .logo {
        width: 100px;
        margin-left: 10px;
    }
    
    .cta-button {
        margin: 0;
    }
    
    .cta-button .btn-primary {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 150px 0 80px;
    }
    
    #pertencimento.hero {
        height: 100vh;
        background-position: center center;
        background-size: cover;
        background-attachment: scroll;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .section-header {
        margin-bottom: 40px;
    }
    
    .diamond-separator .line {
        width: 40px;
    }
    
    .benefit-card,
    .service-card {
        padding: 20px;
    }
    
    header .container {
        padding: 8px 10px;
    }
    
    .logo {
        width: 120px;
        margin-left: 15px;
    }
    
    .cta-button .btn-primary {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .footer-logo {
        width: 120px;
    }
}

/* Esconder a atribuição "Made with Manus" */
[href*="manus.ai"] {
    display: none !important;
}
