﻿/* corpo */

.meu-botao {
    background-color: #007BFF; /* Cor inicial */
    color: white; /* Cor do texto */
    padding: 5px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Efeito suave */
}

/* Estilo quando o mouse passa por cima */
.meu-botao:hover {
    background-color: #0056b3; /* Nova cor ao passar o mouse */
    color: #e0e0e0; /* Muda a cor do texto também (opcional) */
}

body {
     font-family: Nunito, sans-serif;
     color: #1C1C1C;
 }

 h1, h2, h3 {
      font-family: Asap, sans-serif;
     color: #000000;
}

.botao {
         color: #FFFFFF;
         text-decoration: none;
         padding: 10px 10px;
         background-color: #191970;
         font-size: .9em;
         border-radius: 3px;

}

 /* Navegação */

 nav {
 	    display: flex;
 	    flex-direction: column;
 	    align-items: center;
 	    background-color: #191970;
 }

 nav < a{

           text-decoration: none;
           color: #FFFFFF;
           font-weight: 800;
           font-size: 40px;
           font-family: Yellowtail, serif;
}



nav ul {

	    display: flex;
 	    flex-direction: column;
 	    align-items: center;
            list-style: none;
            padding: 0;
            width: 100%;

}

nav ul li {

            text-align: center;
            width: 100%;

}

nav ul li a {
                 display: inline-block;
                 padding: 10px 0;
                 width: 100%;
                 text-decoration: none;
                 color: #ffffff;
}


header {
          display: flex;
 	      flex-direction: column;
 	      align-items: center;
 	      background-image: url("../img/cameracaruaru2.jpg");
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center;
          color: #FFFFFF;
          text-align: center;
          padding: 30px;

}

header h1{

           color: #FFFFFF;
}

header p{
          margin-bottom: 3em;

}

#sobre {
        display: flex;
 	    flex-direction: column;
 	    align-items: center;
 	    text-align: center;
 	    padding: 10px 10px 20px 20px;
 	    background-color: #191970;
 	    color: #FFFFFF;

}

#sobre h2 {
            color: #FFFFFF;

}

#sobre p {
            margin-bottom: 2.5em;
            max-width: 1000px;

}

#sobre .botao {
                background-color: #F1F1F1;
                color: #1c1c1c;
                

}

#serviços {
        display: flex;
 	    flex-direction: column;
 	    align-items: left;
        padding: 5px;

}

#serviços div {
        display: flex;
 	    flex-direction: column;
 	    align-items: left;
        text-align: left;
        margin-top: 5px;

}

#filme {
        display: flex;
        flex-direction: column;
        align-items: left;
        padding: 5px;

}

#filme div {
        display: flex;
    flex-direction: column;
    align-items: left;
        text-align: left;
        margin-top: 5px;

}

#fotos div{
        display: flex;
 	    flex-direction: column;
 	    align-items: center;
        text-align: left ;
        padding-top: 5px;

}

#fotos {
      display: flex;
      flex-direction: column;
      align-items: left;
      padding: 5px;

}


#fotos img {
             width: 10%;

} 


#contato {
          display: flex;
 	  flex-direction: column;
 	  align-items: center;
          text-align: center;
          padding: 20px;

}

#contato h2 {
              color: #000000;
}

footer {
         text-align: center;
         padding: 10px;
         background-color: #191970;
         color: #FFFFFF;

}

footer a {
           text-decoration: none;
           color: #00FFFF;

}

@media screen and (min-width: 768px) {
      /*nav*/
      nav  {
               flex-direction: row;
               justify-content: space-around;

      }
      nav ul {
                flex-direction: row;
                width: 70%;

      }

      /*cabeçalho*/

      header {
               height: 600px;
               height: 60vh;
               justify-content: center;

      }                                 
}

/*sobre*/

#sobre {
         height: 250px;
         height: 30vh;
         justify-content: center;
         min-height: 250px;

}

/*serviços*/

#serviços {
           flex-direction: row;
           flex-wrap: wrap;
           align-items: flex-start;
           max-width: 1000px;
           margin: 0 auto;

}

#serviços h2 {
              text-align: center;
              width: 100%;

}

#serviços div {
               flex-grow: 1;
               flex-basis: 150px;
               padding: 0 10px;

}

#filme {
           flex-direction: row;
           flex-wrap: wrap;
           align-items: flex-start;
           max-width: 1000px;
           margin: 0 auto;

}

#filme h2 {
              text-align: center;
              width: 100%;

}

#filme div {
               flex-grow: 1;
               flex-basis: 150px;
               padding: 0 10px;

}




#fotos {
         flex-direction: row;
         flex-wrap: wrap;

}

#fotos h2 {
            width: 100%;
            text-align: center;

}

#fotos img {
             width: 90%;
}

#contato {
           flex-direction: row;
           flex-wrap: wrap;
           justify-content: space-around;
           max-width: 500px;
           margin: 0 auto;

}

#contato h2, #contato p {
                          width: 100%;
                          
}
