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

:root {
    --primary: #D4AF37;
    --primary-foreground: #FFFFFF;
    --foreground: #1A1A1A;
    --background: #FFFFFF;
    --muted-foreground: #666666;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.5rem; line-height: 1.2; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 1024px) { .container { padding: 0 1.5rem; } }
@media (max-width: 640px)  { .container { padding: 0 1rem; } }

/* ─── Header ─── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background-color: #000;
    z-index: 50;
    height: 10rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo img { height: 10.8rem; width: auto; }

nav { display: flex; gap: 2rem; align-items: center; }

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

nav a:hover { color: var(--primary); }
nav a.active { color: var(--primary); border-bottom: 2px solid var(--primary); padding-bottom: 2px; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 5rem;
    left: 0; right: 0;
    background: #000;
    z-index: 49;
    flex-direction: column;
    padding: 1rem 2rem 2rem;
    gap: 1.25rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--primary); }
.mobile-menu a.active { color: var(--primary); }

.mobile-menu .btn { text-align: center; }

/* Button */
.btn {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: opacity 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn:hover { opacity: 0.9; }

@media (max-width: 768px) {
    nav { display: none; }
    .hamburger { display: flex; }
    header { height: 5rem; }
    .logo img { height: 4rem; }
    .mobile-menu { top: 5rem; }
}

/* ─── Hero ─── */
.hero {
    margin-top: 10rem;
    min-height: 100vh;
    background-image: url('https://files.manuscdn.com/user_upload_by_module/session_file/310519663346174461/icMRdYRCYRJtsSBe.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.4);
}

.hero-content { position: relative; z-index: 10; max-width: 50rem; }
.hero h1 { color: white; margin-bottom: 1.5rem; }
.hero p  { color: white; font-size: 1.125rem; margin-bottom: 2rem; font-weight: 500; }

@media (max-width: 768px) { .hero { margin-top: 5rem; } }

/* ─── Section shared ─── */
.section-header { text-align: center; margin-bottom: 3rem; }

.section-header .label {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-header h2 { margin-bottom: 1.5rem; }
.section-header p  { color: var(--muted-foreground); max-width: 42rem; margin: 0 auto; }

/* ─── Ambientes ─── */
.ambientes { padding: 4rem 0; background-color: #f3f4f6; }

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

.card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    height: 20rem;
    cursor: pointer;
}

.card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.card:hover img { transform: scale(1.05); }

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.4);
    transition: background-color 0.3s;
    z-index: 1;
}

.card:hover::before { background-color: rgba(0,0,0,0.5); }

.card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    color: white;
    z-index: 2;
}

.card-label { color: var(--primary); font-size: 0.875rem; font-weight: 700; margin-bottom: 0.5rem; }
.card-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }

.card-link {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.card-link:hover { gap: 0.75rem; }

/* ─── Divider ─── */
.divider { height: 1px; background-color: var(--primary); }

/* ─── About (inline on index) ─── */
.about { padding: 4rem 0; background-color: white; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about img { width: 100%; border-radius: 0.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.about h2  { margin-bottom: 1.5rem; color: var(--primary); }
.about p   { margin-bottom: 1.5rem; color: var(--muted-foreground); line-height: 1.8; }

@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

/* ─── Gallery ─── */
.gallery { padding: 4rem 0; background-color: white; }

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

.gallery-item { position: relative; overflow: hidden; border-radius: 0.5rem; height: 250px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ─── CTA ─── */
.cta { padding: 4rem 0; background-color: white; }

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta h2 { color: var(--primary); margin-bottom: 1.5rem; }
.cta p  { color: var(--muted-foreground); margin-bottom: 2rem; line-height: 1.8; }
.cta img { width: 100%; border-radius: 0.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

@media (max-width: 768px) { .cta-grid { grid-template-columns: 1fr; } }

/* ─── Testimonials ─── */
.testimonials { padding: 4rem 0; background-color: #f3f4f6; }

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

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial-text   { color: var(--muted-foreground); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { font-weight: 700; color: var(--foreground); }

/* ─── Contact ─── */
.contact { padding: 4rem 0; background-color: white; }
.contact h2 { color: var(--primary); margin-bottom: 3rem; text-align: center; }

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

.contact-item h3 { margin-bottom: 1.5rem; }

.contact-info { display: flex; gap: 1rem; margin-bottom: 1.5rem; }

.contact-info-icon {
    width: 1.5rem; height: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-info-content p { margin-bottom: 0.5rem; }
.contact-info-content a { color: var(--primary); text-decoration: none; }
.contact-info-content a:hover { text-decoration: underline; }

/* ─── Footer ─── */
footer { background-color: var(--foreground); color: white; padding: 3rem 0; }

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

.footer-section h4 { color: var(--primary); margin-bottom: 1rem; }
.footer-section p  { color: #d1d5db; font-size: 0.875rem; }

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover { color: white; }

.footer-logo img { height: 10rem; width: auto; margin-bottom: 1rem; }

.footer-divider {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* ─── WhatsApp float ─── */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem; right: 1.5rem;
    background-color: var(--primary);
    color: white;
    width: 3rem; height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s;
    z-index: 40;
    text-decoration: none;
    font-size: 1.5rem;
}

.whatsapp-float:hover { box-shadow: 0 6px 16px rgba(0,0,0,0.2); transform: scale(1.1); }

/* ─── Sobre Nós page ─── */
.page-hero {
    margin-top: 10rem;
    min-height: 40vh;
    background-image: url('https://files.manuscdn.com/user_upload_by_module/session_file/310519663346174461/icMRdYRCYRJtsSBe.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.55);
}

.page-hero-content { position: relative; z-index: 10; }
.page-hero h1 { color: white; margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.85); font-size: 1.125rem; }

@media (max-width: 768px) { .page-hero { margin-top: 5rem; min-height: 30vh; } }

.sobre-intro { padding: 5rem 0; background-color: white; }

.sobre-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-intro-grid img { width: 100%; border-radius: 0.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.sobre-intro-grid h2  { color: var(--primary); margin-bottom: 1.5rem; }
.sobre-intro-grid p   { color: var(--muted-foreground); line-height: 1.8; margin-bottom: 1.25rem; }

@media (max-width: 768px) { .sobre-intro-grid { grid-template-columns: 1fr; } }

/* Values */
.values { padding: 4rem 0; background-color: #f3f4f6; }

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

.value-card {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }

.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { color: var(--primary); margin-bottom: 0.75rem; font-size: 1.25rem; }
.value-card p  { color: var(--muted-foreground); font-size: 0.9rem; line-height: 1.7; }

/* Timeline */
.timeline-section { padding: 4rem 0; background-color: white; }

.timeline {
    position: relative;
    max-width: 700px;
    margin: 2rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 2rem);
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 2rem);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0.5rem;
    width: 14px; height: 14px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
}

.timeline-content {
    background: #f3f4f6;
    border-radius: 0.5rem;
    padding: 1.25rem 1.5rem;
    max-width: 280px;
}

.timeline-content .year {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
}

.timeline-content h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.timeline-content p  { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.6; }

@media (max-width: 640px) {
    .timeline::before { left: 1rem; }
    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 3rem;
        padding-right: 0;
    }
    .timeline-dot { left: 1rem; }
    .timeline-content { max-width: 100%; }
}

/* Stats */
.stats { padding: 4rem 0; background-color: var(--foreground); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number { font-size: 3rem; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; }
.stat-label  { color: #d1d5db; font-size: 0.9rem; margin-top: 0.25rem; }

/* Team */
.team { padding: 4rem 0; background-color: #f3f4f6; }

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

.team-card { text-align: center; }

.team-card img {
    width: 140px; height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary);
}

.team-card h4 { margin-bottom: 0.25rem; }
.team-card p  { color: var(--muted-foreground); font-size: 0.875rem; }

/* Utility */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-8 { margin-top: 2rem; }
