```html

<!DOCTYPE html>

<html lang="de">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Pulpa Fruta – Website im Aufbau</title>


    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }


        body {

            font-family: Arial, Helvetica, sans-serif;

            background: #f7f7f7;

            color: #333;

        }


        .hero {

            position: relative;

            height: 450px;

            overflow: hidden;

        }


        .hero img {

            width: 100%;

            height: 450px;

            object-fit: cover;

        }


        .overlay {

            position: absolute;

            inset: 0;

            background: rgba(0,0,0,0.45);

            display: flex;

            align-items: center;

            justify-content: center;

            flex-direction: column;

            color: white;

            text-align: center;

            padding: 20px;

        }


        .overlay h1 {

            font-size: 4rem;

            margin-bottom: 10px;

        }


        .overlay p {

            font-size: 1.3rem;

        }


        .content {

            max-width: 900px;

            margin: 50px auto;

            padding: 0 20px;

            text-align: center;

        }


        .content h2 {

            color: #2f7d32;

            margin-bottom: 20px;

        }


        .content p {

            font-size: 1.1rem;

            line-height: 1.8;

            margin-bottom: 20px;

        }


        .contact {

            margin-top: 30px;

            padding: 25px;

            background: white;

            border-radius: 10px;

            box-shadow: 0 2px 12px rgba(0,0,0,0.08);

        }


        .contact a {

            color: #2f7d32;

            text-decoration: none;

            font-weight: bold;

        }


        footer {

            text-align: center;

            padding: 30px;

            color: #777;

            font-size: 0.9rem;

        }

    </style>

</head>

<body>


    <div class="hero">

        <!-- Eigenes Bild hier ersetzen -->

        <img src="images/brasilianische-fruechte.jpg" alt="Brasilianische Früchte">


        <div class="overlay">

            <h1>Pulpa Fruta</h1>

            <p>Brasilianische Premium-Fruchtpürees für Smoothies, Bowls und Gastronomie</p>

        </div>

    </div>


    <div class="content">


        <h2>Unsere Website befindet sich im Aufbau</h2>


        <p>

            Vielen Dank für Ihren Besuch.

        </p>


        <p>

            Pulpa Fruta wird Ihr Spezialist für hochwertige brasilianische

            Tiefkühl-Fruchtpürees und Fruchtmuse. Unser Sortiment umfasst unter

            anderem Açaí, Acerola, Cashew-Frucht, Maracujá, Mango und Ananas –

            direkt aus Brasilien importiert.

        </p>


        <p>

            Derzeit arbeiten wir an unserem neuen Internetauftritt.

            Schon bald finden Sie hier weitere Informationen zu unseren Produkten,

            unserem Unternehmen und unseren Vertriebsmöglichkeiten für Gastronomie,

            Handel und Industrie.

        </p>


        <div class="contact">

            <h3>Kontakt</h3>

            <p>

                Bei Fragen oder Interesse an einer Zusammenarbeit erreichen Sie uns unter:

            </p>


            <p>

                <a href="mailto:info@pulpafruta.com">

                    info@pulpafruta.com

                </a>

            </p>

        </div>


    </div>


    <footer>

        © 2026 Pulpa Fruta – Alle Rechte vorbehalten.

    </footer>


</body>

</html>

```