@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;700&display=swap');

@import url('menu.css');
@import url('botoes.css');

:root {
	--cinza: #38404f;
	--azul: #025fb3;
	--azul2: #303030;
	--amarelo: #e2b529;
	--branco: #ffffff;
}

* {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 16px;
	color: var(--cinza);
}

.btn-to-top a img {
	position: fixed;
	bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  box-shadow: 0px 0px 15px #1bce9b;
}


h1 {
	font-size: 54px;
	font-weight: 300;
}

h6 {
	font-size: 24px;
	font-weight: 300;
}

h5 {
	font-size: 24px;
	font-weight: 700;
}

/*                Header - Home                */

header {
    width: 100%;
    height: 100vh;
    margin-top: 100px;
}

header .content-header .header-text {
	display: flex;
	flex-direction: column;
	align-self: flex-start;
  margin-top: 100px;
}

header .content-header .header-text h1 {
	color: var(--cinza);
	font-weight: lighter;
	font-size: 53px;
}

header .content-header .header-text h5 {
    padding-bottom: 40px;
    color: #ff2a38;
    font-size: 23.5px;
}

header .content-header .header-text h6 {
	font-weight: lighter;
	color: #0260b2;
  font-size: 31px;
  padding-top: 24px;
}

header .header-image {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  margin-top: 50px;
}

/*               Sobre                 */

#sobre {
	padding-top: 70px;
	padding-bottom: 70px;
}

#sobre .box-sobre {
	display: flex;
	align-items: center;
	text-align: justify;
}

/*             Medicamentos             */

#medicamentos {
	padding-top: 70px;
	padding-bottom: 100px;
}

#medicamentos .box-medicamentos {
	display: flex;
	align-items: center;
}

.content-medicamentos h2 {
	font-weight: lighter;
	font-size: 56px;
}


/*				    Diferenciais             */

#diferenciais {
	padding-bottom: 70px;
}

#diferenciais h2 {
	font-weight: bold;
	font-size: 31px;
	text-align: center;
	margin-bottom: 70px;
}

#diferenciais .box-diferenciais {
	display: flex;
	justify-content: space-around;
}

#diferenciais .box-diferenciais .item-diferenciais {
	height: 200px;
	width: 200px;
	padding: 30px 20px 10px 20px;
	text-decoration: none;
	border-radius: 10px;
	background-color: var(--azul);
	transition: all .2s ease;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#diferenciais .box-diferenciais .item-diferenciais img {
	height: 70px;
	margin-bottom: 20px;
}

#diferenciais .box-diferenciais .item-diferenciais p {
	color: var(--branco);
	font-weight: bold;
	text-align: center;
}


#diferenciais .box-diferenciais .item-diferenciais:hover {
	background-color: var(--amarelo);
	transition: all .2s ease;
}

/*				      Interno                */

#content-int {
	padding-top: 120px;
	padding-bottom: 70px;
}

#content-int header {
	display: none;
}

#content-int .box-content-int {
	display: flex;
	align-items: center;
	text-align: justify;
}

#content-int .content-interno h2 {
	font-weight: lighter;
	font-size: 56px;
	text-align: left;
}

/*				       Rodape                */

footer {
	background: linear-gradient(to left, #38404f, #2a303b);
	padding: 70px 0 0px 0;
	text-align: center;
}

/*footer .content-rodape-img img{
	position: absolute;
	left: -40px;
  margin-top: -160px;
}*/

footer .content-rodape {
    display: flex;
    justify-content: center;
}

footer .content-rodape img {
	width: 35px;
	margin: -8px 8px 8px 8px;
}

footer .content-rodape p {
  text-align: left;
  color: var(--branco);
  font-weight: bold;
}

footer .btn-whatsapp {
	padding: 10px 18px;
}

footer .copyright {
	margin-top: 50px;
	background-color: var(--azul2);
	padding-top: 16px;
}

footer .copyright p {
	color: var(--branco);
	font-weight: 300;
}

/*                Contato                */

.form-control, .form-select {
	padding: 16px .75rem;
	background-color: #f1f1f1;
	border: 1px solid transparent;
	color: var(--verde);
}

.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--cinza);
  opacity: .3;
}
.form-control::-moz-placeholder { /* Firefox 19+ */
  color: var(--cinza);
  opacity: .3;
}
.form-control:-ms-input-placeholder { /* IE 10+ */
  color: var(--cinza);
  opacity: .3;
}
.form-control:-moz-placeholder { /* Firefox 18- */
  color: var(--cinza);
  opacity: .3;
}

#content-int form {
	padding-top: 20px;
}

form .row button {
	margin-top: 24px;
}

form label {
	color: var(--cinza)
}

