        :root {
            --marrom: #402010;
            --laranja: #D86A33;
            --bege: #E4C8A6;
            --preto: #1A1A1A;
        }

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

        body {
            background-color: var(--bege);
            color: var(--marrom);
            scroll-behavior: smooth;
        }

        /* --- PRIMEIRA TELA (LINKS) --- */
        .hero-section {
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background-image: url('https://www.transparenttextures.com/patterns/kraft-paper.png');
            position: relative;
        }

        .container {
            width: 100%;
            max-width: 400px;
            text-align: center;
        }

        .profile-img {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            border: 4px solid var(--marrom);
            margin-bottom: 15px;
            background-color: white;
        }

        h1 {
            font-size: 1.8rem;
            text-transform: uppercase;
            font-weight: 900;
            margin-bottom: 5px;
        }

        .subtitle {
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 30px;
            letter-spacing: 1px;
        }

        .links-area {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
        }

        .link-card {
            background-color: var(--marrom);
            color: var(--bege);
            text-decoration: none;
            padding: 16px;
            border-radius: 8px;
            font-weight: bold;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: 0.3s;
        }

        .link-card.featured {
            background-color: var(--laranja);
            color: white;
        }

        .link-card i {
            position: absolute;
            left: 15px;
        }

        .link-card:hover {
            transform: scale(1.02);
            filter: brightness(1.2);
        }

        /* Setinha de rolar */
        .scroll-indicator {
            position: absolute;
            bottom: 20px;
            animation: bounce 2s infinite;
            font-size: 1.2rem;
            color: var(--marrom);
        }

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

        /* --- SEGUNDA SEÇÃO (HISTÓRIA) --- */
        .history-section {
            background-color: var(--marrom);
            color: var(--bege);
            padding: 60px 30px;
            line-height: 1.6;
        }

        .history-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .history-section h2 {
            text-transform: uppercase;
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--laranja);
            text-align: center;
        }

        .history-section p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .info-grid {
            margin-top: 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            border-top: 1px solid rgba(228, 200, 166, 0.2);
            padding-top: 30px;
        }

        .info-item h4 {
            color: var(--laranja);
            text-transform: uppercase;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        footer{ text-align: center; margin-top: 20px; font-size: 13px; color: #402010; font-weight: 600; }

        footer {
            text-align: center;
            padding: 40px 20px;
            font-size: 0.7rem;
            background-color: var(--marrom);
            color: var(--bege);
            opacity: 0.6;
            text-transform: uppercase;
        }