        @font-face {
            font-family: 'Gotham Bold';
            src: url('../fonts/GOTHAM-BOLD.TTF') format('truetype');
            font-weight: bold;
            font-style: normal;
        }
        @font-face {
            font-family: 'Gotham Extra Light';
            src: url('../fonts/GOTHAM-XLIGHT.TTF') format('truetype');
            font-weight: 200;
            font-style: normal;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body, html {
            font-family: 'Gotham Bold';
            height: 100%;
            overflow: hidden;
            background-color: black;
        }
        
        .container {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .bg-image {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: url('../img/fachada.png');
            background-size: cover;
            background-position: center;
            z-index: 1;
            background-color: black;
            opacity: 20%;
        }
        
        .overlay-image {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: url('../img/fx.png');
            background-size: cover;
            background-position: center;
            opacity: 0.7;
            z-index: 2;
            filter: contrast(200%);
        }
        
        .content {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 3;
            text-align: center;
        }
        
        .logo {
            width: 300px;
            height: 300px;
            margin-bottom: 40px;
            /* Substitua pelo caminho da sua logo */
            background-image: url('../img/logo.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
           
        }
        
         
        .links {
            display: flex;
            flex-direction: row;
            gap: 20px;
        }
        
        .link {
            font-family: 'Gotham Extra Light';
            display: block;
            padding: 15px 40px;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-size: 18px;
            font-weight: bold;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .link::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 5px;
            width: 0;
            height: 2px;
            background-color:white;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .link:hover {
            background-color: transparent;
            color: white;
            transform: scale(1.05);
        }
        
        .link:hover::after {
            width: 60%;
            background-color: rgb(255, 145, 0);
        }
        
        .link:hover {
            color: rgb(255, 145, 0);
            transform: scale(1.05);
            text-decoration: none;
        }
        .footer {
            font-family: 'Gotham Extra Light';
            position: absolute;
            bottom: 20px;
            width: 100%;
            color: white;
            font-size: 11px;
            z-index: 3;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
            gap: 5px;
            /* Novo */
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .footer img{
            height: 20px;
        }
        
        @media (max-width: 768px) {
            .logo {
                width: 150px;
                height: 150px;
                margin-bottom: 30px;
            }
            
            .link {
                padding: 12px 30px;
                font-size: 16px;
            }
            .footer {
                padding: 20px;
                font-size: 7px;
                margin-bottom: 180px;
            }
        }
