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

body {
    font-family: 'Inter', sans-serif;
    color: #2c2c2c;
    background: #fdfcfa;
    overflow-x: hidden;
}

/* WhatsApp floating button - right side */
.whatsapp-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    background: linear-gradient(165deg, #fdfcfa 0%, #f0ebe3 40%, #e8dfd3 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(180, 140, 80, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(140, 100, 60, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #8b6914;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(139, 105, 20, 0.1);
}

.logo-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b8960c, transparent);
    margin: 16px auto;
}

.logo-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #6b5a3e;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: #7a6f60;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #b8960c;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    stroke: #b8960c;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Brochure Section */
.brochure-section {
    padding: 100px 24px;
    background: #fff;
    text-align: center;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #b8960c;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #3a3225;
    margin-bottom: 16px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b8960c, transparent);
    margin: 0 auto 40px;
}

.brochure-description {
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    font-weight: 300;
    color: #6b5a3e;
    line-height: 1.8;
}

.brochure-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f9f6f0, #f0ebe3);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.brochure-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #b8960c, #d4af37, #b8960c);
}

.brochure-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #b8960c, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brochure-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.brochure-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #3a3225;
    margin-bottom: 20px;
}

.brochure-text {
    font-size: 1rem;
    font-weight: 300;
    color: #6b5a3e;
    line-height: 1.9;
    max-width: 640px;
    margin: 0 auto 36px;
}

.brochure-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #8b6914, #b8960c);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(139, 105, 20, 0.25);
}

.brochure-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139, 105, 20, 0.35);
}

.brochure-cta svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* Footer */
.footer {
    padding: 40px 24px;
    text-align: center;
    background: #3a3225;
    color: #c4b99a;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.footer-text {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-text {
        font-size: 3.2rem;
    }

    .logo-subtitle {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    .section-title {
        font-size: 2rem;
    }

    .brochure-container {
        padding: 32px 24px;
    }

    .brochure-title {
        font-size: 1.6rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 2.5rem;
    }

    .hero {
        padding: 40px 16px;
    }

    .brochure-section {
        padding: 60px 16px;
    }
}
