 @import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&display=swap');
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            height: 100%;
            overflow-x: hidden;
        }

        body {
            display: flex;
            flex-direction: column;
            background-color: #FFCB05;
            font-family: 'Arial', sans-serif;
            font-family: "Baloo Bhai 2", sans-serif;
        }

        header {
            width: 100%;
            flex-shrink: 0;
        }

        header picture {
            display: block;
            width: 100%;
            height: auto;
        }

        header img {
            display: block;
            width: 100%;
            height: auto;
        }

        main {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            text-align: center;
            min-height: 200px;
            max-width: 100%;
            overflow: hidden;
        }

        main h1 {
            font-size: clamp(44px, 6vw, 48px);
            color: #078349;
            font-weight: bold;
            margin-bottom: 15px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        main h3 {
            font-size: clamp(32px, 3.5vw, 24px);
            color: #013D7B;
            line-height: 1.2;
            max-width: 90%;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        footer {
            width: 100%;
            flex-shrink: 0;
            margin-top: auto;
        }

        footer picture {
            display: block;
            width: 100%;
            height: auto;
        }

        footer img {
            display: block;
            width: 100%;
            height: auto;
        }

        /* Responsivo - Mobile */
        @media (max-width: 767px) {
            main {
                padding: 15px;
                min-height: 150px;
            }

 

            main p {
                font-size: 16px;
                max-width: 95%;
            }
        }

        /* Responsivo - Tablet */
        @media (min-width: 768px) and (max-width: 1023px) {
            main {
                padding: 30px;
                min-height: 200px;
            }

            main h1 {
                font-size: 36px;
                margin-bottom: 15px;
            }

            main p {
                font-size: 18px;
                max-width: 85%;
            }
        }

        /* Responsivo - Desktop */
        @media (min-width: 1024px) {
            main {
                padding: 40px;
                min-height: 250px;
            }

            main h1 {
                font-size: 48px;
                margin-bottom: 20px;
            }

            main p {
                font-size: 22px;
                max-width: 80%;
            }
        }