/* 
Theme Name: Mosten v1.1.0
Theme URI: https://mosten.io/
Author: Lucas Pereira
Description: Mosten is a WordPress theme for institucional website for Mosten Group.
Version: 1.1.0
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter Tight", sans-serif;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--font-color);
}

b {
  color: inherit;
}

/* colors */

:root {
  --primary-color: #fe7040;
  --secondary-color: #612cb5;
  --font-color: #23231e;
  --tertiary-color: #1a1a16;
  --quaternary-color: #cb6bf3;
  --dark-gray-color: #c3c3b7;
  --gray-color: #edf7ef;
  /* --senary-color: #f5f5f5;
    --septenary-color: #f5f5f5;
    --octonary-color: #f5f5f5;
    --nonary-color: #f5f5f5;
    --denary-color: #f5f5f5; */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 25px;
  text-align: center;
}

.section-description {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.col-3 {
  width: calc(25% - 20px);
  margin-bottom: 40px;
}

.col-4 {
  width: calc(33.333% - 20px);
  margin-bottom: 40px;
}

.col-6 {
  width: calc(50% - 20px);
  margin-bottom: 40px;
}

.col-8 {
  width: calc(66.666% - 20px);
  margin-bottom: 40px;
}

.col-12 {
  width: calc(100% - 20px);
  margin-bottom: 40px;
}

.color-quaternary {
  color: var(--quaternary-color);
}

.botao-laranja {
  background-color: var(--primary-color);
  /* Cor de fundo do botão */
  color: white;
  /* Cor do texto do botão */
  border: none;
  /* Remove a borda */
  padding: 13px 20px;
  /* Espaçamento interno */
  border-radius: 8px;
  /* Borda arredondada */
  cursor: pointer;
  font-weight: 500;
  /* Muda o cursor ao passar o mouse */
  font-size: 18px;
}

.mobile {
  display: none !important;
}

/* Paginação */

.pagination {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.pagination .current {
  background-color: var(--secondary-color);
  border-radius: 100%;
  color: white !important;
  font-weight: bold;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .page-numbers:hover {
  color: var(--secondary-color);
}

/* Estilo inicial para o efeito de blur */
[data-aos="custom-unblur"] {
  opacity: 0;
  filter: blur(10px);
  /* Começa embaçado */
  transition: opacity 0.1s ease-out, filter 0.1s ease-out;
  /* Transição suave */
}

/* Estado final quando animado pelo AOS */
[data-aos="custom-unblur"].aos-animate {
  opacity: 1;
  filter: blur(0);
  /* Fica nítido */
}

.form-message {
  width: 100%;
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
  text-align: center;
}

.form-message.error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.form-message.success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

@media screen and (max-width: 1024px) {
  br {
    display: none !important;
  }
  br.keep,
  h2 br.keep,
  h3 br.keep {
    display: inline !important;
  }

  .desktop {
    display: none !important;
  }

  .mobile {
    display: block !important;
  }

  .pagination {
    flex-wrap: wrap;
  }
}
