.elementor-13 .elementor-element.elementor-element-b58ec5a{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--margin-top:100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-13 .elementor-element.elementor-element-b58ec5a.e-con{--align-self:center;}/* Start custom CSS for html, class: .elementor-element-53da0d3 *//* Garantindo que o fundo cubra todo o viewport */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /* Elimina barras de rolagem indesejadas */
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  text-align: center;
  -webkit-overflow-scrolling: touch; /* Suporte suave para iOS */
}

.container {
  max-width: 1200px;
  padding: 20px;
  width: 100%; /* Ajusta largura para dispositivos menores */
}

.logo img {
  width: 300px;
  max-width: 90%;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #93172D;
}

p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #95182E;
}

.contact {
  font-size: 1.2rem;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact a {
  color: #008F95;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}

.contact a:hover {
  color: #93172D /* bordô do logo */
}

.contact img {
  width: 24px;
  height: 24px;
}

/* Responsividade */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .contact {
    font-size: 1rem;
  }

  .contact img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.9rem;
  }

  .contact {
    flex-direction: column; /* Empilha os contatos em telas pequenas */
    gap: 10px;
  }

  .contact a {
    gap: 5px;
  }

  .logo img {
    width: 250px; /* Reduz o tamanho do logo */
  }
}/* End custom CSS */