/*
 Theme Name: Astra Child
 Template: astra
 Version: 1.0
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {
  --bg: #fffefe;
  --card: #0b1220;
  --muted: #93a3bf;
  --accent: #5b21b6;
  --skeleton: #1f2937;
  --skeleton-highlight: #2b3a52;
  --radius: 5px;
  --gap: 20px;
  --container: 1100px;
  --primary-color: #285476;
  --header-bg: white;
  --text-color: black;
}

.blog_title {
  font-family: "Poppins", "Outfit", sans-serif;
  color: var(--primary-color) !important;
}
.blog_card_content h3 {
  font-family: "Poppins", "Outfit", sans-serif;
}

#header_main_content_links a:hover {
  color: var(--primary-color) !important;
}

/* Container da paginação */
.load_more_container {
  text-align: center;
  margin-top: 40px;
}

/* Links da paginação */
.load_more_container .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 20px;
  border-radius: 4px;
  background-color: var(--muted, #93a3bf);
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
  font-weight: 500;
}

/* Hover */
.load_more_container .page-numbers:hover {
  background-color: var(--primary-color, #285476);
  color: white;
}

/* Página atual */
.load_more_container .page-numbers.current {
  background-color: var(--primary-color, #285476);
  color: white;
  font-weight: 600;
}

body {
  font-family: "Poppins", "Outfit", sans-serif;
  background-color: var(--bg);
  color: var(--text-color);
  line-height: 1.7;
}

.post-card {
  background-color: var(--card);
  color: black;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  margin: 40px auto;
  max-width: var(--container);
}

.post-header {
  margin-bottom: 30px;
  text-align: center;
}

.post-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-family: "Poppins", "Outfit", sans-serif;
}

.post-meta {
  font-size: 0.875rem;
  color: var(--muted);
  display: flex;
  justify-content: center;
  gap: 15px;
}

.post-thumbnail {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.post-thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.entry-content {
  font-size: 1.125rem;
  color: black;
}

@media (max-width: 768px) {
  .post-card {
    padding: 20px;
  }

  .post-title {
    font-size: 2rem;
  }
}

/* Remove or customize the selection color */
::selection {
  background: transparent; /* Removes background color */
  color: inherit; /* Keeps the default text color */
}

/* Optional: customize selection color */
::selection {
  background: #285476; /* Set your desired background color */
  color: white; /* Set text color while selected */
}

#error-404 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#error-404 p,
h1 {
  font-family: "Poppins", "Outfit", sans-serif;
}

#error-404 p {
  color: #000;
}

#error-404 p a {
  color: #000;
  text-decoration: none;
}

#error-404 p a:hover {
  color: var(--primary-color) !important;
}

/* Center Gutenberg full-size images */
.wp-block-image {
  display: flex;
  justify-content: center;
  margin-bottom: 30px; /* optional spacing */
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius); /* optional */
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {
  --bg: #fffefe; /* page background */
  --card: #0b1220; /* section bg */
  --muted: #93a3bf;
  --accent: #5b21b6;
  --skeleton: #1f2937;
  --skeleton-highlight: #2b3a52;
  --radius: 12px;
  --gap: 20px;
  --container: 1100px;
  --primary-color: #285476; /* Define primary color here for easy replacement */
  --header-bg: white; /* Background for main header, adjustable */
  --text-color: black; /* Text color, adjustable*/
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: #e6eef8;
  background-color: #fffefe;
  -webkit-font-smoothing: antialiased;
}

#border_text {
  font-size: 55px;
  font-weight: 600;
  line-height: 1.2em;
  padding-left: 20px;
  margin: 10px 0 20px 0;
  border-left: 3px #fff solid;
}

#header {
  background: var(--primary-color);
}

#header_contact {
  height: 41px;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.3s ease-in-out;
}

#header_contact.hidden {
  top: -40px;
}

#header_contact i {
  font-size: 16px;
}

#header_contact span {
  font-size: 14px;
}

#header_contact_content {
  max-width: 1280px;
  width: 100%;
  display: flex;
  justify-content: start;
  gap: 10px;
}

#header_main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: var(--header-bg);
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  height: 104px;
  box-sizing: border-box;
  z-index: 999;
  transition: top 0.3s ease-in-out;
}

#header_main_content {
  max-width: 1280px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  gap: 10px;
}

#header_main.sticky-top {
  top: 0;
}

#header_main_content_links {
  list-style: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: transparent;
  box-sizing: border-box;
  box-shadow: none;
  text-decoration: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  white-space: nowrap;
  flex-grow: 1;
  text-transform: uppercase;
  text-transform: Sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: 2.1px;
  padding-left: 12px;
  padding-right: 12px;
}

.text_withborder_h3 {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
  color: rgb(40, 84, 118);
  margin-bottom: 20px;
  margin-top: 0;
  text-transform: uppercase;
}

.text_withborder_h2 {
  font-size: 38px;
  font-weight: 600;
  color: #000;
  padding-left: 20px;
  border-left: rgb(40, 84, 118) 3px solid;
  line-height: 1.2em;
  margin-top: 15px;
  margin-bottom: 35px;
  display: -webkit-box;
  overflow: hidden;
}

.subtitle {
  font-size: 18px;
  color: #285476;
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2em;
  letter-spacing: 1px;
}

.title {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 38px;
  font-weight: 600;
  color: #0f101d;
}

.right {
  flex: 1;
  padding-left: 20px;
}

.description {
  font-size: 15px;
  color: #333;
  margin: 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-color);
}

.logo_img {
  aspect-ratio: 191/84;
  max-width: 191px;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 16px;
}

.whatsapp-button {
  box-sizing: border-box;
  padding: 12px 24px !important;
  text-align: center;
  transition: all 0.3s;
  transition-duration: 0.3s;
  transition-property: transform;
  box-shadow: none;
  text-decoration: none;
  width: auto;
  height: fit-content;
  display: flex;
  align-items: center;
  gap: 6px;
  border-style: none;
  border-radius: 3px 3px 3px 3px;
  background-color: #008069 !important;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 0.5px;
  color: #fff;
}

.whatsapp-button i {
  font-size: 16px;
}

.whatsapp-button {
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.whatsapp-button:hover {
  transform: scale(0.95);
  opacity: 0.9;
}

.svgContent {
  width: 14px;
  height: 100%;
  display: flex;
  justify-content: center;
  fill: rgb(255, 255, 255);
}

/* Placeholder content to enable scrolling */
.content {
  height: 2000px;
  padding: 80px 20px 20px; /* Increased top padding to account for fixed headers */
  background: linear-gradient(white, lightgray);
}

.footer_ul {
  margin-left: 0;
}

#footer {
  background: var(--bg);
  color: black;
  padding: 40px 20px;
}
.footer_container {
  max-width: 1280px;
  margin: 0 auto;
}
.footer_columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer_column {
  flex: 1;
  margin: 20px 15px 20px;
}
.footer_column1 {
  min-width: 35vw;
}
.footer_column1 img {
  width: 100%;
  max-width: 200px;
  display: block;
  margin-bottom: 20px;
}
.footer_column ul {
  list-style: none;
  padding: 0;
}
.footer_column li {
  margin-bottom: 10px;
}
.footer_column h3 {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 20px;
  font-family: "Poppins", "Outfit", sans-serif;
}
.footer_column p {
  font-size: 14px;
}
.footer_service_item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer_contact_item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 5px;
}
.footer_contact_item p {
  margin: 0;
}
.footer_social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer_social svg {
  width: 36px;
  height: 36px;
}
.footer_hr {
  border-top: 1px solid #555;
  margin: 20px 0;
}
.footer_copyright {
  text-align: center;
  font-size: 13px;
}
@media (max-width: 768px) {
  .footer_columns {
    flex-direction: column;
  }
  .footer_column {
    margin: 0 0 20px;
  }
  .logo_img {
    aspect-ratio: 149/65 !important;
    max-width: 149px !important;
  }

  .site-content {
  }
}

.site-main {
  padding: 0 !important;
  background-color: transparent !important;
}

.site-main .post-card {
  background-color: transparent !important;
  box-shadow: none !important;
}

.footer_ul {
  font-size: 14px;
}

.footer_ul a {
  text-decoration: none;
  color: inherit;
}

.footer_ul a:hover {
  opacity: 0.7;
}

.footer_column {
  flex: 1;
}

.footer_column:nth-child(3) {
  flex: 1.7;
}

.ast-container {
  height: 100% !important;
  min-height: 55vh;
  display: felx
}

.site-content {
  margin-top: 0vh !important;
  min-height: 55vh;
}

.blog_container {
  max-width: 1280px;
  margin: 0px auto;
  padding: 0 15px;
}

.blog_title {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  height: 128px;
}

.blog_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.blog_card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: black;
}

.blog_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.blog_card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog_card_content {
  padding: 18px;
}

.blog_card_content h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: bold;
}

.blog_card_content p {
  margin: 0;
  color: #555;
  line-height: 1.4;
}

.load_more_container {
  text-align: center;
  margin-top: 40px;
}

.load_more_btn {
  background-color: var(--primary-color);
  color: white;
  margin: 0 auto;
  cursor: pointer;
  box-sizing: border-box;
  padding: 12px 24px !important;
  text-align: center;
  transition: all 0.3s;
  transition-duration: 0.3s;
  transition-property: transform;
  box-shadow: none;
  text-decoration: none;
  width: auto;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center !important;
  gap: 6px;
  border-style: none;
  border-radius: 3px 3px 3px 3px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 0.5px;
}

.load_more_btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

#burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
#burger span {
  width: 28px;
  height: 3px;
  background: #000;
  transition: 0.3s;
  border-radius: 3px;
}

/* ANIMATION STATES */
#burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}
#burger.active span:nth-child(2) {
  opacity: 0;
}
#burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}

/* MOBILE NAV */
#mobile_menu {
  display: none;
  flex-direction: column;
  background: white;
  width: 100%;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}
#mobile_menu a {
  padding: 12px 0;
  font-size: 18px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* RESPONSIVE BEHAVIOR */
@media (max-width: 900px) {
  #header_main_content_links {
    display: none;
  } /* hide desktop menu */
  #burger {
    display: flex;
  } /* show burger */
}

.blog_grid {
  text-align: center;
  color: black;
}
#footer {
  background: var(--bg);
  color: black;
  padding: 40px 20px;
}
.footer_container {
  max-width: 1280px;
  margin: 0 auto;
}
.footer_columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer_column {
  flex: 1;
  margin: 20px 15px 20px;
}
.footer_column1 {
  min-width: 35vw;
}
.footer_column1 img {
  width: 100%;
  max-width: 200px;
  display: block;
  margin-bottom: 20px;
}
.footer_column ul {
  list-style: none;
  padding: 0;
}
.footer_column li {
  margin-bottom: 10px;
}
.footer_column h3 {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 500;
}
.footer_column p {
  font-size: 14px;
}
.footer_service_item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer_contact_item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 5px;
}
.footer_contact_item p {
  margin: 0;
}
.footer_social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer_social svg {
  width: 36px;
  height: 36px;
}
.footer_hr {
  border-top: 1px solid #555;
  margin: 20px 0;
}
.footer_copyright {
  text-align: center;
  font-size: 13px;
}

/* Tablet layout: first column full width, others below in a row */
@media (max-width: 1024px) {
  .footer_columns {
    flex-direction: row; /* keep row direction */
    flex-wrap: wrap; /* allow wrapping to next line */
    gap: 20px; /* spacing between columns */
  }
  .footer_column1 {
    flex: 0 0 100% !important; /* take full width on first row */
    width: 100% !important;
  }
  /* other footer columns share the second row */
  .footer_columns .footer_column:not(.footer_column1) {
    flex: 1 1 calc(33.333% - 20px);
    margin: 0; /* rely on gap for spacing */
    min-width: 260px; /* avoid squishing too much */
  }
}

@media (max-width: 768px) {
  .footer_column1 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer_columns {
    flex-direction: column;
  }
  .footer_column {
    margin: 0 0 20px;
  }
}

.footer_ul {
  font-size: 14px;
}

.footer_ul a {
  text-decoration: none;
  color: inherit;
}

.footer_ul a:hover {
  opacity: 0.7;
}

.footer_column {
  flex: 1;
}

.footer_column:nth-child(3) {
  flex: 1.7;
}
