/*
@font-face {
font-family: 'Segoe UI Regular';
font-style: normal;
font-weight: normal;
src: local('Segoe UI Regular'), url('../fonts/Segoe UI.woff') format('woff');
}
*/
.open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/* ============ */

body{font-family: "Open Sans", sans-serif; font-size: 18px; color: #444444;}
a{text-decoration:none;}
a:hover{text-decoration:none;}
textarea, input:focus{outline: none;}

b, strong, h1, h2, h3, h4{font-weight: 700;}
.padding{padding: 60px 0px;}


/* 
	HEADER
	============ 
*/

header{position: absolute;top: 20px;left: 0;width: 100%;background-color: transparent;z-index: 9;}
.navbar-toggler svg{fill: #fff;cursor: pointer;}
.hero{height: 80vh;background-image: url('../images/bg_header.png');background-size: cover;background-position: center;color: #fff;background-attachment: fixed;position: relative; top: -22px;display: flex;align-items: center;font-size: 1.8em;}
.hero h2{font-size: 1.5em;}

/* 
	HOME
	============ 
*/

.skills{text-align: center; padding: 20px 0 40px;background-color: #EEEEEE;margin-top: -22px;margin-bottom: 40px;}
.skills img{display: inline-block;}
.skills h3{margin: 0px 0 1em;min-height: 2em;display: flex;align-items: center;justify-content: center;}

.how_work{padding: 60px 0;background-color: #EEEEEE;}
.how_work__centered_text{max-width: 660px;margin: 0 auto;margin-bottom: 40px;}
.how_work__centered_text_col{max-width: 400px;margin: auto;}

.clients_contact{padding: 60px 0;}
.clientes p{margin-top: 2em; color: #47144C; font-weight: 700; font-size: 1.2em;}
select, input, textarea{width: 100%;padding: 10px;border: 1px solid #707070;border-radius: 4px;box-sizing: border-box;}
input[type="submit"]{width: auto;background-color: #845EC2;color: #fff;font-weight: 700;cursor: pointer;text-transform: uppercase;transition: all 0.3s ease;}

.portfolio p{padding: 0; margin: 0;}

.portifolio__categorys{padding: 10px 0 30px;}
.portifolio__categorys a{display: inline-block; padding: 5px 10px; background-color: #845EC2; color: #fff; border-radius: 4px; transition: all 0.3s ease;}
.portifolio__categorys a:hover{opacity: 0.8;}

.portfolio__list .item-3{background-color: #EEEEEE; border-radius: 10px;}
.portfolio__list .item-3 h3{margin: 0 0 10px;}
.portfolio__list .item-3 p{margin-bottom: 0;}

.portfolio__item_cats{padding: 0 20px;}
.portfolio__item_cats a{display: inline-block; padding: 2px 5px; background-color: #845EC2; color: #fff; border-radius: 4px; font-size: 0.6em; margin-right: 5px; margin-bottom: 5px;opacity: .8;}
.portfolio__item_cats a:hover{opacity: 0.8;}

.portifolio__item_image{padding: 0 0 20px;}

.portfolio__item_infos{padding: 0 20px 20px;}
.portfolio__item_infos p{font-size: 0.8em;}
.portfolio__item_infos a{color: #845EC2; font-weight: 700; transition: all 0.3s ease;}
.portfolio__item_infos a:hover{opacity: 0.8;}

.portfolio__item_infos a.portifolio__item_more{display: inline-block; margin-top: 10px; padding: 5px 10px; color: #845EC2; border: 1.5px solid #845EC2; border-radius: 4px; font-size: 0.9em; transition: all 0.3s ease;}

.portfolio__item_infos_text {
    padding-bottom: 10px;
    font-size: .9em;
}

.buttom_more{padding: 20px 0 60px; text-align: center;}
.buttom_more a{display: inline-block; margin-top: 20px; padding: 10px 20px; background-color: #845EC2; color: #fff; border-radius: 4px; font-size: 1em; transition: all 0.3s ease;}
.buttom_more a:hover{opacity: 0.8;}

.wpcf7-form p{display: flex; flex-wrap: wrap; gap: 1em;}


/* 
	FOOTER
	============ 
*/

footer{background-color: #47144C;padding: 40px 0;color: #fff;}
footer a{color: #fff;}
footer a:hover{color: #fff;opacity: 0.8;}

.scroll-indicator {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 24px;
  border-left: 3px solid #47144C;
  border-bottom: 3px solid #47144C;
  transform: rotate(-45deg);
  animation: bounce 1.5s infinite;
}



/* animação de subir e descer */
@keyframes bounce {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0.7;
  }
  50% {
    transform: rotate(-45deg) translate(-5px, 5px);
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0.7;
  }
}

/* escondido */
.scroll-indicator.hide {
  opacity: 0;
  pointer-events: none;
}

/* 
	MODAL
	============ 
*/

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s ease;
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-header h2 {
  margin: 0;
  color: #47144C;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #47144C;
  transition: all 0.3s ease;
}

.modal-close:hover {
  opacity: 0.6;
}

.modal-body {
  margin-bottom: 20px;
  color: #444;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.modal-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}

.modal-btn-primary {
  background-color: #845EC2;
  color: #fff;
}

.modal-btn-primary:hover {
  opacity: 0.8;
}

.modal-btn-secondary {
  background-color: #EEEEEE;
  color: #444;
}

.modal-btn-secondary:hover {
  opacity: 0.8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ============ */

@media screen and (max-width: 1300px) {
}

/* ============ */

@media screen and (max-width: 1200px) {
}

/* ============ */

@media screen and (max-width: 990px) {
}

/* ============ */

@media screen and (max-width: 767px) {
	.hero{font-size: 1.3em;}
	select, input, textarea {width: 100%;}
	footer .text-right,
	footer{text-align: center;}
}

/* ============ */

@media screen and (max-width: 520px) {
}

/* ============ */

@media screen and (max-width: 460px) {
	.hero{font-size: 1em;}
}

/* ============ */

@media screen and (max-width: 370px) {
	.how_work__list {flex-direction: column;}
	.how_work__list .item-2 {width: 100%;}
}





