﻿/* Responsive CSS */

/* Desktop Large (992px a 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .single_abouts_img img {
    width: 100%;
  }
}

/* Tablet Screen (769px a 991px) */
@media (min-width: 769px) and (max-width: 991px) {
  .single_banner img {
    width: 100%;
  }
  .single_banner_text {
    margin-top: 3rem; /* substituído % por rem para melhor controlo */
  }
  .banner {
    background-size: cover;
  }
  .apps_downlod a {
    display: inline-block;
    width: 48%;
  }
  .single_abouts_img img {
    width: 100%;
  }
  img {
    max-width: 100%;
  }
  .single_works_text_middel {
    margin-top: 10%;
  }
  .single_works_deatels {
    margin-top: 10%;
  }
  .main_joine_content .main_joinus a {
    width: 22%;
    box-sizing: border-box;
  }
  .footer_menu ul li a {
    padding: 5px 3px;
  }
}

/* Mobile Phone Screen (até 768px) */
@media (max-width: 768px) {
  body {
    overflow-x: hidden; /* evita scroll horizontal */
  }

  .banner {
    background-size: cover;
  }

  .single_banner_text {
    margin-top: 3rem; /* mais estável que % */
  }

  .single_abouts_img img {
    width: 100%;
  }

  img {
    max-width: 100%;
  }

  .main_joine_content .main_joinus a {
    width: 80%;
    max-width: 250px;
    display: block;
    margin: 20px auto;
    box-sizing: border-box;
  }

  .single_footer {
    text-align: center;
  }

  .single_footer .form-control,
  .single_footer .submit_btn {
    width: 90%;
    display: block;
    margin: 10px auto;
    box-sizing: border-box;
  }

  .single_footer .submit_btn {
    font-size: 14px;
  }

  .navbar-form {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }

  .footer .single_footer p {
    padding-left: 0;
  }
}