/* fonts import */
@import url("../fonts/octin_sports_rg.ttf");

/* Aumentar padding lateral em todo o site */
.container,
.container-fluid {
  padding-right: 30px !important;
  padding-left: 30px !important;
}

@media (min-width: 576px) {
  .container,
  .container-fluid {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
}

@media (min-width: 768px) {
  .container,
  .container-fluid {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
}

@media (min-width: 992px) {
  .container,
  .container-fluid {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-fluid {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
}

body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.long_section {
  margin-left: 45px;
  margin-right: 45px;
  padding-left: 15px;
  padding-right: 15px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-family: "octin sports", sans-serif;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  font-weight: 700;
  text-transform: uppercase;
  color: #3a3f58;
  margin: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

h1,
h2 {
  font-family: "octin sports", sans-serif;
}

/*header section*/
.header_section {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9;
}

.header_section .nav_container {
  margin: 0 auto;
}

.header_section.innerpage_header {
  position: relative;
  background: #3a3f58;
  padding: 10px 0;
}

.custom_nav-container {
  padding: 10px 0;
}

.custom_menu-btn {
  position: fixed;
  right: 15px;
  top: 15px;
  width: 50px;
  height: 50px;
}

.custom_menu-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.07);
  z-index: 7;
  border-radius: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_menu-btn.menu_btn-style::before {
  width: 100vh;
  height: 100vh;
  background-color: #3a3f58;
  -webkit-transform: scale(5);
          transform: scale(5);
  border-radius: 0;
}

.custom_menu-btn button {
  width: 50px;
  height: 50px;
  outline: none;
  border: none;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  position: relative;
  z-index: 999;
  margin: 0;
}

.custom_menu-btn button span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #000000;
  margin: 2.5px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 15px;
}

.custom_menu-btn .s-2 {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.menu_btn-style button span {
  background-color: #ffffff;
}

.menu_btn-style button .s-1 {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
          transform: rotate(45deg) translate(6px, 6px);
}

.menu_btn-style button .s-2 {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}

.menu_btn-style button .s-3 {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 9;
}

.overlay .closebtn {
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 60px;
}

.overlay a {
  padding: 0px;
  text-decoration: none;
  font-size: 22px;
  color: #ffffff;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
}

.overlay a:hover {
  color: #e45441;
}

.overlay-content {
  position: relative;
  top: 30%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  z-index: 99;
}

.menu_width {
  width: 100%;
}

.menu_width.overlay a {
  opacity: 1;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar-brand span {

  font-size: 28px;
  font-weight: 700;
  color: #ffffff;

  text-transform: uppercase;
  display: inline-block; 
  padding: 5px 10px;   

  text-shadow: 
    1px 1px 0px #666666,   
    -1px -1px 0px #666666,
    1px -1px 0px #3b3b3b, 
    -1px 1px 0px #3b3b3b;
  
}

/*end header section*/
/* slider section */
.slider_section {
  min-height: 100vh;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  text-align: center;
  padding: 115px 0 75px 0;
}

.slider_section #customCarousel1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider_section #customCarousel1 .carousel-inner,
.slider_section #customCarousel1 .carousel-item,
.slider_section #customCarousel1 .img_container {
  height: 100%;
}

.slider_section #customCarousel1 .img_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.slider_section .detail-box {
  position: relative;
  width: 100%;
  z-index: 4;
}

.slider_section .detail-box .inner_detail-box {
  background-color: rgba(58, 63, 88, 0.8);
  color: #ffffff;
  padding: 45px;
  border-radius: 5px;
  margin: 0 auto;
  max-width: 90%;
}

@media (min-width: 768px) {
  .slider_section .detail-box .inner_detail-box {
    max-width: 85%;
  }
}

@media (min-width: 992px) {
  .slider_section .detail-box .inner_detail-box {
    max-width: 80%;
  }
}

.slider_section .detail-box h1 {
  font-weight: bold;
  text-transform: uppercase;
}

.slider_section .detail-box p {
  margin-top: 15px;
}

.slider_section .detail-box .slider-link {
  display: inline-block;
  padding: 10px 45px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 5px;
  border: 1px solid #ffffff;
  -webkit-transition: all .2s;
  transition: all .2s;
  margin-top: 10px;
}

.slider_section .detail-box .slider-link:hover {
  background-color: transparent;
  color: #ffffff;
}

.slider_section .img-box img {
  min-width: 100%;
  min-height: 100%;
}

.slider_section .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider_section .carousel-control-prev,
.slider_section .carousel-control-next {
  width: 50px;
  height: 50px;
  z-index: 5;
  opacity: 1;
  border-radius: 5px;
  font-size: 12px;
  background-color: #e45441;
  color: white;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.slider_section .carousel-control-prev {
  left: 20px;
  top: 50%;
}

.slider_section .carousel-control-next {
  right: 20px;
  top: 50%;
}

@media (min-width: 768px) {
  .slider_section .carousel-control-prev {
    left: 30px;
  }
  
  .slider_section .carousel-control-next {
    right: 30px;
  }
}

@media (min-width: 992px) {
  .slider_section .carousel-control-prev {
    left: 50px;
  }
  
  .slider_section .carousel-control-next {
    right: 50px;
  }
}

@media (min-width: 1200px) {
  .slider_section .carousel-control-prev {
    left: 80px;
  }
  
  .slider_section .carousel-control-next {
    right: 80px;
  }
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img-box img {
  width: 100%;
}

.about_section .detail-box p {
  margin-top: 10px;
  margin-bottom: 35px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #3a3f58;
  color: #ffffff;
  border-radius: 0;
  border: 1px solid #3a3f58;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  color: #3a3f58;
}

/* Estilo geral da galeria */
.gallery_section {
  background-color: #f9f8f7;
  padding: 30px 0;
}

/* Título da galeria */
.gallery_section .heading_container h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}

/* Botões de filtro */
.filter-buttons {
  text-align: center;
  margin-bottom: 30px;
}

.filter-btn {
  background-color: #e45441;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 0 10px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.filter-btn.active, .filter-btn:hover {
  background-color: #b94333; /* Cor mais escura ao passar o mouse */
}

.filter-btn:focus {
  outline: none;
}

/* Estilo das caixas de imagens */
.gallery-item {
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.gallery-item.show {
  display: block;
  opacity: 1;
}
.gallery-item.hide {
  display: none;  
}
/* Animação de fade-in quando a imagem aparece */
.gallery-item.show {
  animation: fadeIn 0.6s ease-out;
}

/* Estilo das imagens */
.img-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.img-box2{
  
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.img-box2:hover img {
  transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
}

/* Ícone de visualização das imagens */
.img-box2 a {
  position: absolute;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  background-color: #a73a2ca2;
  padding: 8px;
  border-radius: 15px;
  transition: opacity 0.3s ease-in-out;
}
.col-sm-6{
  
  margin-top: 2rem;
}
.img-box2:hover a {
  opacity: 1;
}
.img-fluid{
  
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
/* Botão "View All" */
.btn-box {
  text-align: center;
  margin-top: 45px;
}

.view-all-btn {
  background-color: #e45441;
  color: white;
  border: none;
  padding: 10px 45px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.view-all-btn:hover {
  background-color: #b94333;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.view-all-btn:focus {
  outline: none;
}

.service_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 45px;
  position: relative;
}

.service_section .box .img-box {
  position: relative;
  width: 145px;
  height: 145px;
  margin-bottom: -72.5px;
}

.service_section .box .img-box img {
  width: 100%;
  border-radius: 100%;
  border: 5px solid #ffffff;
}
.img-service {
  position: relative; /* Necessário para aplicar z-index */
  z-index: 10;        /* Coloca a imagem à frente dos outros elementos */
}
.service_section .box .detail-box {
  background-color: #3a3f58;
  color: #ffffff;
  padding: 97.5px 25px 25px 25px;
}

.service_section .box .detail-box h5 {
  margin-bottom: 0;
  font-weight: 600;
}

.service_section .box .detail-box p {
  font-size: 15px;
  margin-top: 12px;
  margin-bottom: 15px;
}

.service_section .box a {
  display: inline-block;
  padding: 8px 30px;
  background-color: #e45441;
  color: #ffffff;
  border-radius: 5px;
  border: 1px solid #e45441;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.service_section .box a:hover {
  background-color: transparent;
  color: #e45441;
}

.blog_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog_section .heading_container h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.blog_section .box {
  margin-top: 55px;
  width: 100%;
  height: 300px;
  background-color:#3a3f58;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  
}

.blog_section .box .img-box {
  position: relative;
  overflow: hidden;
  object-fit: cover;
  width: 100%;
  height: 100%;
  
}

.blog_section .box .img-box img {
  width: 100%;
  
}

.blog_section .box .detail-box {
  
  padding: 15px;
}


.blog_section .box .detail-box h5 {
  font-size: 26px;
  font-weight: bold;
  font-family: "octin sports", sans-serif;
  color: #ffffff;
}

.blog_section .box .detail-box p {
  font-size: 15px;
  color: #ffffff;
}

.blog_section .box .detail-box a {
  display: inline-block;
  padding: 7px 20px;
  background-color: #3a3f58;
  color: #ffffff;
  border-radius: 0;
  border: 1px solid #3a3f58;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.blog_section .box .detail-box a:hover {
  background-color: transparent;
  color: #3a3f58;
}

.client_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 45px 0;
  border-radius: 15px;
}

.client_section .box .img-box {
  border-radius: 100%;
  min-width: 175px;
  max-width: 175px;
  overflow: hidden;
  margin: 0 25px;
  margin-bottom: -82.5px;
  position: relative;
  border: 7px solid #ffffff;
}

.client_section .box .img-box img {
  width: 100%;
}

.client_section .box .detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #3a3f58;
  padding: 112.5px 25px 25px 25px;
  color: #ffffff;
}

.client_section .box .detail-box .name img {
  width: 25px;
  margin-bottom: 5px;
}

.client_section .box .detail-box .name h6 {
  color: #e45441;
  font-weight: 600;
  font-size: 20px;
}

.client_section .carousel_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/* Nova classe para os detalhes do serviço */
.service-detail-box {
  background-color: #3a3f58;
  position: relative;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}
.service-detail-box h5{
  text-decoration-color: #000000;
  text-transform: uppercase;
  text-decoration: solid;
  margin-top: 5.1rem;
color: #ffffff;
}
.service-detail-box p{
  font-size: 1rem;
  margin: 1.4rem;
  color: #ffffff;
}
.read-more-btn {
  position: absolute;
  bottom: 10px; 
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  background-color: #e45441;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 1px solid #e45441;
}

.read-more-btn:hover {
  background-color: transparent;
  color: #e45441;
  border-color: #e45441;
}


.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  position: unset;
  width: 45px;
  height: 45px;
  border: none;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
  background-color: #e45441;
  background-position: center;
  border-radius: 5px;
  margin: 0 2.5px;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: #3a3f58;
}

.client_section .carousel-control-next {
  left: initial;
}

.contact_section {
  position: relative;
}

.contact_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_section .form_container {
  background-color: #3a3f58;
  padding: 45px;
  margin-bottom: -90px;
  border: 5px solid #ffffff;
  color: #ffffff;
}

.contact_section .form_container .heading_container {
  margin-bottom: 30px;
}

.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  outline: none;
  color: #101010;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

.contact_section .form_container input::-webkit-input-placeholder {
  color: #333;
}

.contact_section .form_container input:-ms-input-placeholder {
  color: #333;
}

.contact_section .form_container input::-ms-input-placeholder {
  color: #333;
}

.contact_section .form_container input::placeholder {
  color: #333;
}

.contact_section .form_container input.message-box,
.contact_section .form_container textarea.message-box {
  height: 120px;
  resize: vertical;
  font-family: "Poppins", sans-serif;
}

.contact_section .form_container .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}

.contact_section .form_container button {
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 55px;
  background-color: #e45441;
  color: #ffffff;
  border-radius: 0px;
  border: 1px solid #e45441;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.contact_section .form_container button:hover {
  background-color: transparent;
  color: #e45441;
}

.contact_section .form_container button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact_section .subscribe-box h3 {
  color: #3a3f58;
  font-weight: 700;
  text-transform: uppercase;
}

.contact_section .subscribe-box p {
  font-size: 1.3rem;
  color: #777;
  font-weight: 300;
}

.contact_section .subscribe-box form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact_section .subscribe-box form input {
  background-color: #ccc;
  height: 50px;
  padding-left: 15px;
  outline: none;
  color: #ffffff;
  border: none;
  width: 100%;
  margin-bottom: 15px;
}

.contact_section .subscribe-box form input::-webkit-input-placeholder {
  color: #555;
}

.contact_section .subscribe-box form input:-ms-input-placeholder {
  color: #555;
}

.contact_section .subscribe-box form input::-ms-input-placeholder {
  color: #555;
}

.contact_section .subscribe-box form input::placeholder {
  color: #555;
}

.contact_section .subscribe-box form button {
  background-color: transparent;
  color: #3a3f58;
  text-transform: uppercase;
  outline: none;
  border: none;
  display: inline-block;
  padding: 10px 45px;
  background-color: #3a3f58;
  color: #ffffff;
  border-radius: 0;
  border: 1px solid #3a3f58;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.contact_section .subscribe-box form button:hover {
  background-color: transparent;
  color: #3a3f58;
}

.info_section {
  background-color: #262939;
  color: #ffffff;
  padding: 165px 0 75px 0;
}

.info_section.innerpage_info_section {
  padding: 75px 0;
}

.info_section h4 {
  margin-bottom: 15px;
}

.info_section .info_contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  margin-bottom: 10px;
}

.info_section .info_contact a i {
  margin-right: 5px;
  width: 25px;
}

.info_section .info_contact a:hover:hover {
  color: #e45441;
}

.info_section .social_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info_section .social_box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #ffffff;
  color: #ffffff;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 2rem;
}

.info_section .social_box a:hover {
  font-size: 1.8rem;
  color: #e45441;
  border-color: #e45441;
}

/* footer section*/
.footer_section {
  position: relative;
  text-align: center;
  padding: 40px 0 25px 0;
}

.footer_section p {
  color: #000000;
  padding: 0 0 20px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}

/* Créditos do desenvolvedor */
.dev-credits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #3a3f58 0%, #262939 100%);
  box-shadow: 0 4px 15px rgba(58, 63, 88, 0.3);
  border: 1px solid rgba(228, 84, 65, 0.3);
  margin-top: 20px;
  transition: all 0.3s ease;
}

.dev-credits:hover {
  box-shadow: 0 6px 20px rgba(58, 63, 88, 0.4);
  border-color: rgba(228, 84, 65, 0.5);
}

.dev-credits > span {
  white-space: nowrap;
  color: #ffffff;
  font-size: 0.9rem;
}

.dev-credits strong {
  color: #e45441;
  font-weight: 600;
}

.dev-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.dev-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #e45441, #c53e2d);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(228, 84, 65, 0.3);
}

.dev-links a:hover {
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
  color: #e45441;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(228, 84, 65, 0.5);
}

.dev-links a:focus {
  outline: 2px solid #e45441;
  outline-offset: 2px;
}

/* Animações suaves para elementos */
@media (prefers-reduced-motion: no-preference) {
  .gallery-item {
    animation: fadeIn 0.6s ease-out;
  }
  
  .service_section .box,
  .about_section .detail-box {
    animation: fadeInUp 0.6s ease-out;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Melhorias de acessibilidade */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #e45441;
  outline-offset: 2px;
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  margin-top: 0;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Melhorias de responsividade para formulário */
@media (max-width: 767px) {
  .contact_section .form_container {
    padding: 30px 20px;
  }
  
  .contact_section .form_container input,
  .contact_section .form_container textarea {
    font-size: 16px; /* Evita zoom no iOS */
  }
  
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }
}
/*# sourceMappingURL=style.css.map */