upload ftp archives

in fact i think it’s google that is not reading the files

you want a menu?
so that div is empty and closed before any link

the basics of html hierarchy:
no closed <body> tag, no closed < html> tag
unclosed many <div> tags
In short your html code is wrong and incomplete
so you only see half of it

if original code is ok …that just you know.
that is why I wrote: check if original source code matches with source online

The page you sent as an example where it works is totally different and contains additional javascripts and css

look
This is the html code from your index.php site

    <html>
    <head>
    <title>dotBR</title>
    <link rel="shortcut icon" href="imagem/Sabia_Vetorizado_Colorido.png">
    <link rel="stylesheet" type="text/css" href="css/1024-768.css">
    <!--menu retratil-->
    <link rel="stylesheet" type="text/css" href="css/normalize.css" />
    <link rel="stylesheet" type="text/css" href="css/demo.css" />
    <link rel="stylesheet" type="text/css" href="css/component.css" />
    <script src="js/modernizr.custom.25376.js"></script>
    <!--fim menu retratil-->
    <meta charset="UTF-8">
    </head>
    <body>
    <div id="perspective" class="perspective effect-airbnb">
    			<div class="container">
    				<div class="wrapper"><!-- wrapper needed for scroll -->
    					
    	<div id="tudo">
    <div class="column">
    <button id="showMenu">Menu</button>
    </div>
    <div id="top">
    <a href="paginas/login.php"><div id="painel"></div></a>
    </div>
    <div id="corpo">
    <img src="imagem/home.jpg" style="position:relative;width:90%;left:5.5%;"><br/>
    <h1>Bem Vindo ao Nosso Site!</h1><br/>
    <table style="position:relative;">
    <tr><td rowspan="6"><img src="imagem/posso ajudar.png" height="50%"></td><td>-Reestruturao de Sistemas Web</td></tr>
    <tr><td>-Criao de Site Para Loja</td></tr>
    	<tr><td>-Desenvolvimento da Identidate Visual</td></tr>
    	<tr><td>-Divulgao de Servios na Internet</td></tr>
    	<tr><td>-Suporte Tecnico</td></tr>
    	<tr><td>-Preos Acessiveis</td></tr>
    	</table>
    	<br/><br/>
    
    <p>
    Entre em contato pelo formulrio, ou pelos nossos contatos abaixo e retornaremos o mais rpido possvel.
    <br/>
    <br/>
    Veja nossos servios e preos, voc vai se impressionar e n vai se arrepender ao contratar nosso servios.
    <br/>
    <br/>

<!-- WHAT ??? nothing else down ? -->

which, as you see, suddenly stops like someone is cut it off

your menu button has ID <button id = "showMenu"> Menu </ button>
but you miss the call javascript that will process that ID
<script src = "js/menu.js"> </ script>

even if you have that js call
it’s still missing the part that contains the actual menu

<nav class = "outer-nav bottom horizontal">
<a href="index.php"> Home </a>
<a href="paginas/somos.php"> Quem Somos </a>
<a href="paginas/servicos.php"> Servios </a>
<a href="paginas/contato.php"> Contact </a>
</ Nav>

and much more to make this site work properly