diff --git a/src/Components/EcFooter.js b/src/Components/EcFooter.js
index f033939d45012606d43e9b514034ed01d8ef1d68..3aa6d9617ed817dccb4ed31f478ade74b81da4e6 100644
--- a/src/Components/EcFooter.js
+++ b/src/Components/EcFooter.js
@@ -48,7 +48,7 @@ class EcFooter extends Component{
         <Container>
         <Row>
         <Col md={4} sm={5} xs={5}>
-          <h4>Sobre</h4>
+          <h4 style={{color : "white"}}>Sobre</h4>
           <ul style={listStyle}>
             <li> <WhiteLink to="/sobre">Sobre a Plataforma</WhiteLink> </li>
             <li> <WhiteLink to="/sobre#portaisparceiros">Portais Parceiros</WhiteLink> </li>
@@ -57,7 +57,7 @@ class EcFooter extends Component{
           </ul>
         </Col>
         <Col md={4} sm={5} xs={5}>
-          <h4>Ajuda</h4>
+          <h4 style={{color : "white"}}>Ajuda</h4>
           <ul style={listStyle}>
             <li>    <WhiteLink to="/ajuda">Central de Ajuda</WhiteLink> </li>
             <li>    <WhiteLink to="/publicando-recurso">Publicando Recursos</WhiteLink> </li>
diff --git a/src/Components/SearchSection.js b/src/Components/SearchSection.js
index c2cdfc4e12bcf56e4d3b19376059d75f84d60c3f..66380b80cb52a8eb34fd22066a5c2ebb62dc3b12 100644
--- a/src/Components/SearchSection.js
+++ b/src/Components/SearchSection.js
@@ -33,7 +33,7 @@ const bannerStyle = {
 }
 const titleStyle = {
     color: "white",
-    paddingTop: "5%"
+    paddingTop: "5%",
 }
 const buttonStyle = {
     alignItems: "flex-start",
@@ -70,8 +70,8 @@ class SearchSection extends Component{
     <ModalVideoApresentacao open={this.state.modalOpen} handleClose={this.toggleModal}/>
     <div style={bannerStyle}>
       <div style={titleStyle}>
-        <h2>Plataforma MEC de Recursos Educacionais Digitais</h2>
-        <h3 style={{fontWeight: "100"}}>
+        <h2 style={{color : "white"}}>Plataforma MEC de Recursos Educacionais Digitais</h2>
+        <h3 style={{fontWeight: "100", color: "white"}}>
           Encontre e compartilhe vídeos, animações e muitos outros Recursos
         </h3>
       </div>
diff --git a/src/env.js b/src/env.js
index 82bf229b11fe78f3cb5ff8a58d096eec156cedf2..b7359157e1c0e9d260976bbe2b2545a2e0ca51b0 100644
--- a/src/env.js
+++ b/src/env.js
@@ -17,7 +17,7 @@ You should have received a copy of the GNU Affero General Public License
 along with Plataforma Integrada MEC.  If not, see <http://www.gnu.org/licenses/>.*/
 
 
-var apiDomain = 'https://api.portalmectest.c3sl.ufpr.br',
+var apiDomain = 'https://api.portalmec.c3sl.ufpr.br',
     apiVersion = 'v1',
     apiUrl = apiDomain + '/' + apiVersion;