        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", Arial, sans-serif;
        }

        body {
            min-height: 100vh;
            background: linear-gradient(135deg, #0d2a4d, #0b1e35);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-align: center;
        }

        .container {
            max-width: 560px;
            padding: 40px 30px;
        }

        .logo {
            max-width: 320px;
            margin: 0 auto 30px;
        }

        .logo img {
            width: 100%;
            height: auto;
        }

        h1 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        p {
            font-size: 1.05rem;
            opacity: 0.9;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .contato {
            margin: 25px 0 35px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        .contato h2 {
            font-size: 1.1rem;
            margin-bottom: 15px;
            font-weight: 500;
            opacity: 0.9;
        }

        .telefones {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .telefone {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1rem;
            opacity: 0.95;
        }

        .telefone span {
            font-size: 1.2rem;
        }

        .telefone a{
            color: white;
            text-decoration: none;
            font-weight: 600;
        }

        .telefone a:hover{
            color: #e53935;
            text-decoration: none;
        }

        .loader {
            width: 60px;
            height: 60px;
            border: 5px solid rgba(255,255,255,0.2);
            border-top: 5px solid #e53935;
            border-radius: 50%;
            margin: 0 auto;
            animation: spin 1.2s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        footer {
            margin-top: 40px;
            font-size: 0.85rem;
            opacity: 0.6;
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }

            p {
                font-size: 0.95rem;
            }
        }