        :root {
            --gold-light: #D4AF37;
            --gold-medium: #B8860B;
            --gold-dark: #8B6914;
            --cream: #FAF6F0;
            --cream-dark: #F0E6D6;
            --burgundy: #722F37;
            --burgundy-dark: #4A1C23;
            --charcoal: #2C2C2C;
            --charcoal-light: #3D3D3D;
            --ink: #1A1A1A;
            --paper: #FFFEF9;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Spectral', Georgia, serif;
            background: var(--cream);
            color: var(--charcoal);
            line-height: 1.8;
            overflow-x: hidden;
        }

        /* Elegant scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--cream-dark);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gold-medium);
            border-radius: 5px;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.8));
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }

        nav.scrolled {
            padding: 0.6rem 2rem;
            background: rgba(26, 26, 26, 0.98);
        }

        .nav-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-img {
            height: 45px;
            width: auto;
            transition: all 0.3s ease;
        }

        nav.scrolled .logo-img {
            height: 35px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--cream);
            text-decoration: none;
            font-family: 'Spectral', serif;
            font-size: 0.95rem;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold-light);
            transition: width 0.3s ease;
        }

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

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 2px;
            background: var(--gold-light);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: 
                linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(74, 28, 35, 0.88) 50%, rgba(26, 26, 26, 0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D4AF37" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23D4AF37" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23D4AF37" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            overflow: hidden;
            padding: 80px 0 60px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(114, 47, 55, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Decorative corners */
        .corner-decoration {
            position: absolute;
            width: 120px;
            height: 120px;
            opacity: 0.5;
            pointer-events: none;
            z-index: 5;
        }

        .corner-decoration.top-left {
            top: 90px;
            left: 5%;
            border-top: 2px solid var(--gold-light);
            border-left: 2px solid var(--gold-light);
        }

        .corner-decoration.top-right {
            top: 90px;
            right: 5%;
            border-top: 2px solid var(--gold-light);
            border-right: 2px solid var(--gold-light);
        }

        .corner-decoration.bottom-left {
            bottom: 60px;
            left: 5%;
            border-bottom: 2px solid var(--gold-light);
            border-left: 2px solid var(--gold-light);
        }

        .corner-decoration.bottom-right {
            bottom: 60px;
            right: 5%;
            border-bottom: 2px solid var(--gold-light);
            border-right: 2px solid var(--gold-light);
        }

        @media (max-width: 768px) {
            .corner-decoration {
                width: 60px;
                height: 60px;
            }

            .corner-decoration.top-left,
            .corner-decoration.top-right {
                top: 80px;
            }

            .corner-decoration.bottom-left,
            .corner-decoration.bottom-right {
                bottom: 40px;
            }

            .corner-decoration.top-left,
            .corner-decoration.bottom-left {
                left: 15px;
            }

            .corner-decoration.top-right,
            .corner-decoration.bottom-right {
                right: 15px;
            }
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            padding: 2rem;
            padding-top: 80px;
            max-width: 900px;
            animation: fadeInUp 1.2s ease-out;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .hero-logo {
            width: 280px;
            max-width: 60%;
            height: auto;
            margin-bottom: 2rem;
            animation: fadeInUp 1.2s ease-out 0.1s backwards;
            filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.3));
        }

        @media (max-width: 768px) {
            .hero-content {
                padding: 1.5rem;
                padding-top: 20px;
            }

            .hero-logo {
                width: 180px;
                max-width: 55%;
                margin-bottom: 1.2rem;
            }

            .hero-badge {
                font-size: 0.7rem;
                padding: 0.5rem 1rem;
                margin-bottom: 1rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 1rem;
            }

            .hero-description {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
                line-height: 1.7;
            }

            .hero-cta {
                gap: 1rem;
            }

            .hero-cta .btn {
                padding: 0.8rem 1.8rem;
                font-size: 0.8rem;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-block;
            font-family: 'Cinzel', serif;
            font-size: 0.85rem;
            letter-spacing: 4px;
            color: var(--gold-light);
            border: 1px solid var(--gold-medium);
            padding: 0.6rem 1.5rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1.2s ease-out 0.2s backwards;
        }

        .hero h1 {
            font-family: 'Cinzel', serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 400;
            color: var(--cream);
            letter-spacing: 6px;
            margin-bottom: 0.5rem;
            line-height: 1.2;
            animation: fadeInUp 1.2s ease-out 0.4s backwards;
        }

        .hero h1 .highlight {
            color: var(--gold-light);
            font-weight: 600;
        }

        .hero-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.3rem, 3vw, 2rem);
            font-weight: 300;
            font-style: italic;
            color: var(--gold-light);
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
            animation: fadeInUp 1.2s ease-out 0.6s backwards;
        }

        .hero-description {
            font-size: 1.1rem;
            color: rgba(250, 246, 240, 0.85);
            max-width: 650px;
            margin: 0 auto 2.5rem;
            line-height: 1.9;
            animation: fadeInUp 1.2s ease-out 0.8s backwards;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1.2s ease-out 1s backwards;
        }

        .btn {
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            letter-spacing: 2px;
            padding: 1rem 2.5rem;
            text-decoration: none;
            transition: all 0.4s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold-medium), var(--gold-dark));
            color: var(--ink);
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: var(--cream);
            border: 1px solid var(--gold-light);
        }

        .btn-secondary:hover {
            background: var(--gold-light);
            color: var(--ink);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator svg {
            width: 30px;
            height: 30px;
            stroke: var(--gold-light);
            opacity: 0.7;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* Section Styles */
        section {
            padding: 6rem 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            font-family: 'Cinzel', serif;
            font-size: 0.8rem;
            letter-spacing: 4px;
            color: var(--gold-medium);
            margin-bottom: 1rem;
            display: block;
        }

        .section-title {
            font-family: 'Cinzel', serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 500;
            color: var(--charcoal);
            letter-spacing: 3px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold-medium), transparent);
        }

        /* Diferenciais Section */
        #diferenciais {
            background: var(--cream);
            position: relative;
        }

        .diferenciais-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .diferencial-card {
            background: var(--paper);
            padding: 2.5rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            position: relative;
            transition: all 0.4s ease;
        }

        .diferencial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(to bottom, var(--gold-light), var(--burgundy));
            transition: height 0.4s ease;
        }

        .diferencial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        .diferencial-card:hover::before {
            height: 100%;
        }

        .diferencial-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .diferencial-card h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--charcoal);
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .diferencial-card p {
            color: var(--charcoal-light);
            font-size: 1rem;
            line-height: 1.8;
        }

        /* História Section */
        #historia {
            background: linear-gradient(to bottom, var(--ink), var(--burgundy-dark));
            color: var(--cream);
            position: relative;
            overflow: hidden;
        }

        #historia::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="%23D4AF37" stroke-width="0.5" opacity="0.1"/><circle cx="100" cy="100" r="60" fill="none" stroke="%23D4AF37" stroke-width="0.3" opacity="0.08"/></svg>') center center no-repeat;
            background-size: 800px;
            opacity: 0.5;
        }

        #historia .section-title {
            color: var(--cream);
        }

        .historia-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .timeline {
            position: relative;
            padding-left: 40px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--gold-light), transparent);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            padding-left: 2rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -40px;
            top: 8px;
            width: 12px;
            height: 12px;
            background: var(--gold-light);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

        .timeline-year {
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            color: var(--gold-light);
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .timeline-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--cream);
            margin-bottom: 0.8rem;
        }

        .timeline-text {
            color: rgba(250, 246, 240, 0.8);
            line-height: 1.9;
        }

        .historia-quote {
            text-align: center;
            margin-top: 4rem;
            padding: 3rem;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }

        .historia-quote blockquote {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-style: italic;
            color: var(--cream);
            line-height: 1.7;
        }

        .historia-quote cite {
            display: block;
            margin-top: 1rem;
            font-size: 1rem;
            color: var(--gold-light);
            font-style: normal;
        }

        /* Documentário Section */
        #documentario {
            background: var(--cream-dark);
            position: relative;
        }

        .video-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border: 8px solid var(--charcoal);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .video-card {
            display: block;
            text-decoration: none;
            background: var(--charcoal);
            border: 8px solid var(--charcoal);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .video-card:hover .video-thumbnail img {
            transform: scale(1.05);
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: transform 0.3s ease;
        }

        .video-card:hover .play-button {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .play-button .play-bg {
            transition: fill-opacity 0.3s ease;
        }

        .video-card:hover .play-button .play-bg {
            fill: #CC0000;
            fill-opacity: 1;
        }

        .video-duration {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(0, 0, 0, 0.85);
            color: white;
            padding: 4px 8px;
            font-size: 0.8rem;
            font-family: 'Spectral', serif;
            letter-spacing: 0.5px;
        }

        .video-info {
            padding: 1.5rem;
            background: var(--ink);
        }

        .video-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 500;
            color: var(--cream);
            margin-bottom: 0.5rem;
        }

        .video-channel {
            font-size: 0.95rem;
            color: var(--gold-light);
        }

        /* Vídeos Extras / Shorts Section */
        #videos-extras {
            background: var(--charcoal);
            padding: 5rem 2rem;
        }

        #videos-extras .section-title {
            color: var(--cream);
        }

        .shorts-container {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            max-width: 1000px;
            margin: 0 auto;
        }

        .short-card {
            display: block;
            text-decoration: none;
            width: 280px;
            transition: transform 0.4s ease;
        }

        .short-card:hover {
            transform: translateY(-8px);
        }

        .short-thumbnail {
            position: relative;
            width: 100%;
            aspect-ratio: 9 / 16;
            border-radius: 12px;
            overflow: hidden;
            background: var(--ink);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        }

        .short-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .short-card:hover .short-thumbnail img {
            transform: scale(1.05);
        }

        .short-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .short-card:hover .short-play {
            background: rgba(212, 175, 55, 0.9);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .short-play svg {
            margin-left: 4px;
        }

        .short-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: #FF0000;
            color: white;
            font-family: 'Cinzel', serif;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 4px 10px;
            border-radius: 4px;
        }

        @media (max-width: 768px) {
            .shorts-container {
                gap: 1.5rem;
            }

            .short-card {
                width: 160px;
            }

            .short-play {
                width: 50px;
                height: 50px;
            }

            .short-play svg {
                width: 32px;
                height: 32px;
            }

            .short-badge {
                font-size: 0.6rem;
                padding: 3px 8px;
            }
        }

        .video-description {
            text-align: center;
            margin-top: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .video-description p {
            font-size: 1.1rem;
            color: var(--charcoal-light);
            line-height: 1.8;
        }

        /* Livreto Section */
        #livreto {
            background: var(--paper);
            position: relative;
        }

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

        .flipbook-wrapper {
            background: var(--charcoal);
            padding: 2rem;
            border-radius: 4px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
            margin-bottom: 2rem;
        }

        .flipbook-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--ink);
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .controls-divider {
            width: 1px;
            height: 30px;
            background: rgba(212, 175, 55, 0.3);
            margin: 0 0.5rem;
        }

        .zoom-controls {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .zoom-level {
            color: var(--cream);
            font-family: 'Spectral', serif;
            font-size: 0.9rem;
            min-width: 50px;
            text-align: center;
        }

        .flipbook-btn {
            background: transparent;
            border: 1px solid var(--gold-light);
            color: var(--gold-light);
            padding: 0.6rem 1.2rem;
            font-family: 'Cinzel', serif;
            font-size: 0.85rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .flipbook-btn:hover {
            background: var(--gold-light);
            color: var(--ink);
        }

        .flipbook-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .page-indicator {
            color: var(--cream);
            font-family: 'Spectral', serif;
            font-size: 0.95rem;
        }

        .flipbook-canvas-container {
            display: block;
            background: #333;
            padding: 0;
            height: 70vh;
            overflow: scroll;
            position: relative;
            cursor: grab;
            user-select: none;
        }

        .flipbook-canvas-container.dragging {
            cursor: grabbing;
        }

        .flipbook-canvas-container canvas {
            display: inline-block;
            vertical-align: top;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
        }
        
        /* Wrapper para permitir scroll além do conteúdo */
        .flipbook-inner {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            gap: 4px;
            padding: 20px;
            min-width: 100%;
            min-height: 100%;
        }

        .pdf-page {
            background: white;
            box-shadow: 
                inset -2px 0 10px rgba(0, 0, 0, 0.1),
                5px 5px 20px rgba(0, 0, 0, 0.3);
        }

        .pdf-page.left {
            box-shadow: 
                inset 2px 0 10px rgba(0, 0, 0, 0.1),
                -5px 5px 20px rgba(0, 0, 0, 0.3);
        }

        .download-section {
            text-align: center;
            padding: 2rem;
            background: var(--cream-dark);
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .download-section p {
            margin-bottom: 1.5rem;
            color: var(--charcoal-light);
        }

        /* Comprar Section */
        #comprar {
            background: 
                linear-gradient(135deg, var(--burgundy-dark) 0%, var(--ink) 100%);
            color: var(--cream);
            text-align: center;
        }

        #comprar .section-title {
            color: var(--cream);
        }

        .comprar-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .comprar-content p {
            font-size: 1.2rem;
            line-height: 1.9;
            margin-bottom: 2.5rem;
            color: rgba(250, 246, 240, 0.9);
        }

        .stores-grid {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .store-card {
            background: rgba(250, 246, 240, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.3);
            padding: 2rem 3rem;
            text-decoration: none;
            color: var(--cream);
            transition: all 0.4s ease;
            min-width: 200px;
        }

        .store-card:hover {
            background: rgba(212, 175, 55, 0.1);
            border-color: var(--gold-light);
            transform: translateY(-5px);
        }

        .store-card h4 {
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .store-card span {
            font-size: 0.9rem;
            color: var(--gold-light);
        }

        /* Contato Section */
        #contato {
            background: var(--cream);
        }

        .contato-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .contato-content p {
            font-size: 1.1rem;
            color: var(--charcoal-light);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .contato-form {
            background: var(--paper);
            padding: 3rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            font-family: 'Cinzel', serif;
            font-size: 0.85rem;
            letter-spacing: 1px;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(44, 44, 44, 0.2);
            background: var(--cream);
            font-family: 'Spectral', serif;
            font-size: 1rem;
            color: var(--charcoal);
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold-medium);
        }

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

        .contato-form .btn {
            width: 100%;
            margin-top: 1rem;
        }

        .whatsapp-link {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            margin-top: 2rem;
            color: var(--charcoal);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .whatsapp-link:hover {
            color: #25D366;
        }

        .whatsapp-link svg {
            width: 28px;
            height: 28px;
            fill: #25D366;
        }

        /* Footer */
        footer {
            background: var(--ink);
            color: var(--cream);
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-brand .footer-logo {
            height: 50px;
            width: auto;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: rgba(250, 246, 240, 0.7);
            line-height: 1.7;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            color: var(--gold);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--gold);
            color: var(--charcoal);
            transform: translateY(-3px);
        }

        .social-link svg {
            width: 18px;
            height: 18px;
        }

        .footer-links h4,
        .footer-contact h4 {
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            color: var(--gold-light);
        }

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

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(250, 246, 240, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gold-light);
        }

        .footer-contact p {
            color: rgba(250, 246, 240, 0.7);
            margin-bottom: 0.5rem;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            text-align: center;
            color: rgba(250, 246, 240, 0.5);
            font-size: 0.9rem;
        }

        /* Modal Flipbook */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            width: 95%;
            max-width: 1400px;
            max-height: 95vh;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: transparent;
            border: none;
            color: var(--gold-light);
            font-size: 2rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .modal-close:hover {
            transform: scale(1.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--ink);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
            }

            .nav-links.active {
                display: flex;
            }

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

            .hero h1 {
                letter-spacing: 3px;
                font-size: 1.8rem;
            }

            .flipbook-canvas-container {
                flex-direction: column;
                align-items: center;
            }

            .timeline {
                padding-left: 25px;
            }

            .timeline-item {
                padding-left: 1rem;
            }

            .timeline-item::before {
                left: -25px;
                width: 10px;
                height: 10px;
            }

            section {
                padding: 4rem 1.5rem;
            }
        }

        /* Loading animation for flipbook */
        .loading-spinner {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 400px;
            color: var(--cream);
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(212, 175, 55, 0.3);
            border-top-color: var(--gold-light);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .loading-spinner p {
            margin-top: 1rem;
            font-family: 'Spectral', serif;
        }
