@charset "UTF-8";
/*
Theme Name: Escola Mecânico
Author: TheCreators
Version: 1.0.0
Template: spellblocks
*/
h1,
h2,
h3,
strong,
b {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-weight: 700;
}

html,
body {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-weight: 400;
}

h1,
h2 {
  font-size: 32px;
}
@media (max-width: 600px) {
  h1,
  h2 {
    font-size: 20px !important;
  }
}

p {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 0 !important;
}
@media (max-width: 600px) {
  p {
    font-size: 12px !important;
  }
}

.custom-logo {
  height: 36px;
  width: auto;
}
@media (max-width: 1023px) {
  .custom-logo {
    height: 28px;
  }
}

.hero-slider {
  position: relative;
  height: 50vh;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .hero-slider {
    height: 70vh;
    min-height: 500px;
  }
}
.hero-slider .hero-swiper-container {
  width: 100%;
  height: 100%;
}
.hero-slider .hero-swiper-container .swiper-wrapper {
  height: 100%;
}
.hero-slider .hero-swiper-container .swiper-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.hero-slider .hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-slider .hero-slide:nth-child(1) {
  background: linear-gradient(135deg, #094528 0%, #006033 100%);
}
.hero-slider .hero-slide:nth-child(2) {
  background: linear-gradient(135deg, #287847 0%, #7bcb4a 100%);
}
.hero-slider .hero-slide:nth-child(3) {
  background: linear-gradient(135deg, #006033 0%, #287847 100%);
}
.hero-slider .hero-slide:nth-child(4) {
  background: linear-gradient(135deg, #7bcb4a 0%, #094528 100%);
}
.hero-slider .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, #000 100%);
  z-index: 1;
}
.hero-slider .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: start;
  padding-right: 127px;
}
@media (max-width: 1023px) {
  .hero-slider .container {
    padding: 0;
  }
}
.hero-slider .hero-content {
  width: 450px;
  height: auto;
  background-color: #f3f3f3;
  color: #000;
  border: 2px solid #006033;
}
@media (max-width: 1023px) {
  .hero-slider .hero-content {
    width: 260px;
  }
}
.hero-slider .hero-title {
  font-family: Kode Mono;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #006033;
  padding: 24px 24px 0 24px;
}
@media (max-width: 600px) {
  .hero-slider .hero-title {
    font-size: 32px !important;
    padding: 12px 12px 0 12px;
  }
}
.hero-slider .hero-subtitle {
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  color: #2f2f2f;
  line-height: 130%;
  letter-spacing: 0%;
  padding: 24px 24px 0 24px;
}
@media (max-width: 600px) {
  .hero-slider .hero-subtitle {
    font-size: 16px !important;
    padding: 12px 12px 0 12px;
  }
}
.hero-slider .hero-actions {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
.hero-slider .hero-actions .btn-custom {
  width: 100%;
  padding: 12px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: left;
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  background: #006033;
  line-height: 130%;
  letter-spacing: 0%;
  color: #fff !important;
}
@media (max-width: 600px) {
  .hero-slider .hero-actions .btn-custom {
    font-size: 16px;
    padding: 12px 12px;
  }
}
.hero-slider .hero-actions .btn-custom.secondary {
  background: #dbff3d;
  color: #032d19 !important;
}
.hero-slider .hero-actions .btn-custom.secondary:hover {
  background: #fff;
  color: #287847;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}
.hero-slider .hero-content {
  animation: fadeInUp 1s ease-out;
}
.hero-slider .swiper-slide {
  width: 100% !important;
}
.hero-slider .swiper-slide-active .hero-title {
  animation: slideInLeft 0.8s ease-out 0.2s both;
}
.hero-slider .swiper-slide-active .hero-subtitle {
  animation: slideInLeft 0.8s ease-out 0.4s both;
}
.hero-slider .swiper-slide-active .hero-actions {
  animation: slideInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header-top {
  background: #fff;
  border-bottom: 1px solid #f3f5f5;
  padding: 16px 0;
}
@media (max-width: 600px) {
  .header-top {
    display: none;
  }
}
.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}
.header-top .contact-info {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-top .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666666;
  font-size: 14px;
}
.header-top .contact-info .contact-item i {
  color: #287847;
}
.header-top .social-links {
  display: flex;
  gap: 16px;
}
.header-top .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #f3f5f5;
  border-radius: 50%;
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.header-top .social-links a:hover {
  background: #287847;
  color: #fff;
  transform: translateY(-2px);
}

.header-top-mob {
  display: none;
}
@media (max-width: 600px) {
  .header-top-mob {
    display: block;
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #f3f5f5;
  }
  .header-top-mob .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
  }
  .header-top-mob .mobile-contact {
    font-size: 14px;
    color: #666666;
  }
  .header-top-mob .search-form .search-field {
    width: 200px;
  }
}

.site-header {
  position: relative;
  z-index: 1000;
}
.site-header .header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.site-header .header-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 600px) {
  .site-header .logo {
    max-width: 150px;
  }
  .site-header .header-actions {
    gap: 16px;
  }
  .site-header .header-actions .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}
.navbar {
  padding: 0px !important;
  flex-wrap: wrap !important;
  font-weight: bold;
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
}
.navbar .header-main {
  padding: 19px;
}
.navbar .header-bottom {
  background-color: #f3f5f5;
  width: 100vw;
}
.navbar .header-bottom .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.navbar .header-top {
  background-color: #fff;
  width: 100vw;
  min-height: 40px;
}
.navbar .header-top .container {
  min-height: 50px;
}
.navbar .header-top .container .fa-brands {
  font-size: 32px;
  margin-right: 10px;
}
.navbar .dropdown-menu {
  border-radius: unset;
  padding: 0;
}

.navbar .dropdown-menu {
  top: 32px;
  background-color: #006033;
  border: white 1px solid;
}
.navbar .dropdown-menu .dropdown-item {
  font-weight: bold;
}
.navbar .navbar-nav .nav-item {
  position: relative;
}
.navbar .navbar-nav .nav-item.current-menu-item:not(:last-child) .nav-link,
.navbar .navbar-nav .nav-item.current-menu-parent:not(:last-child) .nav-link {
  color: #7bcb4a !important;
  font-weight: 700;
  position: relative;
}
.navbar .navbar-nav .nav-item.current-menu-item:not(:last-child) .nav-link i,
.navbar .navbar-nav .nav-item.current-menu-parent:not(:last-child) .nav-link i {
  color: #7bcb4a !important;
}
.navbar
  .navbar-nav
  .nav-item.current-menu-item:not(:last-child)
  .nav-link::after,
.navbar
  .navbar-nav
  .nav-item.current-menu-parent:not(:last-child)
  .nav-link::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #7bcb4a;
  border-radius: 50%;
  display: block;
}
.navbar .navbar-nav .nav-item .nav-link {
  transition: all 0.3s ease;
}
/* .navbar .navbar-nav .nav-item .nav-link:hover {
  color: #7bcb4a !important;
}
.navbar .navbar-nav .nav-item .nav-link:hover i {
  color: #7bcb4a !important;
} */
@media (max-width: 1023px) {
  .navbar .header-bottom .nav-link {
    background: #287847;
    color: #fff !important;
    padding: 20px;
  }
  .navbar .navbar-collapse {
    background: #006033;
    border-left: 4px solid #0091ff;
    position: absolute;
    top: 76px;
    right: 0;
    width: 50vw;
    min-width: 220px;
    max-width: 320px;
    z-index: 9999;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
    border-left: none;
  }
  .navbar .navbar-collapse.show {
    display: block !important;
  }
  .navbar .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 0;
    margin: 0;
    gap: 0 !important;
  }
  .navbar .navbar-nav .menu-item {
    width: 100%;
    padding: 12px 0;
    font-size: 18px;
    color: #fff !important;
    background: transparent;
    text-align: right;
    justify-content: end;
    flex-direction: column;
  }
  .navbar .navbar-nav .current-menu-item:not(:last-child) {
    color: #b6ff7a !important;
    font-weight: bold;
    background: rgba(182, 255, 122, 0.1);
    font-weight: 700;
    position: relative;
  }
  .navbar .navbar-nav .current-menu-item:not(:last-child) i {
    color: #b6ff7a !important;
  }
  .navbar .navbar-nav .current-menu-item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #b6ff7a;
  }
  .navbar .navbar-nav .button {
    width: 100%;
    background: #7bcb4a !important;
    color: #fff !important;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    border-radius: 0;
    border-color: #7bcb4a !important;
    font-weight: 400;
    bottom: 0;
    left: 0;
    padding: 16px 0;
    margin: 0;
    justify-content: center;
  }
}

.nav-link {
  padding: 0 !important;
}

.button {
  width: auto;
  height: 42px;
  border-radius: 30px;
  border: 1px solid #fff;
  background: #7bcb4a;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 24px !important;
}

.em-brands-section {
  background-color: #e8e8e8;
  padding: 40px 0;
}
.em-brands-section.bg {
  background-image: url("https://escoladomecanico.com.br///wp-content/uploads/2025/10/Rectangle-25.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #fff;
}
.em-brands-section.color {
  background-color: #fff;
}
@media (max-width: 1023px) {
  .em-brands-section {
    padding: 16px 0;
  }
}
.em-brands-section .em-brands-title {
  font-family: "Kode Mono", monospace, sans-serif;
  color: #383838;
  font-weight: 700;
  font-size: 32px;
}
.em-brands-section .em-brands-subtitle {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 16px;
  color: #696969;
  max-width: 700px;
  margin: 10px auto 30px;
}
.em-brands-section .em-brands-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 16px;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .em-brands-section .em-brands-logos {
    gap: 29px;
  }
}
.em-brands-section .em-brand-logo {
  object-fit: contain;
  transition: all 0.3s ease;
  /* max-height: 140px; */
}
.em-brands-section .em-brand-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}
/* @media (max-width: 1023px) {
  .em-brands-section .em-brand-logo {
    height: 40px;
    max-width: 120px;
  }
} */
.em-brands-section.color .em-brand-logo {
  filter: none;
}
.em-brands-section.color .em-brand-logo:hover {
  transform: scale(1.05);
}

.em-skills-section {
  background: #094528;
  position: relative;
  padding: 56px 0 40px;
  color: #e8ffe1;
}
@media (max-width: 1023px) {
  .em-skills-section {
    padding: 16px 0;
  }
}
.em-skills-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.12) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.3;
}
.em-skills-section .container {
  position: relative;
  z-index: 1;
}
.em-skills-section .em-skills-header {
  margin-bottom: 24px;
}
.em-skills-section .em-skills-title {
  font-family: "Kode Mono", monospace, sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 32px;
}
.em-skills-section .em-skills-subtitle {
  color: #11c46a;
  margin-top: 6px;
  margin-bottom: 8px;
}
.em-skills-section .em-skills-container-grid {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.em-skills-section .em-skills-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 601px) and (max-width: 1023px) {
  .em-skills-section .em-skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .em-skills-section .em-skills-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.em-skills-section .em-skills-grid {
  margin: 12px auto 32px;
}
@media (max-width: 1023px) {
  .em-skills-section .em-skills-grid.swiper {
    padding-bottom: 50px;
  }
}
.em-skills-section .em-skill-card {
  background: #fff;
  color: #1a1a1a;
  border-radius: 4px;
  padding: 18px 18px 22px;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.12);
  min-height: 260px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 240px;
  transition: transform 0.3s ease;
}
.em-skills-section .em-skill-card:hover {
  transform: scale(1.02);
}
.em-skills-section .em-skill-card.swiper-slide-next {
  opacity: 0.4;
}
.em-skills-section .em-skill-card h3 {
  font-family: "Kode Mono", monospace, sans-serif;
  color: #00974b;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
}
.em-skills-section .em-skill-card p {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #2f2f2f;
  line-height: 130%;
  letter-spacing: 0%;
}
.em-skills-section .em-skill-icon {
  color: #1f7c50;
  font-size: 22px;
}
@media (max-width: 1023px) {
  .em-skills-section .em-skills-pagination {
    bottom: 10px !important;
  }
}

.em-stats {
  gap: 32px;
  margin-top: 10px;
  color: #dbff8a;
  flex-wrap: wrap;
}
.em-stats .em-stats-title {
  font-family: "Kode Mono", monospace, sans-serif;
  color: #dbff3d;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 16px;
}
.em-stats .em-stats-subtitle {
  color: #fff;
  margin-bottom: 24px;
}
.em-stats .em-stats-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
}
.em-stats .em-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: start;
  max-width: 334px;
  transition: transform 0.3s ease;
}
.em-stats .em-stat:hover {
  transform: scale(1.02);
}
.em-stats .em-stat .num {
  font-family: "Kode Mono", monospace, sans-serif;
  font-weight: 700;
  font-size: 96px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  color: #dbff3d;
}
.em-stats .em-stat .label {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #dbff3d;
  line-height: 130%;
  letter-spacing: 0%;
}

.page-template-page-franqueado .em-stats .em-stat .label {
  color: #fff;
}

.page-template-page-franqueado .em-stats .em-stat {
  max-width: fit-content;
}

@media (max-width: 600px) {
  .page-template-page-franqueado .em-fundadora-image {
    min-height: 278px !important;
  }
  .page-template-page-franqueado .em-fundadora-description p {
    text-align: justify;
    font-size: 16px !important;
  }
  .page-template-page-franqueado .em-stats .num:first-child {
    font-size: 64px;
  }
  .page-template-page-franqueado .em-stats .num:last-child {
    font-size: 48px;
  }
}

.page-template-page-franqueado .em-about-description p {
  margin-top: 0 !important;
  font-size: 20px !important;
}

.page-template-page-franqueado .em-about-title {
  margin-top: 0 !important;
  font-size: 48px !important;
}

.em-courses-section {
  background: #fff;
  padding: 64px 0;
}
.page-template-page-franqueado .em-about-description p {
  margin-top: 15px !important;
}
@media (max-width: 600px) {
  .em-courses-section {
    padding: 16px 0;
  }
  .page-template-page-franqueado .em-about-description p {
    margin-top: 15px !important;
    font-size: 12px !important;
  }

  .page-template-page-franqueado .em-about-title {
    margin-top: 0 !important;
    font-size: 20px !important;
  }
}
.em-courses-section.green {
  background: #094528 !important;
}
.em-courses-section.green .em-courses-title {
  color: #dbff3d !important;
}
.em-courses-section.green .em-courses-subtitle {
  color: #fff !important;
}
.em-courses-section.green .em-course-card {
  background: #00974b !important;
  border: 1px solid #006033 !important;
}
.em-courses-section.green .em-course-title {
  color: #dbff3d !important;
}
.em-courses-section.green .em-course-description {
  color: #fff !important;
}
.em-courses-section.green .btn-primary {
  width: 100%;
}

.em-courses-header {
  margin-bottom: 48px;
}

.em-courses-title {
  font-family: "Kode Mono", monospace, sans-serif;
  color: #006033;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .em-courses-title {
    font-size: 24px;
  }
}

.em-courses-subtitle {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  color: #2f2f2f;
  font-size: 18px;
  text-align: center;
  margin: 0 auto 24px;
  max-width: 800px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .em-courses-subtitle {
    font-size: 16px;
    max-width: 100%;
  }
}

.em-courses-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 601px) and (max-width: 1023px) {
  .em-courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .em-courses-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.em-courses-grid {
  gap: 32px;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .em-courses-grid {
    gap: 24px;
    padding: 0 24px;
  }
}

.em-course-card {
  background: #f3f3f3;
  border-radius: 4px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.12);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 320px;
  width: 240px;
  border-color: #006033;
}
.em-course-card:hover {
  transform: translateY(-4px);
}
.em-course-card .btn-primary {
  bottom: 0;
  position: relative;
}

.em-course-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .em-course-icon {
    margin-bottom: 16px;
  }
}

.em-course-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.em-course-title {
  font-family: "Kode Mono", monospace, sans-serif;
  color: #287847;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 8px;
}

.em-course-description {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  color: #2f2f2f;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  margin-bottom: 24px;
  flex: 1;
}

.em-franqueado-page .em-course-card {
  width: 240px;
  height: 228px;
}
.em-franqueado-page .em-courses-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
.em-franqueado-page .em-course-icon {
  width: 24px;
  height: 24px;
  background: #dbff3d;
}

.page-template-page-unidades .em-course-card {
  width: 240px;
  height: 228px;
}

.em-employment-section {
  padding: 32px 0;
  background: #fff;
  background-position: 850px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) {
  .em-employment-section {
    padding: 24px 0;
    background-image: none;
  }
}
.em-employment-section.escola {
  background: #094528;
  background-image: url("https://escoladomecanico.com.br///wp-content/uploads/2025/10/Rectangle-25.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.em-employment-section.escola .escola-bg-2 {
  background: #094528;
  background-image: url("https://escoladomecanico.com.br/wp-content/uploads/2026/01/Group-2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.em-escola-background .escola-bg-2 {
  background-image: url("https://escoladomecanico.com.br/wp-content/uploads/2026/01/Group-2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  background-position-y: 203px;
}
.em-employment-section.escola p,
.em-employment-section.escola li {
  color: #fff !important;
}
.em-employment-section.escola .em-employment-title {
  color: #dbff3d !important;
}
.em-employment-section.escola li:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #dbff3d;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  rotate: 45deg;
}

.em-employment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 0 178px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .em-employment-content {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 32px;
    text-align: center;
  }
}

@media (max-width: 1023px) {
  .em-employment-text {
    order: 2;
  }
}

.em-employment-title {
  color: #00974b;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-family: "Kode Mono", monospace, sans-serif;
}
@media (max-width: 1023px) {
  .em-employment-title {
    font-size: 20px;
  }
}

.em-employment-description {
  margin-bottom: 16px;
}
.em-employment-description p {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  color: #2f2f2f;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px !important;
}
.em-employment-description p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .em-employment-description p {
    font-size: 14px;
  }
}

.em-employment-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.em-employment-list li {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  color: #2f2f2f;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}
.em-employment-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #287847;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
@media (max-width: 1023px) {
  .em-employment-list li {
    font-size: 14px;
  }
}

.em-employment-btn {
  background: #11c46a;
  color: #fff;
  text-decoration: none;
  padding: 24px 32px;
  border-radius: 4px;
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}
.em-employment-btn:hover {
  background: #287847;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
@media (max-width: 1023px) {
  .em-employment-btn {
    padding: 16px 24px;
    font-size: 14px;
  }
}

.em-employment-image {
  position: relative;
}
@media (max-width: 1023px) {
  .em-employment-image {
    order: 1;
  }
}

.em-employment-img {
  width: 100%;
  height: -webkit-fill-available;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 15%);
}
.em-employment-img:hover {
  transform: scale(1.02);
}
@media (max-width: 1023px) {
  .em-employment-img {
    max-height: 300px;
    object-fit: cover;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 10%);
  }
}

.em-employment-cta {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.em-employment-cta .custom {
  background: #fff;
  color: #00974b !important;
  border: 2px solid #00974b;
}

.em-learning-section {
  padding: 32px 0;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) {
  .em-learning-section {
    padding: 24px 0;
    background: none !important;
  }
}
.em-learning-section.no-background {
  background: none !important;
}
.em-learning-section.no-background .em-learning-title {
  color: #006033;
}
.em-learning-section.no-background .em-learning-card .em-learning-overlay {
  background: linear-gradient(
    180deg,
    rgba(28, 27, 31, 0.3) 0%,
    rgba(28, 27, 31, 0.8) 94.71%
  );
}
@media (max-width: 1023px) {
  .em-learning-section.no-background .em-learning-title {
    color: #006033;
  }
}

.em-learning-header {
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.em-learning-title {
  font-family: "Kode Mono", monospace, sans-serif;
  color: #006033;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .em-learning-title {
    font-size: 24px;
  }
}

.em-learning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 601px) and (max-width: 1023px) {
  .em-learning-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1023px) {
  .em-learning-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 24px;
  }
}

.em-learning-card {
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: flex-end;
  clip-path: polygon(0% 0%, 70% 0%, 100% 20%, 100% 100%, 0% 100%);
}
.em-learning-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1023px) {
  .em-learning-card {
    height: 280px;
    width: 100%;
    clip-path: polygon(0% 0%, 90% 0%, 100% 10%, 100% 100%, 0% 100%);
  }
}

.em-learning-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(28, 27, 31, 0) 0%, #1c1b1f 94.71%);
  z-index: 1;
}

.em-learning-image {
  display: none;
}

.em-learning-content {
  padding: 32px;
  text-align: center;
  color: #fff;
  width: 100%;
  position: relative;
  z-index: 2;
}
.em-learning-content h3 {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 1023px) {
  .em-learning-content {
    padding: 16px;
  }
  .em-learning-content h3 {
    font-size: 12px;
  }
}

.em-historia-section {
  padding: 48px 0;
}
@media (max-width: 1023px) {
  .em-historia-section {
    padding: 32px 0;
  }
}

.em-historia-gallery {
  position: relative;
}
@media (max-width: 1023px) {
  .em-historia-gallery {
    margin-bottom: 32px;
  }
}

.page-template-page-escola .hero-content,
.page-template-page-franqueado .hero-content {
  background-image: url("https://escoladomecanico.com.br///wp-content/uploads/2025/10/Rectangle-46.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) {
  .page-template-page-escola .hero-content,
  .page-template-page-franqueado .hero-content {
    background-image: none;
  }
}
.page-template-page-escola .em-catalogo-banner .container,
.page-template-page-franqueado .em-catalogo-banner .container {
  justify-content: start !important;
}
@media (max-width: 1023px) {
  .page-template-page-escola .em-catalogo-banner .container {
    justify-content: start !important;
  }

  .page-template-page-franqueado .em-catalogo-banner .container {
    justify-content: end !important;
  }
  .page-template-page-escola .em-catalogo-banner .em-catalogo-banner-bg,
  .page-template-page-franqueado
    .em-catalogo-banner
    .em-catalogo-banner
    .em-catalogo-banner-bg {
    background-position: -1070px !important;
  }

  .page-template-page-franqueado .overlay {
    backdrop-filter: blur(14.100000381469727px);
  }
}

@media (max-width: 400px) {
  .page-template-page-escola .em-catalogo-banner .em-catalogo-banner-bg,
  .page-template-page-franqueado
    .em-catalogo-banner
    .em-catalogo-banner
    .em-catalogo-banner-bg {
    background-position: -897px !important;
  }
}

.em-historia-swiper .swiper {
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 30%);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.em-historia-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .em-historia-image {
    height: 280px;
  }
}
.em-historia-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.em-historia-image:hover img {
  transform: scale(1.05);
}

.em-historia-navigation .swiper-button-prev,
.em-historia-navigation .swiper-button-next {
  position: absolute;
  top: calc(50% + 24px);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #fff;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.em-historia-navigation .swiper-button-prev:hover,
.em-historia-navigation .swiper-button-next:hover {
  background: #287847;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.em-historia-navigation .swiper-button-prev::after,
.em-historia-navigation .swiper-button-next::after {
  display: none;
}
.em-historia-navigation .swiper-button-prev i,
.em-historia-navigation .swiper-button-next i {
  font-size: 14px;
}
.em-historia-navigation .swiper-button-prev {
  left: 20px !important;
}
.em-historia-navigation .swiper-button-next {
  right: 20px;
}
@media (max-width: 1023px) {
  .em-historia-navigation .swiper-button-prev,
  .em-historia-navigation .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .em-historia-navigation .swiper-button-prev i,
  .em-historia-navigation .swiper-button-next i {
    font-size: 12px;
  }
  .em-historia-navigation .swiper-button-prev {
    left: 10px;
  }
  .em-historia-navigation .swiper-button-next {
    right: 10px;
  }
}

.em-historia-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.em-historia-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}
.em-historia-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #287847;
  border-color: #287847;
  transform: scale(1.2);
}
@media (max-width: 1023px) {
  .em-historia-pagination {
    bottom: 15px;
  }
  .em-historia-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

.em-historia-content {
  padding-left: 32px;
}
@media (max-width: 1023px) {
  .em-historia-content {
    padding-left: 0;
    text-align: center;
  }
}

.em-historia-title {
  font-family: "Kode Mono", monospace, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #006033;
  margin-bottom: 32px;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .em-historia-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.em-historia-text p {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2f2f2f;
  margin-bottom: 24px !important;
}
.em-historia-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .em-historia-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px !important;
  }
}

.em-historia-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.em-historia-list li {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2f2f2f;
  padding-left: 24px;
  position: relative;
}
.em-historia-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #287847;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.em-historia-list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .em-historia-list li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
}

.em-fundadora-section {
  padding: 48px 0;
  position: relative;
  background-color: #272727;
}
.em-fundadora-section.bg {
  background: #272727
    url("https://escoladomecanico.com.br///wp-content/uploads/2025/11/Group-2-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1023px) {
  .em-fundadora-section.bg {
    background-size: cover;
    background-position: top;
  }
}
@media (max-width: 1023px) {
  .em-fundadora-section {
    padding: 32px 0;
  }
}
.em-fundadora-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.em-fundadora-section .row {
  position: relative;
  z-index: 2;
}
.em-fundadora-section .text {
  justify-content: end;
  display: flex;
  padding-right: 80px;
}
@media (max-width: 1023px) {
  .em-fundadora-section .text {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }
}
.em-fundadora-section.left .text {
  justify-content: end;
  display: flex;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1023px) {
  .em-fundadora-section.left .text {
    justify-content: center;
  }
}
.em-fundadora-section.left .em-fundadora-img {
  clip-path: polygon(0% 0%, 85% 0%, 100% 30%, 100% 100%, 0% 100%);
}
@media (max-width: 1023px) {
  .em-fundadora-section .inverse {
    flex-direction: column-reverse;
    text-align: center;
  }
}
.em-fundadora-section.light {
  background-color: transparent !important;
}
.em-fundadora-section.light .em-fundadora-title,
.em-fundadora-section.light .em-fundadora-description p {
  color: #006033;
}

.em-fundadora-text {
  width: 80%;
}
@media (max-width: 1023px) {
  .em-fundadora-text {
    margin-bottom: 32px;
  }
}

.em-fundadora-title {
  font-family: "Kode Mono", monospace, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #dbff3d;
  margin-bottom: 32px;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .em-fundadora-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.em-fundadora-description p {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}
@media (max-width: 1023px) {
  .em-fundadora-description p {
    font-size: 16px;
  }
}

.em-fundadora-image {
  position: relative;
  min-height: 636px;
  width: 100%;
  clip-path: polygon(0% 0%, 85% 0%, 100% 30%, 100% 100%, 0% 100%);
}
@media (max-width: 1023px) {
  .em-fundadora-image {
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 32px;
    min-height: auto;
  }
}

.em-fundadora-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  clip-path: polygon(0% 0%, 85% 0%, 100% 30%, 100% 100%, 0% 100%);
}
.em-fundadora-img:hover {
  transform: scale(1.02);
}
@media (max-width: 1023px) {
  .em-fundadora-img {
    max-height: 300px;
    object-fit: cover;
  }
}

.em-proposito-section {
  padding: 48px 0;
  position: relative;
}
@media (max-width: 1023px) {
  .em-proposito-section {
    padding: 32px 0;
  }
}

.em-proposito-header {
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1023px) {
  .em-proposito-header {
    margin-bottom: 32px;
  }
}

.em-proposito-title {
  font-family: "Kode Mono", monospace, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #006033;
  margin-bottom: 16px;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .em-proposito-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.em-proposito-subtitle {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 18px;
  color: #2f2f2f;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .em-proposito-subtitle {
    font-size: 16px;
  }
}

.em-proposito-grid {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.em-escola-background {
  background-image: url("https://escoladomecanico.com.br///wp-content/uploads/2025/10/Rectangle-26.png");
  background-size: auto;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
}

.em-proposito-swiper .swiper {
  overflow: visible;
}
.em-proposito-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}
.em-proposito-swiper .swiper-controls {
  margin-top: 24px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.em-proposito-swiper .swiper-button-prev,
.em-proposito-swiper .swiper-button-next {
  position: static !important;
  margin: 0;
  width: 48px !important;
  height: 48px !important;
  background: #006033 !important;
  color: #fff !important;
  border-radius: 0 !important;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
.em-proposito-swiper .swiper-button-prev:hover,
.em-proposito-swiper .swiper-button-next:hover {
  background: #287847 !important;
  color: #fff !important;
  transform: scale(1.05);
}
.em-proposito-swiper .swiper-button-prev::after,
.em-proposito-swiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}
.em-proposito-swiper .swiper-button-prev.swiper-button-disabled,
.em-proposito-swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.em-proposito-swiper .swiper-button-prev.swiper-button-disabled:hover,
.em-proposito-swiper .swiper-button-next.swiper-button-disabled:hover {
  background: #f3f5f5 !important;
  color: #287847 !important;
  transform: none;
}
@media (max-width: 1023px) {
  .page-template-page-blog .swiper-button-next,
  .page-template-page-blog .swiper-button-prev {
    display: flex !important;
  }
}
.page-template-page-blog .swiper-button-lock {
  display: flex !important;
}
.em-proposito-swiper .swiper-button-prev::after {
  content: "←";
}
.em-proposito-swiper .swiper-button-next::after {
  content: "→";
}
.em-proposito-swiper .swiper-pagination {
  position: static !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.em-proposito-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 5px !important;
  height: 5px !important;
  background: #d1d5db;
  border-radius: 50% !important;
  opacity: 1;
  margin: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.em-proposito-swiper
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #287847;
  width: 9px !important;
  height: 9px !important;
}
.em-proposito-swiper .swiper-pagination .swiper-pagination-bullet:hover {
  background: #287847;
  transform: scale(1.2);
}

.em-proposito-card {
  background: radial-gradient(
    174.32% 550.99% at 7.22% 13.45%,
    #00974b 0%,
    #006033 100%
  );
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 30px 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  clip-path: polygon(0% 0%, 85% 0%, 100% 30%, 100% 100%, 0% 100%);
  transition: transform 0.3s ease;
  height: auto;
  min-height: 239px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .em-proposito-card {
    padding: 24px;
    width: 100%;
    min-height: 250px;
  }
}
.em-proposito-card:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.em-proposito-icon {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .em-proposito-icon {
    width: 48x;
    height: 48x;
    margin-bottom: 16px;
  }
}
.em-proposito-icon i {
  font-size: 24px;
  color: #287847;
  transition: color 0.3s ease;
}
@media (max-width: 600px) {
  .em-proposito-icon i {
    font-size: 20px;
  }
}
.em-proposito-icon img {
  width: 48px;
  height: 48px;
  transition: filter 0.3s ease;
}
@media (max-width: 600px) {
  .em-proposito-icon img {
    width: 48px;
    height: 48px;
  }
}

.em-proposito-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}
.em-proposito-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  margin: 4px 0;
  width: 100%;
}

.em-proposito-card-title {
  font-family: "Kode Mono", monospace, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .em-proposito-card-title {
    font-size: 18px;
  }
}

.em-proposito-card-number {
  font-family: "Kode Mono", monospace, sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0px;
}
@media (max-width: 600px) {
  .em-proposito-card-number {
    font-size: 32px !important;
  }
}
.em-proposito-description {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 20px 0;
  flex-grow: 1;
}
@media (max-width: 600px) {
  .em-proposito-description {
    font-size: 16px !important;
    line-height: 1.5;
  }
}

.em-proposito-button {
  background: #dbff3d !important;
  color: #006033 !important;
  padding: 8px 12px;
  border-radius: 4px;
  font-family: "Kode Mono", monospace, sans-serif;
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #dbff3d;
  display: inline-block;
  text-align: center;
  margin-top: auto;
  width: fit-content;
}
.em-proposito-button:hover {
  background: transparent !important;
  color: #dbff3d !important;
  border-color: #dbff3d;
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .em-proposito-button {
    font-size: 11px;
    padding: 10px 16px;
  }
}

.em-proposito-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}
.em-proposito-card:nth-child(1) {
  animation-delay: 0s;
}
.em-proposito-card:nth-child(2) {
  animation-delay: 0.1s;
}
.em-proposito-card:nth-child(3) {
  animation-delay: 0.2s;
}
.em-proposito-card:nth-child(4) {
  animation-delay: 0.3s;
}
.em-proposito-card:nth-child(5) {
  animation-delay: 0.4s;
}
.em-proposito-card:nth-child(6) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.em-resultados-section {
  padding: 32px 0;
}
@media (max-width: 768px) {
  .em-resultados-section {
    padding: 16px 0;
  }
}
.em-resultados-section .em-resultados-header {
  margin-bottom: 32px;
}
.em-resultados-section .em-resultados-header .em-resultados-title {
  font-size: 32px;
  font-weight: 700;
  color: #094528;
  margin-bottom: 0;
  font-family: "Kode Mono", monospace, sans-serif;
}
@media (max-width: 768px) {
  .em-resultados-section .em-resultados-header .em-resultados-title {
    font-size: 2rem;
  }
}
.em-resultados-section .em-resultados-grid .row {
  justify-content: center;
  align-items: stretch;
}
.em-resultados-section .em-resultados-grid .em-resultado-item {
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.em-resultados-section .em-resultados-grid .em-resultado-item:hover {
  transform: translateY(-5px);
}
.em-resultados-section
  .em-resultados-grid
  .em-resultado-item
  .em-resultado-numero {
  font-family: "Kode Mono", monospace, sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 96px;
  color: #094528;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .em-resultados-section .em-resultados-grid .em-resultado-item {
    font-size: 36px;
  }
}
.em-resultados-section .em-resultados-grid .em-resultado-texto {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  text-align: left;
  margin-left: 12px;
}
.em-resultados-section
  .em-resultados-grid
  .em-resultado-texto
  .em-resultado-label {
  font-family: Manrope;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  color: #094528;
  line-height: 130%;
  letter-spacing: 0%;
}
@media (max-width: 768px) {
  .em-resultados-section
    .em-resultados-grid
    .em-resultado-texto
    .em-resultado-label {
    font-size: 14px;
  }
}
.em-resultados-section
  .em-resultados-grid
  .em-resultado-texto
  .em-resultado-desc {
  font-family: Manrope;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  color: #094528;
  line-height: 130%;
  letter-spacing: 0%;
}
@media (max-width: 768px) {
  .em-resultados-section
    .em-resultados-grid
    .em-resultado-texto
    .em-resultado-desc {
    font-size: 14px;
  }
}

.em-about-section {
  background: #fff;
  position: relative;
  padding: 48px 0;
}
.em-about-section .container {
  display: flex;
  justify-content: center;
}
@media (max-width: 1023px) {
  .em-about-section {
    padding: 16px 0;
  }
}

.em-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 1138px;
  padding: 48px;
  background: no-repeat;
  background-size: cover;
}
@media (max-width: 1023px) {
  .em-about-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
    padding: 12px 24px;
  }
}

.em-about-image {
  position: relative;
}
.em-about-image img {
  height: 527px;
  width: auto;
}
@media (max-width: 1023px) {
  .em-about-image {
    text-align: center;
  }
  .em-about-image img {
    height: 321px;
  }
}

.em-about-text {
  color: #fff;
}
@media (max-width: 1023px) {
  .em-about-text {
    order: 2;
  }
}

.em-about-title {
  font-family: "Kode Mono", monospace, sans-serif;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
}
@media (max-width: 1023px) {
  .em-about-title {
    font-size: 2rem;
  }
}

.em-about-description p {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 32px;
  margin-bottom: 24px;
}
.em-about-description p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .em-about-description p {
    font-size: 14px;
  }
}

@media (min-width: 600px) {
  .page-template-page-franqueado .escola-bg-2 {
    background: none;
  }
}

.em-cta-section {
  padding: 64px 0;
  background: #094528
    url("https://escoladomecanico.com.br///wp-content/uploads/2025/10/Rectangle-25.png")
    center/cover no-repeat;
  text-align: center;
  color: #fff;
  background-size: contain;
}
@media (max-width: 1023px) {
  .em-cta-section {
    padding: 16px 0;
    background: #094528;
  }
}

.em-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.em-cta-title {
  font-family: "Kode Mono", monospace, sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 32px;
}
@media (max-width: 1023px) {
  .em-cta-title {
    font-size: 2rem;
  }
}

.em-cta-highlight-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 48px;
}
.em-cta-highlight-wrapper::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  background: #032d19;
  border: 1px solid #fff;
}
@media (max-width: 1023px) {
  .em-cta-highlight-wrapper {
    width: 275px;
    margin-bottom: 0;
  }
  .em-cta-highlight-wrapper::after {
    top: 6px;
    left: 6px;
    right: -6px;
    bottom: -6px;
  }
}

.em-cta-highlight {
  background: #00763a;
  border: 1px solid #fff;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1;
  height: 138px;
}
@media (max-width: 1023px) {
  .em-cta-highlight {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    height: 154px;
    gap: 0;
  }
}

.em-cta-text {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  width: 222px;
  text-align: right;
}
@media (max-width: 1023px) {
  .em-cta-text {
    font-size: 14px;
    text-align: center;
  }
}

.em-cta-number {
  font-family: "Kode Mono", monospace, sans-serif;
  font-size: 110px;
  font-weight: 700;
  color: #fff;
  line-height: 130%;
}
@media (max-width: 1023px) {
  .em-cta-number {
    font-size: 52px;
  }
}

.em-cta-description {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 1023px) {
  .em-cta-description {
    font-size: 16px;
    margin: 32px 0;
    text-align: start;
  }
}

.em-emprega-buttons {
  display: flex;
  gap: 24px;
  justify-content: left;
  flex-wrap: wrap;
  margin-top: 24px;
}
.em-emprega-buttons .btn-secondary-not-full {
  background: #105099 !important;
}
.em-cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
@media (max-width: 1023px) {
  .em-cta-buttons {
    gap: 12px;
  }
}
.em-cta-buttons .btn-secondary-not-full {
  padding: 12px 32px;
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1023px) {
  .em-cta-buttons .btn-secondary-not-full {
    padding: 16px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 1023px) {
  .em-cta-buttons .btn-transparente {
    padding: 16px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }
}

.em-cta-btn-courses {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.em-cta-btn-courses:hover {
  background: #fff;
  color: #287847;
}

.em-faq-section {
  padding: 32px 0;
  background: #094528;
}
@media (max-width: 1023px) {
  .em-faq-section {
    padding: 16px 0;
  }
}
.em-faq-section.light {
  background: #fff;
}
.em-faq-section.light .em-faq-title {
  color: #006033 !important;
}
.em-faq-section.light .em-faq-question {
  background-color: #094528;
  color: #dbff3d;
}
.em-faq-section.light .em-faq-icon {
  color: #dbff3d;
}
.em-faq-section.light .em-faq-answer p {
  color: black !important;
}
.em-faq-section.light .em-faq-answer {
  background-color: #dcdcdc;
}

.em-faq-content {
  max-width: 1176px;
  margin: 0 auto;
}

.em-faq-title {
  font-family: "Kode Mono", monospace, sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  text-align: left;
  margin-bottom: 16px;
}
@media (max-width: 1023px) {
  .em-faq-title {
    font-size: 2rem;
    text-align: center;
  }
}

.em-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.em-faq-item {
  overflow: hidden;
  background: #fff;
}

.em-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: transparent;
  border: none;
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #094528;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}
.em-faq-question:hover {
  background: rgba(40, 120, 71, 0.05);
}
.em-faq-question[aria-expanded="true"] .em-faq-icon {
  transform: rotate(45deg);
}
@media (max-width: 1023px) {
  .em-faq-question {
    padding: 24px;
    font-size: 14px;
  }
}

.em-faq-icon {
  font-size: 20px;
  color: #287847;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 24px;
}

.em-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #006033;
}
.em-faq-answer p {
  padding: 16px;
  margin: 0;
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 1023px) {
  .em-faq-answer p {
    font-size: 14px;
  }
}
.em-faq-answer.active {
  max-height: 200px;
}

.em-faq-item.active .em-faq-answer {
  max-height: 200px;
}

.em-posts-carousel {
  padding: 48px 0 24px 0;
  background: #fff
    url("https://escoladomecanico.com.br///wp-content/uploads/2025/10/Rectangle-26.png")
    no-repeat center center;
  background-size: cover;
  position: relative;
}
.em-posts-carousel .em-posts-swiper {
  z-index: 2;
  position: revert-layer;
}

/* .em-posts-carousel .swiper-button-prev,
.em-posts-carousel .swiper-button-next {
  position: static !important;
} */
.em-posts-carousel > .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 1023px) {
  .em-posts-carousel {
    padding: 32px 0;
  }
  .em-posts-carousel .swiper-slide-next {
    opacity: 0.3;
  }
}
.em-posts-carousel .em-posts-carousel-header {
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .em-posts-carousel .em-posts-carousel-header {
    margin-bottom: 24px;
  }
}
.em-posts-carousel .em-posts-carousel-title {
  font-family: "Kode Mono", monospace, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #094528;
  margin-bottom: 8px;
}
@media (max-width: 1023px) {
  .em-posts-carousel .em-posts-carousel-title {
    font-size: 2rem;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .em-posts-carousel .em-posts-carousel-title {
    font-size: 1.75rem;
  }
}
.em-posts-carousel .em-posts-carousel-subtitle {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #2f2f2f;
  max-width: 600px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .em-posts-carousel .em-posts-carousel-subtitle {
    font-size: 1rem;
    text-align: center;
  }
}
.em-posts-carousel .em-posts-carousel-wrapper {
  position: relative;
  width: 84vw;
}
@media (max-width: 1023px) {
  .em-posts-carousel .em-posts-carousel-wrapper {
    width: 100vw;
  }
}

.em-post-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 367px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%);
}
@media (max-width: 1023px) {
  .em-post-card {
    width: 238px;
    height: 284px;
  }
}
.em-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.em-post-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.em-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.em-post-image:hover img {
  transform: scale(1.05);
}
.em-post-image .em-post-no-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #696969 0%, #383838 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
}

.em-post-content {
  padding: 21px 29px 16px 29px;
  display: flex;
  flex-direction: column;
  background: radial-gradient(
    174.32% 550.99% at 7.22% 13.45%,
    #00974b 0%,
    #006033 100%
  );
  color: #fff;
  height: 281px;
}
.em-post-content hr {
  border: 1px solid;
  border-image-source: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
@media (max-width: 600px) {
  .em-post-content hr {
    margin: 4px 0 !important;
  }
}

.em-post-title {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: 0%;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .em-post-title {
    font-size: 16px !important;
  }
}
.em-post-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}
.em-post-title a:hover {
  color: #287847;
}

.em-post-excerpt {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  margin-bottom: 24px;
  flex: 1;
}
@media (max-width: 600px) {
  .em-post-excerpt {
    font-size: 12px !important;
  }
}

.em-post-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  margin: 16px 0;
  width: 100%;
}

.em-post-read-more {
  color: #dbff3d !important;
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: 0%;
  text-decoration: underline !important;
  text-decoration-style: solid !important;
  text-decoration-offset: 0% !important;
  text-decoration-thickness: 0% !important;
  text-decoration-skip-ink: auto !important;
  transition: all 0.3s ease;
  align-self: flex-start;
}
@media (max-width: 600px) {
  .em-post-read-more {
    font-size: 12px;
  }
}
.em-post-read-more:hover {
  color: #7bcb4a;
  transform: translateX(5px);
}

.swiper-button-next,
.swiper-button-prev {
  background: rgba(0, 0, 0, 0.2392156863);
  border: 2px solid #094528;
  color: #094528;
  opacity: 0.9;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.swiper-button-next[style*="opacity: 0"],
.swiper-button-prev[style*="opacity: 0"] {
  pointer-events: none;
}

.swiper-button-next {
  right: 250px;
}
@media (max-width: 1023px) {
  .swiper-button-next {
    right: -20px;
  }
}

.swiper-button-prev {
  left: -1px !important;
}

.em-posts-carousel-footer {
  text-align: left;
  margin-top: 32px;
}
.em-posts-carousel-footer .btn-primary {
  font-size: 20px;
  width: 367px;
}
@media (max-width: 600px) {
  .em-posts-carousel-footer .btn-primary {
    padding: 16px 12px;
    width: 100%;
    font-size: 14px;
  }
}

.em-posts-view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 24px 48px;
  background: #287847;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.em-posts-view-more:hover {
  background: #7bcb4a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 120, 71, 0.3);
}
@media (max-width: 600px) {
  .em-posts-view-more {
    padding: 16px 12px;
    width: 100%;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .em-post-content {
    padding: 24px;
  }
  .em-post-title {
    font-size: 1rem;
  }
  .em-post-excerpt {
    font-size: 0.85rem;
  }
}
/* .swiper-slide-prev
  + .swiper-slide-active
  + .swiper-slide-next
  + .swiper-slide
  + .swiper-slide {
  position: relative;
  opacity: 0.3;
} */

.em-posts-carousel-noticias,
.em-posts-carousel-dicas,
.em-posts-carousel-tutoriais {
  margin-bottom: 60px;
}
@media (max-width: 1023px) {
  .em-posts-carousel-noticias,
  .em-posts-carousel-dicas,
  .em-posts-carousel-tutoriais {
    margin-bottom: 40px;
  }
}
.em-posts-carousel-noticias .em-posts-carousel-title,
.em-posts-carousel-dicas .em-posts-carousel-title,
.em-posts-carousel-tutoriais .em-posts-carousel-title {
  position: relative;
}
.em-posts-carousel-noticias .em-posts-carousel-title::before,
.em-posts-carousel-dicas .em-posts-carousel-title::before,
.em-posts-carousel-tutoriais .em-posts-carousel-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  border-radius: 2px;
}

.em-posts-carousel-noticias .em-posts-carousel-title::before {
  background: #ff6b35;
}
.em-posts-carousel-noticias .category-noticias {
  background: #ff6b35;
  color: white;
}

.em-posts-carousel-dicas .em-posts-carousel-title::before {
  background: #4ecdc4;
}
.em-posts-carousel-dicas .category-dicas {
  background: #4ecdc4;
  color: white;
}

.em-posts-carousel-tutoriais .em-posts-carousel-title::before {
  background: #9b59b6;
}
.em-posts-carousel-tutoriais .category-tutoriais {
  background: #9b59b6;
  color: white;
}

.em-post-category {
  margin-bottom: 8px;
}
.em-post-category .category-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.em-posts-carousel-noticias .em-post-content,
.em-posts-carousel-dicas .em-post-content,
.em-posts-carousel-tutoriais .em-post-content {
  padding-top: 16px;
}
.em-posts-carousel-noticias .em-post-title,
.em-posts-carousel-dicas .em-post-title,
.em-posts-carousel-tutoriais .em-post-title {
  font-size: 18px;
}
@media (max-width: 600px) {
  .em-posts-carousel-noticias .em-post-title,
  .em-posts-carousel-dicas .em-post-title,
  .em-posts-carousel-tutoriais .em-post-title {
    font-size: 16px;
  }
}

.em-posts-next-noticias,
.em-posts-prev-noticias,
.em-posts-next-dicas,
.em-posts-prev-dicas,
.em-posts-next-tutoriais,
.em-posts-prev-tutoriais {
  background: rgba(0, 0, 0, 0.2392156863);
  border: 2px solid #094528;
  color: #094528;
  opacity: 0.9;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.em-posts-next-noticias:after,
.em-posts-prev-noticias:after,
.em-posts-next-dicas:after,
.em-posts-prev-dicas:after,
.em-posts-next-tutoriais:after,
.em-posts-prev-tutoriais:after {
  display: none;
}
.em-posts-next-noticias[style*="opacity: 0"],
.em-posts-prev-noticias[style*="opacity: 0"],
.em-posts-next-dicas[style*="opacity: 0"],
.em-posts-prev-dicas[style*="opacity: 0"],
.em-posts-next-tutoriais[style*="opacity: 0"],
.em-posts-prev-tutoriais[style*="opacity: 0"] {
  pointer-events: none;
}

.em-posts-next-noticias,
.em-posts-next-dicas,
.em-posts-next-tutoriais {
  right: 250px;
}
@media (max-width: 1023px) {
  .em-posts-next-noticias,
  .em-posts-next-dicas,
  .em-posts-next-tutoriais {
    right: -20px;
  }
}

.em-posts-prev-noticias,
.em-posts-prev-dicas,
.em-posts-prev-tutoriais {
  left: -90px;
}

.em-posts-pagination-noticias .swiper-pagination-bullet-active {
  background: #ff6b35;
}

.em-posts-pagination-dicas .swiper-pagination-bullet-active {
  background: #4ecdc4;
}

.em-posts-pagination-tutoriais .swiper-pagination-bullet-active {
  background: #9b59b6;
}

.em-post-banner {
  background: #094528
    url("https://escoladomecanico.com.br///wp-content/uploads/2025/10/Rectangle-25.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .em-post-banner {
    padding: 16px 8px;
  }
}
.em-post-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: rotate(45deg);
}
@media (max-width: 1023px) {
  .em-post-banner::before {
    width: 200px;
    height: 200px;
  }
}
.em-post-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}
@media (max-width: 1023px) {
  .em-post-banner::after {
    width: 150px;
    height: 150px;
  }
}
.em-post-banner .container {
  position: relative;
  z-index: 2;
}
.em-post-banner .em-cta-buttons {
  justify-content: left !important;
  gap: 12px !important;
}
.em-post-banner .em-cta-buttons a {
  width: auto;
}
@media (max-width: 1023px) {
  .em-post-banner .em-cta-buttons a {
    width: 100%;
  }
}
.em-post-banner.escola {
  background: #094528;
}
@media (max-width: 1023px) {
  .em-post-banner.escola .row {
    flex-direction: column !important;
  }
}
.em-post-banner.escola .em-post-banner-title {
  text-align: center;
  padding-bottom: 32px;
}
@media (max-width: 1023px) {
  .em-post-banner.escola .em-post-banner-title {
    padding-bottom: 16px;
  }
}
.em-post-banner.escola .em-post-banner-bg {
  background: url("https://escoladomecanico.com.br///wp-content/uploads/2025/10/Rectangle-36.png");
  width: 704px;
  height: 451px;
  position: absolute;
  bottom: -463px;
  left: 237px;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 1;
}
@media (max-width: 1023px) {
  .em-post-banner.escola .em-post-banner-bg {
    background: none;
  }
}
.em-post-banner.escola .em-post-banner-content {
  padding-left: 0 !important;
}

.em-post-banner-bg {
  background: url("https://escoladomecanico.com.br///wp-content/uploads/2025/10/Rectangle-36.png");
  width: 704px;
  height: 451px;
  position: absolute;
  bottom: -463px;
  right: -237px;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 1;
}
@media (max-width: 1023px) {
  .em-post-banner-bg {
    background: url("https://escoladomecanico.com.br///wp-content/uploads/2025/10/Rectangle-36-1.png");
    bottom: 106px;
    right: -569px;
    background-size: contain;
  }
}

.em-post-banner-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 64px;
}
@media (max-width: 1023px) {
  .em-post-banner-content {
    margin-bottom: 32px;
    padding-left: 0;
    justify-content: start;
    margin-top: 16px;
  }
}

@media (max-width: 1023px) {
  .em-post-category-badge {
    position: absolute;
    top: 0;
    z-index: 2;
    left: 12px;
  }
}

.em-post-banner-title {
  font-family: "Kode Mono", monospace, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}
@media (max-width: 1023px) {
  .em-post-banner-title {
    font-size: 36px;
  }
}
@media (max-width: 600px) {
  .em-post-banner-title {
    font-size: 24px !important;
  }
}

.em-post-banner-excerpt {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}
@media (max-width: 1023px) {
  .em-post-banner-excerpt {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .em-post-banner-excerpt {
    font-size: 16px !important;
  }
}

.em-post-meta {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 600px) {
  .em-post-meta {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
@media (max-width: 1023px) {
  .em-post-meta {
    justify-content: center;
  }
}
.em-post-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.8;
}
.em-post-meta span i {
  font-size: 12px;
}

.em-post-banner-image {
  position: relative;
  z-index: 3;
}
.em-post-banner-image img {
  width: 100%;
  height: auto;
  opacity: 1;
  border-radius: 2px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  clip-path: polygon(0% 0%, 85% 0%, 100% 30%, 100% 100%, 0% 100%);
}
@media (max-width: 1023px) {
  .em-post-banner-image img {
    width: 100%;
    height: auto;
  }
}
.em-post-banner-image .em-post-no-image {
  width: 100%;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 3rem;
  border: 2px dashed rgba(255, 255, 255, 0.3);
}

@media (max-width: 1023px) {
  .em-post-banner .row {
    flex-direction: column-reverse;
  }
  a {
    font-size: 16px !important;
    text-align: center;
  }
  .em-post-banner-image {
    margin-bottom: 0;
  }
  .em-post-banner-image img {
    transform: rotate(0deg);
  }
}
.em-related-posts {
  background: #f3f5f5;
  padding: 80px 0;
  margin-top: 60px;
}
@media (max-width: 1023px) {
  .em-related-posts {
    padding: 60px 0;
    margin-top: 40px;
  }
}

.em-related-posts-title {
  font-family: "Kode Mono", monospace, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 1023px) {
  .em-related-posts-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .em-related-posts-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.em-related-post-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.em-related-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.em-related-post-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.em-related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.em-related-post-image a:hover img {
  transform: scale(1.05);
}
.em-related-post-image .em-related-post-no-image {
  width: 100%;
  height: 100%;
  background: #f3f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #696969;
  font-size: 2rem;
}

.em-related-post-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .em-related-post-content {
    padding: 20px;
  }
}

.em-related-post-category {
  display: inline-block;
  background: #287847;
  color: #fff;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  width: fit-content;
}
@media (max-width: 600px) {
  .em-related-post-category {
    font-size: 10px;
    padding: 4px 8px;
  }
}

.em-related-post-title {
  font-family: "Kode Mono", monospace, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  flex: 1;
}
@media (max-width: 600px) {
  .em-related-post-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.em-related-post-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}
.em-related-post-title a:hover {
  color: #287847;
}

.em-related-post-meta {
  margin-top: auto;
}
.em-related-post-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666666;
}
@media (max-width: 600px) {
  .em-related-post-meta span {
    font-size: 12px;
  }
}
.em-related-post-meta span i {
  font-size: 11px;
  color: #287847;
}

@media (max-width: 600px) {
  .em-related-posts .row > [class*="col-"] {
    margin-bottom: 20px;
  }
  .em-related-posts .row > [class*="col-"]:last-child {
    margin-bottom: 0;
  }
}
.em-catalogo-background {
  background: #fff
    url("https://thecreators.com.br/wp-content/uploads/2025/10/Rectangle-26-1.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.em-catalogo-banner {
  position: relative;
  height: 530px;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .em-catalogo-banner {
    height: 70vh;
    min-height: 500px;
  }
}
.em-catalogo-banner .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
}

.page-template-page-emprega .em-catalogo-banner .container {
  justify-content: end;
}
@media (max-width: 1023px) {
  .em-catalogo-banner .container {
    padding-right: 0;
  }
}
.em-catalogo-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, #000 100%);
  z-index: 1;
}

.page-template-page-franqueado .em-catalogo-banner .overlay {
  background: none;
}
.em-catalogo-banner .em-catalogo-banner-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  justify-content: end;
}
@media (max-width: 1023px) {
  .page-template-page-unidades .em-catalogo-banner .em-catalogo-banner-bg {
    background-position: -700px !important;
  }
  .page-template-page-emprega .em-catalogo-banner .em-catalogo-banner-bg {
    background-position: -361px !important;
  }
}

@media (max-width: 400px) {
  .page-template-page-unidades .em-catalogo-banner .em-catalogo-banner-bg {
    background-position: -587px !important;
  }
}
.em-catalogo-banner .hero-content {
  min-width: 528px;
  height: auto;
  max-width: 603px;
  background-color: #094528;
  color: #fff;
  z-index: 2;
  padding: 24px 24px 24px 24px;
}
@media (max-width: 1023px) {
  .em-catalogo-banner .hero-content {
    min-width: 223px !important;
    width: 243px !important;
    padding: 0;
  }
}
.em-catalogo-banner .hero-title {
  font-family: Kode Mono;
  font-weight: 700;
  font-style: Bold;
  font-size: 44px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #fff;
}
@media (max-width: 600px) {
  .em-catalogo-banner .hero-title {
    font-size: 32px !important;
    padding: 12px 12px 0px 12px;
  }
}
.em-catalogo-produtos
  .swiper-controls
  .swiper-pagination
  .em-catalogo-banner
  .hero-subtitle {
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  color: #2f2f2f;
  line-height: 130%;
  letter-spacing: 0%;
}
@media (max-width: 600px) {
  .em-catalogo-banner .hero-subtitle {
    font-size: 16px !important;
  }
}
@media (max-width: 1023px) {
  .em-catalogo-banner .hero-banner_description {
    padding: 0px 12px 0px 12px;
  }
}
.em-catalogo-banner .hero-actions {
  display: flex;
  flex-direction: row;
  margin-top: 24px;
  gap: 10px;
}
@media (max-width: 1023px) {
  .em-catalogo-banner .hero-actions {
    flex-direction: column;
    gap: 0px;
    margin-top: 12px;
  }
}
.em-catalogo-banner .hero-actions .btn-custom {
  width: fit-content;
  padding: 4px 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: left;
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  background: #006033;
  line-height: 130%;
  letter-spacing: 0%;
  color: #fff !important;
}
@media (max-width: 600px) {
  .em-catalogo-banner .hero-actions .btn-custom {
    font-size: 16px;
    padding: 12px 12px;
    width: 100%;
    font-size: 16px;
  }
}
.em-catalogo-banner .hero-actions .btn-custom.secondary {
  background: #dbff3d;
  color: #032d19 !important;
}
.em-catalogo-banner .hero-actions .btn-custom.secondary:hover {
  background: #fff;
  color: #287847;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}
.em-catalogo-banner .hero-actions .btn-custom.transparente {
  background: transparent;
  color: #dbff3d !important;
  border: 1px solid #dbff3d;
}
.em-catalogo-banner .hero-actions .btn-custom.transparente:hover {
  background: #fff;
  color: #287847 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}
.em-catalogo-banner .hero-content {
  animation: fadeInUp 1s ease-out;
}

.em-catalogo-page-content {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2f2f2f;
}
.em-catalogo-page-content h1,
.em-catalogo-page-content h2,
.em-catalogo-page-content h3,
.em-catalogo-page-content h4,
.em-catalogo-page-content h5,
.em-catalogo-page-content h6 {
  color: #1a1a1a;
  margin-bottom: 20px;
}
.em-catalogo-page-content p {
  margin-bottom: 20px;
}

.em-catalogo-produtos {
  padding: 32px 0;
}
@media (max-width: 1023px) {
  .em-catalogo-produtos {
    padding: 16px 0;
  }
}

.em-catalogo-guia {
  background: transparent;
  padding: 32px 0px;
}

.em-catalogo-guia.green {
  /* background: #006033; */
  background: #00974b;
}

.em-catalogo-guia.green .em-catalogo-guia-title {
  color: #fff !important;
}
@media (max-width: 1023px) {
  .em-catalogo-guia {
    padding: 16px 0;
  }
}

.em-catalogo-guia-header {
  margin-bottom: 60px;
}
@media (max-width: 1023px) {
  .em-catalogo-guia-header {
    margin-bottom: 40px;
  }
}

.em-catalogo-guia-title {
  font-family: "Kode Mono", monospace, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #006033;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .em-catalogo-guia-title {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .em-catalogo-guia-title {
    font-size: 28px;
  }
}

.em-catalogo-guia-subtitle {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 16px;
  color: #2f2f2f;
  margin-bottom: 8px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .em-catalogo-guia-subtitle {
    font-size: 16px;
  }
}

.em-catalogo-guia-description {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 16px;
  color: #2f2f2f;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .em-catalogo-guia-description {
    font-size: 15px;
  }
}

.em-catalogo-guia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .em-catalogo-guia-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }
}

.em-guia-card {
  background: #f3f5f5;
  border: 2px solid #287847;
  transition: all 0.3s ease;
  height: auto;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
@media (max-width: 600px) {
  .em-guia-card {
    min-height: 250px;
  }
}
.em-guia-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.em-guia-header {
  margin-bottom: 32px;
}
@media (max-width: 600px) {
  .em-guia-header {
    margin-bottom: 20px;
  }
}

.em-guia-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 24px 0 24px;
}
@media (max-width: 600px) {
  .em-guia-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 16px;
  }
}
.em-guia-icon i {
  color: #006033;
  font-size: 20px;
}
@media (max-width: 600px) {
  .em-guia-icon i {
    font-size: 18px;
  }
}
.em-guia-icon img {
  width: 24px;
  height: 24px;
}

.em-guia-content {
  flex: 1;
}

.em-guia-title {
  font-family: "Kode Mono", monospace, sans-serif;
  font-size: 20px;
  font-weight: 700;
  min-height: 76px;
  color: #287847;
  margin-bottom: 12px;
  line-height: 1.3;
  padding: 24px 24px 0 24px;
}
@media (max-width: 600px) {
  .em-guia-title {
    font-size: 18px;
    padding-top: 12px;
    margin-bottom: 10px;
  }
}

.em-guia-description {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #2f2f2f;
  margin-bottom: 0;
  padding: 80px 0;
  padding: 0px 24px 0 24px;
}
@media (max-width: 600px) {
  .em-guia-description {
    font-size: 14px;
  }
}

.em-guia-courses {
  background: #006033;
  padding: 20px;
  height: -webkit-fill-available;
}

@media (max-width: 600px) {
  .em-guia-courses {
    height: auto;
  }
}

.em-guia-course-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 14px;
  color: #fff;
}
.em-guia-course-item p {
  font-size: 14px;
}
@media (max-width: 600px) {
  .em-guia-course-item {
    font-size: 13px;
    gap: 10px;
    padding: 6px 0;
  }
}
.em-guia-course-item i {
  color: #287847;
  font-size: 16px;
  width: 20px;
  text-align: center;
}
@media (max-width: 600px) {
  .em-guia-course-item i {
    font-size: 14px;
    width: 18px;
  }
}
.em-guia-course-item .course-icon {
  width: 24px;
  height: 24px;
}
@media (max-width: 600px) {
  .em-guia-course-item .course-icon {
    width: 24px;
    height: 24px;
  }
}
.em-guia-course-item span {
  font-weight: 500;
}

.em-catalogo-produtos-header {
  margin-bottom: 60px;
}
@media (max-width: 1023px) {
  .em-catalogo-produtos-header {
    margin-bottom: 40px;
  }
}

.em-catalogo-produtos-title {
  font-family: "Kode Mono", monospace, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #006033;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .em-catalogo-produtos-title {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .em-catalogo-produtos-title {
    font-size: 28px;
  }
}

.em-catalogo-produtos-subtitle {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 18px;
  color: #666666;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .em-catalogo-produtos-subtitle {
    font-size: 16px;
  }
}

.em-catalogo-produto-card {
  background: #f5f5f5;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: min-content;
  min-height: 522px;
  display: flex;
  flex-direction: column;
  width: 272px;
  clip-path: polygon(22% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 15%);
}
.em-catalogo-produto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.em-catalogo-produtos-grid {
  display: flex;
  justify-content: center;
}
.em-catalogo-produtos-grid .row {
  max-width: 874px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1023px) {
  .em-catalogo-produtos-grid {
    display: block;
  }
}

.em-catalogo-produto-image {
  position: relative;
  overflow: hidden;
  height: 160px;
}
.em-catalogo-produto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.em-catalogo-produto-image a:hover img {
  transform: scale(1.05);
}
.em-catalogo-produto-image .em-catalogo-produto-no-image {
  width: 100%;
  height: 100%;
  background: #f3f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #696969;
  font-size: 2.5rem;
}

.em-catalogo-produto-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #287847;
  color: #fff;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.em-catalogo-produto-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: #006033 !important;
  color: #fff !important;
}

.em-catalogo-produto-title {
  font-family: "Kode Mono", monospace, sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 21px;
  leading-trim: NONE;
  letter-spacing: 0%;
  color: #006033;
  margin-bottom: 16px;
  min-height: 87px;
  padding: 16px 16px 0 16px;
  width: 100%;
}
@media (max-width: 1023px) {
  .em-catalogo-produto-title {
    font-size: 20px;
    color: #006033;
  }
}
.em-catalogo-produto-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}
.em-catalogo-produto-title a:hover {
  color: #287847;
}

.em-catalogo-produto-excerpt {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 14px;
  line-height: 130%;
  color: #2f2f2f;
  margin-bottom: 12px;
  min-height: 72px;
  padding: 0 16px 0 16px;
  height: min-content;
}

.em-catalogo-produto-badges {
  display: flex;
  gap: 4px;
  padding: 0 16px 0 16px;
}

.em-badge {
  margin-bottom: 24px !important;
}

.em-catalogo-produto-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.em-catalogo-produto-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666666;
  background: #f3f5f5;
  padding: 6px 10px;
  border-radius: 8px;
}
.em-catalogo-produto-info span i {
  font-size: 10px;
  color: #287847;
}

.em-catalogo-produto-footer {
  display: flex;
  justify-content: space-between;
  align-items: left;
  border-top: 1px solid #f3f5f5;
  flex-direction: column;
  padding: 0 16px 0 16px;
}
@media (max-width: 600px) {
  .em-catalogo-produto-footer {
    align-items: stretch;
  }
}

.em-catalogo-produto-preco {
  font-family: "Kode Mono", monospace, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #287847;
}
@media (max-width: 600px) {
  .em-catalogo-produto-preco {
    text-align: center;
  }
}

.em-catalogo-produto-cta {
  bottom: 0;
  position: absolute;
  width: 100% !important;
}
@media (max-width: 1023px) {
  .em-catalogo-produto-cta {
    left: 0px;
  }
}

.btn-sm {
  padding: 12px 15px !important;
  font-size: 16px !important;
  width: 100% !important;
}
@media (max-width: 600px) {
  .btn-sm {
    width: 100%;
    text-align: center;
  }
}

.em-catalogo-produto-preco-parcelado {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #006033;
}
.em-catalogo-produto-preco-parcelado span {
  font-size: 44px;
}

.em-catalogo-produto-preco-vista {
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #006033;
}

.em-catalogo-pagination {
  margin-top: 60px;
}
.em-catalogo-pagination .page-numbers {
  display: inline-block;
  padding: 12px 16px;
  margin: 0 4px;
  background: #fff;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #f3f5f5;
  transition: all 0.3s ease;
}
.em-catalogo-pagination .page-numbers:hover,
.em-catalogo-pagination .page-numbers.current {
  background: #287847;
  color: #fff;
  border-color: #287847;
}
.em-catalogo-pagination .page-numbers.prev,
.em-catalogo-pagination .page-numbers.next {
  font-weight: 600;
}

.em-catalogo-produtos-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}
.em-catalogo-produtos-swiper .swiper-controls {
  margin-top: 24px;
  padding: 0 16px;
}
.em-catalogo-produtos-swiper .swiper-button-prev,
.em-catalogo-produtos-swiper .swiper-button-next {
  position: static;
  margin: 0;
  width: 48px !important;
  height: 48px !important;
  background: #006033 !important;
  color: #fff !important;
  border-radius: 0 !important;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.em-catalogo-produtos-swiper .swiper-button-prev:hover,
.em-catalogo-produtos-swiper .swiper-button-next:hover {
  background: #287847;
  color: #fff;
  transform: scale(1.05);
}
.em-catalogo-produtos-swiper .swiper-button-prev::after,
.em-catalogo-produtos-swiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}
.em-catalogo-produtos-swiper .swiper-button-prev.swiper-button-disabled,
.em-catalogo-produtos-swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.em-catalogo-produtos-swiper .swiper-button-prev.swiper-button-disabled:hover,
.em-catalogo-produtos-swiper .swiper-button-next.swiper-button-disabled:hover {
  background: #f3f5f5;
  color: #287847;
  transform: none;
}
.em-catalogo-produtos-swiper .swiper-button-prev::after {
  content: "←";
}
.em-catalogo-produtos-swiper .swiper-button-next::after {
  content: "→";
}
.em-catalogo-produtos-swiper .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.em-catalogo-produtos-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 5px !important;
  height: 5px !important;
  background: #d1d5db;
  border-radius: 50% !important;
  opacity: 1;
  margin: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.em-catalogo-produtos-swiper
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #287847;
  width: 9px !important;
  height: 9px !important;
}
.em-catalogo-produtos-swiper
  .swiper-pagination
  .swiper-pagination-bullet:hover {
  background: #287847;
  transform: scale(1.2);
}

@media (max-width: 1023px) {
  .em-catalogo-banner .row {
    flex-direction: column-reverse;
  }
  .em-catalogo-banner-image {
    margin-bottom: 0;
  }
  .em-catalogo-produtos .swiper-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding: 0 16px;
    gap: 16px;
  }
  .em-catalogo-produtos .swiper-controls .swiper-button-prev,
  .em-catalogo-produtos .swiper-controls .swiper-button-next {
    position: static;
    margin: 0;
    width: 44px;
    height: 44px;
    background: #f3f5f5;
    border: 2px solid #287847;
    border-radius: 50%;
    color: #287847;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .em-catalogo-produtos .swiper-controls .swiper-button-prev:hover,
  .em-catalogo-produtos .swiper-controls .swiper-button-next:hover {
    background: #287847;
    color: #fff;
    transform: scale(1.05);
  }
  .em-catalogo-produtos
    .swiper-controls
    .swiper-button-prev.swiper-button-disabled,
  .em-catalogo-produtos
    .swiper-controls
    .swiper-button-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  .em-catalogo-produtos
    .swiper-controls
    .swiper-button-prev.swiper-button-disabled:hover,
  .em-catalogo-produtos
    .swiper-controls
    .swiper-button-next.swiper-button-disabled:hover {
    background: #f3f5f5;
    color: #287847;
    transform: none;
  }
  .em-catalogo-produtos .swiper-controls .swiper-button-prev::after,
  .em-catalogo-produtos .swiper-controls .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
  }
  .em-catalogo-produtos .swiper-controls .swiper-button-prev::after {
    content: "←";
  }
  .em-catalogo-produtos .swiper-controls .swiper-button-next::after {
    content: "→";
  }
  .em-catalogo-produtos .swiper-controls .swiper-pagination {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin: 0;
  }
  .em-catalogo-produtos
    .swiper-controls
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d1d5db;
    border-radius: 50%;
    opacity: 1;
    margin: 0 4px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .em-catalogo-produtos
    .swiper-controls
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #287847;
    width: 24px;
    border-radius: 12px;
  }
  .em-catalogo-produtos
    .swiper-controls
    .swiper-pagination
    .swiper-pagination-bullet:hover {
    background: #287847;
    transform: scale(1.2);
  }
}
.page-template-page-unidades .em-catalogo-banner .hero-content {
  width: 745px;
  max-width: max-content;
}

.wpcf7 {
  border-radius: 30px;
  border: 1px solid #7bcb4a;
  padding: 20px;
  margin: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 600px) {
  .wpcf7 {
    margin-bottom: 60px !important;
    margin: 60px 20px 40px 20px;
    padding: 15px;
  }
  .em-catalogo-produtos .swiper-controls .swiper-pagination {
    display: none;
  }
}
.wpcf7 form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 600px) {
  .wpcf7 form {
    padding-top: 8%;
  }
}
.wpcf7 .wpcf7-submit {
  background: #287847;
  width: 100%;
  border: none;
  color: #fff;
}
.wpcf7 input {
  border-radius: 30px;
  border: none;
  background: #ccc;
}
@media (max-width: 600px) {
  .wpcf7 input {
    width: 100%;
  }
}
.wpcf7 p {
  font-weight: bolder;
}
@media (max-width: 600px) {
  .wpcf7 p {
    font-size: 16px !important;
  }
}

.search-field {
  border: 1px solid #287847;
  background: #f3f5f5;
  border-radius: 10px;
  width: 220px;
}

.search-submit {
  background: #287847;
  border-radius: 10px;
  border: none;
  color: #fff;
  padding: 3px 15px;
}

.header-top .search-input {
  background: transparent;
  padding: 0;
}
.header-top .search-input .search-submit {
  border: none;
  background: transparent;
}
.header-top .search-input .search-submit i {
  color: gray;
}
.header-top .search-input .search-field {
  border: none;
  background: transparent;
}

@media (max-width: 1023px) {
  #search-form-mob {
    background: #f3f5f5;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #search-form-mob .search-field {
    width: 100%;
  }
  #search-form-mob .search-form label {
    width: 80%;
  }
  #search-form-mob .search-form form {
    width: 100%;
    text-align: center;
  }
  .header-top-mob .search-form {
    background: transparent;
    padding: 0;
  }
  .header-top-mob .search-form .search-submit {
    border: none;
    background: transparent;
  }
  .header-top-mob .search-form .search-submit i {
    color: gray;
  }
  .header-top-mob .search-form .search-field {
    border: none;
    background: transparent;
  }
}
.em-blog-banner {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .em-blog-banner {
    min-height: 560px;
  }
  .em-blog-banner .row > * {
    padding-right: 0 !important;
  }
}
.em-blog-banner .em-blog-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  display: flex;
  align-items: center;
}
.em-blog-banner .em-blog-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, #000000 100%);
  z-index: 1;
}
@media (max-width: 1023px) {
  .em-blog-banner .em-blog-banner-overlay {
    display: none;
  }
}
.em-blog-banner .container {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: start;
}
.em-blog-banner .em-blog-banner-content {
  width: 375px;
  height: auto;
  background-color: #f3f3f3;
  color: #000;
  padding: 24px;
}
@media (max-width: 1023px) {
  .em-blog-banner .em-blog-banner-content {
    width: 183px;
    padding: 12px;
    margin-top: 100px;
  }
}
.em-blog-banner .em-blog-banner-title {
  font-family: "Kode Mono", monospace, sans-serif;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 130%;
  color: #094528;
}
@media (max-width: 1023px) {
  .em-blog-banner .em-blog-banner-title {
    font-size: 32px !important;
  }
}
.em-blog-banner .em-blog-banner-subtitle {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  line-height: 1.6;
  color: #018343;
}
@media (max-width: 1023px) {
  .em-blog-banner .em-blog-banner-subtitle {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .em-blog-banner .em-blog-banner-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}
.em-blog-banner .em-blog-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.em-blog-banner .em-blog-breadcrumb .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
}
.em-blog-banner
  .em-blog-breadcrumb
  .breadcrumb
  .breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.7);
}
.em-blog-banner .em-blog-breadcrumb .breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}
.em-blog-banner .em-blog-breadcrumb .breadcrumb .breadcrumb-item a:hover {
  color: #fff;
  text-decoration: underline;
}
.em-blog-banner .em-blog-breadcrumb .breadcrumb .breadcrumb-item a i {
  margin-right: 4px;
}
.em-blog-banner .em-blog-breadcrumb .breadcrumb .breadcrumb-item.active {
  color: #fff;
  font-weight: 600;
}
.em-blog-banner .em-blog-breadcrumb .breadcrumb .breadcrumb-item.active i {
  margin-right: 4px;
}

.blog-section-title {
  font-family: "Kode Mono", monospace, sans-serif;
  color: #287847;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 1023px) {
  .blog-section-title {
    font-size: 2rem;
  }
}

.blog-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.blog-item .blog-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.blog-item .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-item .blog-image img:hover {
  transform: scale(1.05);
}
.blog-item .blog-image .no-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f3f5f5 0%, #696969 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
}
.blog-item .blog-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-item .blog-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.blog-item .blog-meta span {
  color: #666666;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-item .blog-meta span i {
  color: #287847;
}
@media (max-width: 600px) {
  .blog-item .blog-meta {
    flex-direction: column;
    gap: 8px;
  }
}
.blog-item h3 {
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
}
.blog-item h3 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-item h3 a:hover {
  color: #287847;
}
.blog-item .blog-excerpt {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.blog-item .blog-read-more {
  color: #287847;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.blog-item .blog-read-more:hover {
  color: #7bcb4a;
  transform: translateX(5px);
}
.blog-item .blog-read-more i {
  font-size: 0.8rem;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  margin: 0 4px;
  color: #1a1a1a;
  text-decoration: none;
  border: 1px solid #f3f5f5;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.blog-pagination .page-numbers:hover {
  background: #287847;
  color: #fff;
  border-color: #287847;
}
.blog-pagination .page-numbers.current {
  background: #287847;
  color: #fff;
  border-color: #287847;
}
.blog-pagination .page-numbers.dots {
  border: none;
  padding: 16px;
  color: #666666;
}
.blog-pagination .page-numbers.dots:hover {
  background: transparent;
  color: #666666;
}
@media (max-width: 600px) {
  .blog-pagination .page-numbers {
    padding: 8px 16px;
    margin: 0 2px;
    font-size: 14px;
  }
}

.no-posts {
  text-align: center;
  padding: 48px;
  background: #f3f5f5;
  border-radius: 20px;
}
.no-posts h3 {
  color: #287847;
  margin-bottom: 24px;
}
.no-posts p {
  color: #666666;
  margin: 0;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  color: #287847;
  margin-top: 32px;
  margin-bottom: 24px;
}
.post-content p {
  margin-bottom: 24px;
  line-height: 1.7;
}
.post-content ul,
.post-content ol {
  margin-bottom: 24px;
  padding-left: 32px;
}
.post-content ul li,
.post-content ol li {
  margin-bottom: 8px;
}
.post-content blockquote {
  border-left: 4px solid #287847;
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: #666666;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  color: #287847;
  text-decoration: none;
  padding: 16px 24px;
  border: 1px solid #287847;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  background: #287847;
  color: #fff;
}
@media (max-width: 600px) {
  .post-navigation {
    text-align: center;
  }
  .post-navigation .nav-previous,
  .post-navigation .nav-next {
    display: block;
    margin-bottom: 16px;
  }
}

.comments-area {
  margin-top: 48px;
}
.comments-area .comments-title {
  color: #287847;
  margin-bottom: 32px;
}
.comments-area .comment-list {
  list-style: none;
  padding: 0;
}
.comments-area .comment-list .comment {
  margin-bottom: 32px;
  padding: 24px;
  background: #f3f5f5;
  border-radius: 8px;
}
.comments-area .comment-list .comment .comment-author {
  font-weight: bold;
  color: #287847;
}
.comments-area .comment-list .comment .comment-meta {
  font-size: 14px;
  color: #666666;
  margin-bottom: 16px;
}
.comments-area .comment-respond {
  margin-top: 32px;
}
.comments-area .comment-respond .comment-reply-title {
  color: #287847;
  margin-bottom: 24px;
}

.archive-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 32px 0;
  background: #f3f5f5;
  border-radius: 20px;
}
.archive-header .archive-title {
  color: #287847;
  margin-bottom: 16px;
  font-size: 24px;
}
.archive-header .archive-description {
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}

.category .posts-grid,
.tag .posts-grid,
.author .posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 600px) {
  .category .posts-grid,
  .tag .posts-grid,
  .author .posts-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 16px 24px;
  border: 1px solid #287847;
  color: #287847;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: #287847;
  color: #fff;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  font-weight: bold;
}
@media (max-width: 600px) {
  .pagination {
    flex-wrap: wrap;
    gap: 8px;
  }
  .pagination .page-numbers {
    padding: 8px 16px;
    font-size: 14px;
  }
}

.archive-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.archive-filters .filter-button {
  padding: 16px 24px;
  background: transparent;
  border: 1px solid #287847;
  color: #287847;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.archive-filters .filter-button:hover,
.archive-filters .filter-button.active {
  background: #287847;
  color: #fff;
}
@media (max-width: 600px) {
  .archive-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 16px;
  }
  .archive-filters .filter-button {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

.no-posts-found {
  text-align: center;
  padding: 48px;
  background: #f3f5f5;
  border-radius: 20px;
}
.no-posts-found h2 {
  color: #287847;
  margin-bottom: 24px;
}
.no-posts-found p {
  color: #666666;
  margin-bottom: 32px;
}
.no-posts-found .search-form {
  max-width: 400px;
  margin: 0 auto;
}

.sidebar .widget {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.sidebar .widget .widget-title {
  color: #287847;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #7bcb4a;
  font-size: 18px;
}
.sidebar .widget ul {
  list-style: none;
  padding: 0;
}
.sidebar .widget ul li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f5f5;
}
.sidebar .widget ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.sidebar .widget ul li a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}
.sidebar .widget ul li a:hover {
  color: #287847;
}
.sidebar .widget_recent_entries ul li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.sidebar .widget_recent_entries ul li .post-date {
  font-size: 14px;
  color: #666666;
  white-space: nowrap;
}
.sidebar .widget_categories ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar .widget_categories ul li .post-count {
  background: #7bcb4a;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.sidebar .widget_tag_cloud .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sidebar .widget_tag_cloud .tagcloud a {
  background: #f3f5f5;
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px !important;
  transition: all 0.3s ease;
}
.sidebar .widget_tag_cloud .tagcloud a:hover {
  background: #287847;
  color: #fff;
}
.sidebar .widget_search .search-form {
  position: relative;
}
.sidebar .widget_search .search-form .search-field {
  width: 100%;
  padding: 16px 24px;
  border: 1px solid #696969;
  border-radius: 8px;
  background: #fff;
}
.sidebar .widget_search .search-form .search-field:focus {
  outline: none;
  border-color: #287847;
}
.sidebar .widget_search .search-form .search-submit {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #287847;
  cursor: pointer;
}
@media (max-width: 600px) {
  .sidebar {
    margin-top: 48px;
  }
  .sidebar .widget {
    padding: 24px;
  }
}

.footer {
  background-color: #006033;
  color: #fff;
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
}
.footer .footer-main {
  background: #006033;
  color: #fff;
  padding: 32px 0;
}
.footer .footer-main .container {
  gap: 64px;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 600px) {
  .footer .footer-main .container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: left !important;
    gap: 32px !important;
    max-width: 95vw;
    padding: 0 8px;
  }
}
@media (max-width: 600px) {
  .footer .footer-main {
    padding: 48px !important;
  }
}
.footer .footer-logo-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-width: 180px;
}
@media (max-width: 600px) {
  .footer .footer-logo-social {
    min-width: unset !important;
    width: 100%;
    align-items: center !important;
    text-align: center;
  }
}
.footer .footer-logo {
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .footer .footer-logo {
    margin-bottom: 16px;
  }
}
.footer .footer-social {
  display: flex;
  gap: 16px;
}
@media (max-width: 600px) {
  .footer .footer-social {
    justify-content: center;
    margin-bottom: 16px;
  }
}
.footer .footer-social a {
  color: #fff;
  font-size: 32px;
  transition: color 0.2s;
}
.footer .footer-social a:hover {
  color: #b6ff7a;
}
.footer .footer-links {
  min-width: 180px;
}
@media (max-width: 600px) {
  .footer .footer-links {
    min-width: unset !important;
    width: 100%;
    align-items: center !important;
    text-align: center;
  }
}
.footer .footer-links h5 {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
}
@media (max-width: 600px) {
  .footer .footer-links h5 {
    text-align: left;
    width: 100%;
  }
}
.footer .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 600px) {
  .footer .footer-menu {
    text-align: left;
    width: 100%;
  }
}
.footer .footer-menu li {
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .footer .footer-menu li {
    margin-bottom: 12px;
  }
}
.footer .footer-menu a {
  color: #fff !important;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
  font-weight: 600;
}
.footer .footer-menu a:hover {
  color: #b6ff7a;
}
.footer .footer-text {
  min-width: 220px;
}
@media (max-width: 600px) {
  .footer .footer-text {
    min-width: unset !important;
    width: 100%;
    align-items: center !important;
    text-align: center;
  }
}
.footer .footer-text h5 {
  margin-bottom: 16px;
  font-weight: 300;
  font-style: Regular;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: 0%;
}
@media (max-width: 600px) {
  .footer .footer-text h5 {
    text-align: left;
    width: 100%;
  }
}
.footer .footer-bottom {
  background: #006033;
  color: #fff;
  border-top: 1px solid #fff;
  padding: 8px 0;
}
@media (max-width: 600px) {
  .footer .footer-bottom {
    border-top: 0 !important;
  }
}
.footer .footer-bottom .container {
  font-size: 13px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 1.7px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .footer .footer-bottom .container {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 8px;
    font-size: 12px;
    line-height: 16px;
    padding: 0 48px 48px 48px !important;
  }
}

.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.2392156863);
  border-radius: 0;
  border: 2px solid #fff;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.swiper-button-next i,
.swiper-button-prev i {
  font-size: 16px;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(40, 120, 71, 0.8);
  border-color: #287847;
  transform: scale(1.1);
}
@media (max-width: 1023px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

.swiper-button-next {
  right: 32px;
}
@media (max-width: 1023px) {
  .swiper-button-next {
    right: 24px;
  }
}

.swiper-button-prev {
  left: 32px;
}
@media (max-width: 1023px) {
  .swiper-button-prev {
    left: 24px;
  }
}

.swiper-pagination {
  bottom: 24px !important;
}
@media (max-width: 1023px) {
  .swiper-pagination {
    bottom: 24px;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  margin: 0 6px;
  border-radius: 0;
  transition: all 0.3s ease;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  width: 21px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.page-template-page-emprega p,
.page-template-page-emprega h2,
.page-template-page-emprega li {
  color: #183451 !important;
}

.page-template-page-emprega li {
  font-family: "Manrope", sans-serif;
}
.page-template-page-emprega .hero-content {
  background-color: #fff !important;
}
.page-template-page-emprega .hero-content h1,
.page-template-page-emprega .hero-content p {
  color: #105099 !important;
}
.page-template-page-emprega .btn-custom.blue {
  background: #183451 !important;
  color: #fff !important;
}
.page-template-page-emprega .btn-secondary-not-full {
  width: fit-content !important;
  background: #105099 !important;
  color: #fff !important;
}
.page-template-page-emprega .btn-custom.blue-transparente {
  color: #105099 !important;
  background: transparent !important;
  border: 2px solid #105099 !important;
}
.page-template-page-emprega .em-cta-section {
  background-color: #105099;
}
.page-template-page-emprega .blue .em-faq-title {
  color: #183451 !important;
}
.page-template-page-emprega .blue .em-faq-question {
  background: #183451 !important;
  color: #fff !important;
}
.page-template-page-emprega .blue .em-faq-icon {
  color: #fff !important;
}
.page-template-page-emprega .em-post-banner {
  background: #769dc8
    url("https://escoladomecanico.com.br///wp-content/uploads/2025/10/Rectangle-25.png") !important;
}
.page-template-page-emprega .em-post-banner-excerpt {
  color: #fff !important;
}
.page-template-page-emprega .em-post-banner-bg {
  background: url("https://escoladomecanico.com.br///wp-content/uploads/2025/11/Rectangle-36.png") !important;
  bottom: -467px !important;
}
.page-template-page-emprega .footer-main {
  background-color: #183451 !important;
}
.page-template-page-emprega .footer-bottom {
  background-color: #183451 !important;
}
.page-template-page-emprega .em-cta-section h2,
.page-template-page-emprega .em-cta-section p {
  color: #fff !important;
}
.page-template-page-emprega .em-cta-section .btn-secondary-not-full {
  background-color: #183451 !important;
}

@media (max-width: 768px) {
  .footer-main {
    padding: 48px !important;
  }
  .footer-main .container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: left !important;
    gap: 32px !important;
    max-width: 95vw;
    padding: 0 8px;
  }
  .footer-logo-social,
  .footer-links,
  .footer-text {
    min-width: unset !important;
    width: 100%;
    align-items: center !important;
    text-align: center;
  }
  .footer-logo {
    margin-bottom: 16px;
  }
  .footer-social {
    justify-content: center;
    margin-bottom: 16px;
  }
  .footer-links h5,
  .footer-text h5 {
    text-align: left;
    width: 100%;
  }
  .footer-menu {
    text-align: left;
    width: 100%;
  }
  .footer-menu li {
    margin-bottom: 12px;
  }
  .footer-bottom {
    border-top: 0 !important;
  }
  .footer-bottom .container {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 8px;
    font-size: 12px;
    line-height: 16px;
    padding: 0 48px 48px 48px !important;
  }
}
.navbar {
  font-weight: 400;
}

.tag {
  color: #287847;
}

/* 
.content{
    padding: 32px 0;
} */
.wp-block-embed__wrapper {
  height: 300px;
}

.wp-block-embed__wrapper iframe {
  height: 300px;
}

.spotify-shortcode {
  height: 300px;
}

.spotify-shortcode iframe {
  height: 280px;
  border-radius: 30px;
  width: 100%;
}

/* .carousel-width{
    width: 128%;
} */
/* .stories-width{
    width: 135%;
} */
.card p {
  color: #287847 !important;
}

.card h3 {
  font-weight: bolder;
  color: black;
}

a {
  text-decoration: none !important;
  /* Remove o sublinhado */
  color: inherit !important;
  /* Herda a cor do texto do contêiner pai */
}

a:hover,
a:focus {
  outline: none !important;
  /* Remove a borda ao focar */
  box-shadow: none !important;
  /* Remove a sombra ao passar o mouse */
}

.wpcf7 {
  border-radius: 30px;
  border: 1px solid green;
  padding: 20px;
  margin: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.wpcf7 form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wpcf7 form .wpcf7-submit {
  background: #287847;
  width: 100%;
  border: none;
  color: white;
}

.wpcf7 input {
  border-radius: 30px;
  border: none;
  background: #ccc;
}

.wpcf7 p {
  font-weight: bolder;
}

.navbar-toggler {
  border: none !important;
}

.navbar-toggler span {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M2 6h20v2H2V6zm0 5h20v2H2v-2zm0 5h20v2H2v-2z' fill='%23fff'/%3e%3c/svg%3e");
}

.navbar-toggler[aria-expanded="true"] span {
  background-image: url("data:image/svg+xml,%3csvg width='25' height='16' viewBox='0 0 25 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15.1667 2.99875e-06L15.1667 2.66667L9.83333 2.66667L9.83333 2.5325e-06L15.1667 2.99875e-06ZM20.5 6.66667L20.5 9.33334L4.5 9.33334L4.5 6.66667L20.5 6.66667ZM24.5 13.3333L24.5 16L0.5 16L0.5 13.3333L24.5 13.3333Z' fill='white'/%3e%3c/svg%3e");
}

/* SVG Icon: Dehaze */
.icon-dehaze {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M2 6h20v2H2V6zm0 5h20v2H2v-2zm0 5h20v2H2v-2z' fill='%23287847'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 24px 24px;
}

/* SVG Icon: Filter List */
.icon-filter-list {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M10 18h4v-2h-4v2zm-7-8v2h18v-2H3zm3-6v2h12V4H6z' fill='%23287847'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 24px 24px;
}

/* Footer customizado */
.footer {
  background-color: #006033;
  color: #fff;
  font-family: "Manrope", Arial, "Kode Mono", monospace, sans-serif;
}

.footer-main {
  background: #006033;
  color: #fff;
  padding: 32px 0;
}

.footer-main .container {
  gap: 64px;
  flex-direction: row;
  justify-content: center !important;
}

.footer-logo-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-width: 180px;
}

.footer-logo {
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: #fff;
  font-size: 32px;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #b6ff7a;
}

.footer-links {
  min-width: 180px;
}

.footer-links h5 {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 8px;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
  font-weight: 600;
}

.footer-menu a:hover {
  color: #b6ff7a;
}

.footer-text {
  min-width: 220px;
}

.footer-text h5 {
  margin-bottom: 16px;
  font-weight: 300;
  font-style: Regular;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: 0%;
}

.footer-bottom {
  background: #006033;
  color: #fff;
  border-top: 1px solid #fff;
  padding: 8px 0;
}

.footer-bottom .container {
  font-size: 13px;
  font-weight: 400;
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 1.7px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none !important;
}

.entry-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 10px;
}

.entry-header .category {
  color: #287847;
}

.entry-header .date {
  color: gray;
}

.social .icon i {
  color: #287847;
}

.search-content,
.not-found h1 {
  color: #287847;
}

.search-field {
  border: 1px solid #287847;
  background: #f3f5f5;
  border-radius: 10px;
}

.search-submit {
  background: #287847;
  border-radius: 10px;
  border: none;
  color: white;
  padding: 3px 15px;
}

/* 
.search article {
    border-bottom: 1px solid #287847;
    margin-bottom: 20px;
    padding: 10px;
}

.search article:hover {
    background: #287847;
    color: white;
    border-radius: 10px;
} */
.search .entry-header {
  margin-bottom: 5px;
}

.search .entry-summary {
  text-align: center;
}

.search .card {
  text-align: center;
  background: #f8f9fa;
  border-radius: 30px;
  border-color: transparent;
}

.search .card .image {
  height: 285px;
  background-position: center;
  background-size: cover;
  width: 100%;
  border-radius: 30px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search .card .image .icon {
  width: 70px;
  height: 70px;
  background: white;
  border: 5px solid black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.search .card h4 {
  font-size: 1.2rem;
  margin: 10px 0;
  font-weight: bolder;
}

.search .card p {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 1024px) {
  .search {
    flex-direction: column;
  }
  .search .card {
    width: 100%;
    display: flex;
    height: auto;
  }
  .search .card img {
    width: 50%;
    height: max-content;
  }
  .search .card .text {
    padding-top: 25px;
    margin-left: 15px;
  }
}
.archive .card {
  text-align: center;
  background: #f8f9fa;
  border-radius: 30px;
  border-color: transparent;
}

.archive .card .image {
  height: 285px;
  background-position: center;
  background-size: cover;
  width: 100%;
  border-radius: 30px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive .card .image .icon {
  width: 70px;
  height: 70px;
  background: white;
  border: 5px solid black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.archive .card h4 {
  font-size: 1.2rem;
  margin: 10px 0;
  font-weight: bolder;
}

.archive .card p {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 1024px) {
  .archive {
    flex-direction: column;
  }
  .archive .card {
    width: 100%;
    display: flex;
    height: auto;
  }
  .archive .card img {
    width: 50%;
    height: max-content;
  }
  .archive .card .text {
    padding-top: 25px;
    margin-left: 15px;
  }
}
.archive .entry-header {
  margin-bottom: 5px;
}

.archive .entry-summary {
  text-align: center;
}

.not-found h2 {
  color: #287847;
}

.blog .cards {
  text-align: center;
  background: #f8f9fa;
  border-radius: 30px;
  border-color: transparent;
}

.blog .card {
  height: auto;
}

.blog .cards .image {
  height: 180px;
  background-position: center;
  background-size: cover;
  width: 100%;
  border-radius: 30px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .cards .image .icon {
  width: 70px;
  height: 70px;
  background: white;
  border: 5px solid black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.blog .cards h4 {
  font-size: 1.2rem;
  margin: 10px 0;
  font-weight: bolder;
}

.blog .cards p {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 1024px) {
  .blog {
    flex-direction: column;
  }
  .blog .cards {
    width: 100%;
    display: flex;
    height: auto;
  }
  .blog .cards img {
    width: 50%;
    height: max-content;
  }
  .blog .cards .text {
    padding-top: 25px;
    margin-left: 15px;
  }
}
.blog h1 {
  color: #287847;
}

.page-header h1 {
  color: #287847;
}

.page-numbers.current {
  color: #287847;
}

.header-top .search-input {
  background: transparent;
  padding: 0;
}

.header-top .search-input .search-submit {
  border: none;
  background: transparent;
}

.header-top .search-input .search-submit i {
  color: gray;
}

.header-top .search-input .search-field {
  border: none;
  background: transparent;
}

.header-top .icons a {
  background-color: transparent !important;
}

@media (max-width: 1024px) {
  #social-networks {
    background: #287847;
    padding-top: 40px;
    padding-bottom: 10px;
    padding-left: 20px !important;
    display: flex;
    gap: 10px;
    font-size: 20px;
  }
  #social-networks i {
    color: white;
  }
  #search-form-mob {
    background: #f3f5f5;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #search-icon {
    color: white;
    font-size: 20px;
    padding: 0 15px;
    cursor: pointer;
  }
  #search-icon i {
    color: white;
  }
  #search-form-mob .search-field {
    width: 100%;
  }
  #search-form-mob .search-form label {
    width: 80%;
  }
  #search-form-mob form {
    width: 100%;
    text-align: center;
  }
  .header-top-mob .search-form {
    background: transparent;
    padding: 0;
  }
  .header-top-mob .search-form .search-submit {
    border: none;
    background: transparent;
  }
  .header-top-mob .search-form .search-submit i {
    color: gray;
  }
  .header-top-mob .search-form .search-field {
    border: none;
    background: transparent;
  }
}
.info .disclaimer {
  color: black;
  border: 1px solid green;
}

.info {
  position: relative;
}

.info img {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
}

.centered-thumbnail {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.latest-posts .list .image {
  display: none;
}

/* Personalizar */
.menu-item {
  align-items: center;
  display: flex;
}

.nav-link :hover .menu-item :hover {
  background: #287847 !important;
  color: white !important;
}

.carousel-youtube .slick-prev,
.carousel-youtube .slick-next {
  top: 40%;
}

.slick-prev {
  z-index: 1000;
}

.list .card {
  margin-left: 12%;
}

.latest-posts.flex-direction-row-reverse .list .card {
  margin-right: 12%;
}

.type-post h2 {
  padding: 20px 0;
}

.card {
  background: transparent !important;
}

.disclaimer {
  text-align: center;
}

.disclaimer a {
  background: #287847;
  color: white !important;
  padding: 10px;
  border-radius: 50px;
}

.category-edicoes-revista-abecs-panorama .card .image {
  height: 400px !important;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 0px;
}

.row > .carousel-single .carousel-card {
  width: 100% !important;
}

article .has-background {
  text-align: center;
  font-size: 20px !important;
}

article h2 {
  font-size: 1.6rem;
}

@media (min-width: 1024px) {
  .single-post article .entry-content,
  .single-post article .entry-header {
    padding: 0px 64px;
  }
  .shorts,
  .carousel-youtube {
    margin-left: 5% !important;
  }
}
.carousel-youtube .slick-track .carousel-card {
  width: 98% !important;
}

.has-text-color {
  font-size: 30px !important;
}

.has-x-large-font-size {
  color: #287847 !important;
  font-weight: bold;
  font-size: 40px !important;
}

.carousel .slick-track .carousel-card {
  width: 100% !important;
}

.col-md-7 .carousel-single {
  margin-left: 5%;
}

@media (max-width: 580px) {
  .invisible {
    display: none;
  }
  .disclaimer p {
    font-size: 14px;
  }
  .latest-posts .card .image,
  .cards-list .card .image,
  .card-single .card .image {
    height: 192px !important;
  }
  .disclaimer {
    margin: 60px 20px 40px 20px;
  }
  .info img {
    top: 36px;
  }
  .has-x-large-font-size,
  .has-large-font-size {
    font-size: 2rem !important;
  }
  h3 {
    font-size: 1.2rem !important;
  }
  .wpcf7 {
    margin-bottom: 60px !important;
  }
  .wpcf7 p {
    font-size: 16px !important;
  }
  .wpcf7 input {
    width: 100%;
  }
  .wp-block-image img {
    height: auto !important;
  }
  .centered-thumbnail {
    width: 100% !important;
  }
  .latest-posts .list .card {
    height: auto !important;
  }
  .latest-posts .card.featured {
    padding: 20px 0;
  }
  .cards .card {
    flex-direction: column;
  }
  .carousel-youtube .slick-track .carousel-card {
    height: 162px !important;
  }
  .wp-block-embed__wrapper {
    height: auto !important;
  }
  .col-md-7 .carousel-single {
    margin-left: 0% !important;
  }
  .row > .carousel-single .carousel-card {
    width: 98% !important;
  }
  .carousel-youtube .slick-track .carousel-card {
    width: 98% !important;
  }
  .cards .card-link {
    display: flex;
    justify-content: center;
  }
  .latest-posts.flex-direction-row-reverse .list .card,
  .cards-list.flex-direction-row-reverse .list .card {
    margin-right: 0%;
  }
  .latest-posts .list .card,
  .cards-list .list .card {
    margin-right: 0%;
  }
  .shorts-cobertura .carousel-card {
    height: 313px !important;
    width: 175px !important;
  }
}
article p {
  font-size: 20px;
}

.cards .card {
  width: 304px;
}

.cartilhas .card-single .card .image {
  height: 350px;
  background-position: center;
  background-size: contain;
  width: 100%;
  border-radius: 30px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
}

.col-md-7 .carousel-single .slick-prev,
.col-md-7 .carousel-single .slick-next {
  top: 40%;
}

.cards-list .list .card {
  height: auto;
}

.videoaulas .slick-prev,
.videoaulas .slick-next {
  top: 50%;
}

.banner img {
  width: 100% !important;
  height: auto !important;
}

.videoaulas .carousel-card {
  height: 140px !important;
  width: 250px !important;
  border-radius: 15px !important;
}

.videoaulas .slick-prev {
  left: -15px;
}

.heading p {
  margin-bottom: 0;
}

.heading {
  padding-bottom: 0;
}

/* .dropdown-toggle.nav-link,
.nav-item {
  color: #287847 !important;
} */

.dropdown-toggle.nav-link:hover,
.dropdown-item:hover {
  color: #287847 !important;
}

.wp-block-embed__wrapper {
  display: flex;
  justify-content: center;
}

.search-field {
  width: 220px;
}

.centered-thumbnail {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.has-background {
  border-radius: 20px;
}

.wpcf7 {
  padding-top: 50px;
  padding: 15px;
  margin: 0px;
}

.shorts-cobertura .carousel-card {
  height: 313px !important;
  width: 175px !important;
}

.wpcf7 form {
  padding-top: 8%;
}

/* .dropdown-menu .dropdown-item:hover {
  color: white !important;
} */

#navbarNav {
  justify-content: center;
}

.links a {
  color: #287847 !important;
  text-decoration: underline !important;
}

#navbarNav .navbar-nav {
  margin-left: 0 !important;
  gap: 48px;
}

.webinario .card-single .card .image {
  height: 195px;
}

.cards-list img {
  max-width: 100%;
  max-height: 400px;
  border-radius: 30px;
  margin-bottom: 10px;
  width: 100%;
}

.wp-block-embed__wrapper iframe {
  height: 283px;
  border-radius: 30px !important;
}

.wp-block-spellblocks-section-spell,
.wp-block-spellblocks-row-spell,
.wp-block-spellblocks-column-spell {
  background-color: #fff !important;
}

.header-main {
  display: none;
}

.header-top {
  display: none;
}

.header-bottom {
  display: none;
}

.wp-block-embed__wrapper iframe {
  max-height: 290px !important;
}

.btn-primary {
  width: fit-content;
  padding: 8px 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: left;
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  background: #006033;
  line-height: 130%;
  letter-spacing: 0%;
  color: #fff !important;
}

.btn-secondary {
  width: 100%;
  padding: 12px 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: left;
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  background: #00974b;
  line-height: 130%;
  letter-spacing: 0%;
  color: #fff !important;
}

.btn-secondary-not-full {
  width: auto;
  padding: 12px 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: left;
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  background: #00974b;
  line-height: 130%;
  letter-spacing: 0%;
  color: #fff !important;
}

.badge-escola {
  display: inline-block;
  background: #dbff3d;
  color: #006033;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: "Kode Mono", monospace, sans-serif;
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  width: fit-content;
}

.badge-banner {
  color: #dbff3d;
  background: #006033;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: "Kode Mono", monospace, sans-serif;
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  width: max-content;
}

.badge-banner.nivel {
  margin: 8px 16px 0;
  margin-bottom: 0 !important;
}
.badge-secondary {
  display: inline-block;
  font-family: Manrope;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 1.1px;
  color: #0f3824;
  padding: 22px 26px;
  background-repeat: no-repeat;
}

.btn-transparente {
  width: auto;
  padding: 12px 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: left;
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  background: transparent;
  line-height: 130%;
  letter-spacing: 0%;
  color: #fff !important;
  border: 1px solid #fff;
}

article {
  padding-bottom: 24px;
}
article .em-posts-carousel {
  background: none;
}

.btn-neon {
  width: auto;
  padding: 12px 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: left;
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  background: transparent;
  line-height: 130%;
  letter-spacing: 0%;
  color: #dbff3d !important;
  border: 1px solid #dbff3d;
  margin-bottom: 20px;
}

.page-template-page-franqueado .em-post-banner {
  padding: 48px 0 32px;
}

.page-template-page-franqueado .em-post-banner-image img {
  max-height: 242px !important;
  width: auto !important;
}

.page-template-page-franqueado .em-post-banner-bg {
  bottom: -630px;
}

@media (max-width: 1023px) {
  .page-template-page-franqueado .em-post-banner-bg {
    bottom: 33px;
  }
}
/*# sourceMappingURL=main.css.map */
