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

        body {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(
            135deg,
            rgb(0, 47, 7) 0%,
            rgb(5, 7, 5) 50%,
            rgb(0, 52, 8) 100%
            );

            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        .content {
            flex: 1;
            max-width: 500px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .logo {
            width: 366.54px;
            height: 115.21px;
            margin-bottom: 40px;
        }

        .divider {
            width: 150px;
            height: 1px;
            background: #8AF471;
            margin-bottom: 40px;
        }

        .title {
            font-size: 28px;
            font-weight: bold;
            color: white;
            line-height: 1.3;
            margin-bottom: 30px;
        }

        .subtitle {
            padding: 0 90px;
            font-size: 25px;
            font-weight: 400;
            color: white;
            line-height: 1.4;
            margin-bottom: 40px;
        }

        .support-button {
            display: inline-flex;
            align-items: center;
            height: 40px;
            background: #8AF471;
            color: #000;
            padding: 0 12px 0 0;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            border: none;
            cursor: pointer;
        }

        .support-icon-container {
            background: #579C47;
            height: 40px;
            width: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-top-left-radius: 6px;
            border-bottom-left-radius: 6px;
            margin-right: 15px;
        }

        .support-icon {
            width: 20px;
            height: 20px;
            fill: white;
        }

            /* Hover opcional, se quiser manter leve */
        .support-button:hover {
            filter: brightness(1.05);
        }

        .suport-text {
            height: 40px;
            width: 100%;
            display: flex;
            margin-r: 15px;
            color: #000;
            font-weight: bold;
            font-size: 18px;
        }


        .image-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .error-image {
            max-width: 100%;
            height: auto;
            max-height: 500px;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                text-align: center;
                gap: 40px;
                padding: 40px 20px;
            }

            .content {
                max-width: 100%;
                order: 1;
            }

            .image-container {
                order: 2;
                margin-top: 20px;
            }

            .logo {
                width: 222px;
                height: 70px;
                margin-bottom: 30px;
            }

            .divider {
                margin: 0 auto 30px;
            }

            .title {
                font-size: 24px;
                margin-bottom: 25px;
            }

            .subtitle {
                font-size: 16px;
                margin-bottom: 35px;
            }

            .error-image {
                max-height: 400px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 30px 15px;
            }

            .logo {
                width: 222px;
                height: 70px;
            }

            .title {
                font-size: 22px;
            }

            .subtitle {
                font-size: 15px;
            }

            .support-button {
                font-size: 15px;
            }

            .error-image {
                max-height: 350px;
            }
        }