@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background-color: #000000;
  color: #FFFFFF;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 600;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 24px;
}

h1 {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  h1 {
    font-size: 20px;
  }
}

h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  h2 {
    font-size: 22px;
  }
}

h3 {
  font-size: 23px;
  font-weight: 900;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  h3 {
    font-size: 18px;
  }
}

p {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5em;
  color: #FFFFFF;
}

.highlight {
  color: #4DED65;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(77, 237, 101, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(77, 237, 101, 0.6);
  }
}
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-in {
  animation: slideIn 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.scale-in {
  animation: scaleIn 0.6s ease-out;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(77, 237, 101, 0.3);
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn:active {
  transform: translateY(-1px) scale(1.02);
}

.btn-primary {
  background-color: #4DED65;
  color: #000000;
}
.btn-primary:hover {
  background-color: rgba(77, 237, 101, 0.9);
}

.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.btn-secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.site-header {
  position: relative;
  background-color: #000000;
  box-shadow: 0px 12px 4px 0px rgba(77, 237, 101, 0.2);
  z-index: 1000;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 80px;
  position: relative;
}
@media (max-width: 1024px) {
  .header-content {
    padding: 30px 40px;
  }
}
@media (max-width: 768px) {
  .header-content {
    padding: 20px;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  z-index: 10;
}
.site-logo .logo-img {
  width: auto;
}
.site-logo .logo-text {
  font-size: 32px;
  font-weight: 900;
  color: #FFFFFF;
}

.main-navigation.desktop-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1024px) {
  .main-navigation.desktop-menu {
    display: none;
  }
}
.main-navigation.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #000000;
  padding: 20px;
  box-shadow: 0px 12px 4px 0px rgba(77, 237, 101, 0.2);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 1024px) {
  .main-navigation.mobile-menu {
    display: block;
  }
}
.main-navigation.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.menu-list {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .menu-list {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
.menu-list li {
  margin: 0;
}
.menu-list a {
  display: block;
  padding: 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  min-width: 140px;
  height: 34px;
  line-height: 34px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.menu-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #4DED65;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.menu-list a:hover {
  color: #4DED65;
  transform: translateY(-2px);
}
.menu-list a:hover::after {
  width: 80%;
}
@media (max-width: 1024px) {
  .menu-list a {
    text-align: left;
    padding: 10px 0;
    min-width: auto;
    height: auto;
    line-height: 1.5;
  }
}

.header-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1024px) {
  .header-social {
    display: none;
  }
}
.header-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #FFFFFF;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  position: relative;
}
.header-social .social-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  transition: transform 0.3s ease;
}
.header-social .social-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.header-social .social-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(77, 237, 101, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  z-index: -1;
}
.header-social .social-icon:hover {
  color: #4DED65;
  transform: translateY(-3px) scale(1.1);
}
.header-social .social-icon:hover svg,
.header-social .social-icon:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}
.header-social .social-icon:hover::before {
  width: 40px;
  height: 40px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 10;
}
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #FFFFFF;
  transition: 0.3s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

body.menu-open {
  overflow: hidden;
}

.site-footer {
  background-color: #000000;
  padding-top: 0;
  box-shadow: 0px -10px 4px 0px rgba(77, 237, 101, 0.25);
  position: relative;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding: 35px 95px;
  background-color: #000000;
  border-radius: 30px 30px 0 0;
}
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 40px;
  }
}
@media (max-width: 768px) {
  .footer-content {
    padding: 20px;
    gap: 30px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col-logo {
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-col-contact {
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-col-social {
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-logo {
  width: 115px;
  height: 115px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .footer-logo {
    width: 80px;
    height: 80px;
  }
}

.footer-contact-title {
  font-size: 23px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0;
}

.footer-social-title {
  font-size: 23px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
}
.contact-item .contact-label {
  min-width: 80px;
}
.contact-item .contact-value {
  color: #FFFFFF;
  transition: 0.3s ease;
}
.contact-item .contact-value:hover {
  color: #4DED65;
}

.contact-item-phones .contact-phones {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.contact-item-phones .contact-separator {
  color: #FFFFFF;
  margin: 0 4px;
}

.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #FFFFFF;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.footer-social .social-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  transition: transform 0.3s ease;
}
.footer-social .social-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  position: relative;
  z-index: 1;
}
.footer-social .social-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(77, 237, 101, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease-out, height 0.4s ease-out, top 0.4s ease-out, left 0.4s ease-out;
  z-index: 0;
}
.footer-social .social-icon:hover {
  color: #4DED65;
  transform: translateY(-3px) scale(1.1);
}
.footer-social .social-icon:hover svg,
.footer-social .social-icon:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}
.footer-social .social-icon:hover::before {
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
}

.footer-bottom {
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(77, 237, 101, 0.2);
}

.footer-copyright {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.front-page {
  background-color: #000000;
  color: #FFFFFF;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 594px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .hero-section {
    height: 500px;
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    height: 400px;
    margin-top: 80px;
  }
}
.hero-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-section .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation: scaleIn 1.2s ease-out;
}
.hero-section:hover .hero-background img {
  transform: scale(1.05);
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 919px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeInUp 1s ease-out;
}
.hero-section .hero-title {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.5em;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
  animation: fadeIn 0.8s ease-out 0.2s both;
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  .hero-section .hero-title {
    font-size: 20px;
  }
}
.hero-section .btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  min-width: 355px;
  height: 50px;
  border: none;
  border-radius: 0 0 20px 20px;
  font-size: 28px;
  font-weight: 600;
  color: #4DED65;
  text-align: center;
  box-shadow: -5px 4px 4px 0px rgba(77, 237, 101, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: black;
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.6s ease-out 0.4s both;
}
.hero-section .btn-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(77, 237, 101, 0.2), transparent);
  transition: left 0.5s ease;
}
.hero-section .btn-hero:hover {
  color: #FFFFFF;
  box-shadow: -10px 10px 8px 0px rgba(77, 237, 101, 0.4);
  transform: translateY(-3px);
}
.hero-section .btn-hero:hover::before {
  left: 100%;
}
.hero-section .btn-hero:active {
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .hero-section .btn-hero {
    font-size: 24px;
    min-width: 280px;
    height: 45px;
    padding: 15px 10px;
  }
}
@media (max-width: 640px) {
  .hero-section .btn-hero {
    font-size: 20px;
    min-width: 240px;
    height: 40px;
    padding: 10px;
  }
}

.servicos-section {
  position: relative;
  width: 100%;
  padding: 50px 0;
  background-color: rgba(115, 115, 115, 0.1);
  margin-top: -1px;
}
.servicos-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 139px;
}
@media (max-width: 1024px) {
  .servicos-section .container {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .servicos-section .container {
    padding: 0 40px;
  }
}
@media (max-width: 640px) {
  .servicos-section .container {
    padding: 0 20px;
  }
}
.servicos-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.servicos-section .section-header .section-title {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0;
  background-color: rgba(77, 237, 101, 0.7);
  border-radius: 0 30px 30px 30px;
  box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.54);
  padding: 10px 30px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
  color: #000000;
}
@media (max-width: 768px) {
  .servicos-section .section-header .section-title {
    font-size: 24px;
    padding: 8px 20px;
  }
}
@media (max-width: 640px) {
  .servicos-section .section-header .section-title {
    font-size: 20px;
    padding: 6px 15px;
  }
}
.servicos-section .servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
}
@media (max-width: 1024px) {
  .servicos-section .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .servicos-section .servicos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.servicos-section .servico-card {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: -10px 10px 4px 0px rgba(77, 237, 101, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}
.servicos-section .servico-card:nth-child(1) {
  animation-delay: 0.1s;
}
.servicos-section .servico-card:nth-child(2) {
  animation-delay: 0.2s;
}
.servicos-section .servico-card:nth-child(3) {
  animation-delay: 0.3s;
}
.servicos-section .servico-card:nth-child(4) {
  animation-delay: 0.4s;
}
.servicos-section .servico-card:nth-child(5) {
  animation-delay: 0.5s;
}
.servicos-section .servico-card:nth-child(6) {
  animation-delay: 0.6s;
}
.servicos-section .servico-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.servicos-section .servico-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: -10px 10px 4px 0px rgba(77, 237, 101, 0.25), 0 20px 30px rgba(77, 237, 101, 0.4);
}
.servicos-section .servico-card:hover::before {
  opacity: 1;
}
.servicos-section .servico-card:hover .servico-image {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .servicos-section .servico-card {
    height: 300px;
  }
}
.servicos-section .servico-card .servico-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.servicos-section .servicos-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .servicos-section .servicos-button-wrapper {
    margin-top: 40px;
  }
}
@media (max-width: 640px) {
  .servicos-section .servicos-button-wrapper {
    margin-top: 30px;
  }
}
.servicos-section .btn-ver-servicos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  background-color: transparent;
  border: 2px solid #4DED65;
  border-radius: 20px;
  color: #4DED65;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.servicos-section .btn-ver-servicos::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #4DED65;
  transition: left 0.3s ease;
  z-index: -1;
}
.servicos-section .btn-ver-servicos:hover {
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(77, 237, 101, 0.3);
}
.servicos-section .btn-ver-servicos:hover::before {
  left: 0;
}
.servicos-section .btn-ver-servicos:active {
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .servicos-section .btn-ver-servicos {
    padding: 12px 30px;
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .servicos-section .btn-ver-servicos {
    padding: 10px 25px;
    font-size: 14px;
  }
}

.sobre-section {
  position: relative;
  width: 100%;
  padding: 50px 0;
  background-color: #000000;
}
.sobre-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 154px;
}
@media (max-width: 1024px) {
  .sobre-section .container {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .sobre-section .container {
    padding: 0 40px;
  }
}
@media (max-width: 640px) {
  .sobre-section .container {
    padding: 0 20px;
  }
}
.sobre-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.sobre-section .section-header .section-title {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0;
  background-color: rgba(77, 237, 101, 0.7);
  border-radius: 0 30px 30px 30px;
  box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.54);
  padding: 10px 30px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
  color: #000000;
}
@media (max-width: 768px) {
  .sobre-section .section-header .section-title {
    font-size: 24px;
    padding: 8px 20px;
  }
}
@media (max-width: 640px) {
  .sobre-section .section-header .section-title {
    font-size: 20px;
    padding: 6px 15px;
  }
}
.sobre-section .sobre-content {
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: -10px 10px 4px 0px rgba(77, 237, 101, 0.25);
  padding: 50px;
  max-width: 1132px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sobre-section .sobre-content {
    padding: 30px;
  }
}
@media (max-width: 640px) {
  .sobre-section .sobre-content {
    padding: 20px;
  }
}
.sobre-section .sobre-content p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  color: #000000;
  margin-bottom: 20px;
  text-align: left;
}
.sobre-section .sobre-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .sobre-section .sobre-content p {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .sobre-section .sobre-content p {
    font-size: 16px;
  }
}

.page-hero {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-hero {
    height: 45vh;
  }
}
@media (max-width: 640px) {
  .page-hero {
    height: 40vh;
  }
}
.page-hero .hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.5));
}
.page-hero .hero-decoration {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 300px;
  height: 300px;
  background-color: rgba(46, 125, 50, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}
.page-hero .hero-subtitle {
  font-size: 20px;
  color: rgba(17, 17, 17, 0.8);
  max-width: 600px;
  margin-top: 16px;
}

.hero-gradient {
  background: linear-gradient(135deg, #4DED65, #3ED555);
}
.hero-gradient .hero-overlay {
  display: none;
}
.hero-gradient .hero-badge {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.hero-gradient .hero-badge span {
  color: #FFFFFF;
}
.hero-gradient .hero-title {
  color: #FFFFFF;
}
.hero-gradient .hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.historia-section {
  padding: 100px 0;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .historia-section {
    padding: 80px 0;
  }
}
@media (max-width: 640px) {
  .historia-section {
    padding: 60px 0;
  }
}
.historia-section .historia-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background-color: rgba(46, 125, 50, 0.03);
  border-radius: 50%;
  filter: blur(60px);
}

.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .historia-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.historia-paragrafos p {
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .historia-paragrafos p {
    font-size: 17px;
  }
}
@media (max-width: 640px) {
  .historia-paragrafos p {
    font-size: 16px;
  }
}

.historia-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background-color: rgba(115, 115, 115, 0.1);
  border-radius: 12px;
}
.stat-item .stat-number {
  font-size: 32px;
  font-weight: 900;
  color: #4DED65;
}
.stat-item .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.historia-timeline {
  position: relative;
  padding-top: 48px;
}

.timeline-item {
  position: relative;
  padding-left: 48px;
  margin-bottom: 48px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #4DED65;
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.timeline-dot::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #FFFFFF;
}

.timeline-line {
  position: absolute;
  left: 15px;
  top: 40px;
  bottom: -48px;
  width: 2px;
  background: linear-gradient(to bottom, #4DED65, rgba(221, 221, 221, 0.3));
}

.timeline-content {
  background-color: #FFFFFF;
  border: 1px solid rgba(221, 221, 221, 0.3);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.08);
  transition: 0.3s ease;
}
.timeline-content:hover {
  box-shadow: 0 8px 30px rgba(46, 125, 50, 0.15);
}

.timeline-year {
  font-size: 28px;
  font-weight: 900;
  color: #4DED65;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.timeline-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.valores-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, rgba(115, 115, 115, 0.1), #FFFFFF);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .valores-section {
    padding: 80px 0;
  }
}
@media (max-width: 640px) {
  .valores-section {
    padding: 60px 0;
  }
}
.valores-section .valores-decoration {
  position: absolute;
  top: 50%;
  right: 0;
  width: 600px;
  height: 600px;
  background-color: rgba(46, 125, 50, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .valores-grid {
    grid-template-columns: 1fr;
  }
}

.valor-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(221, 221, 221, 0.3);
  position: relative;
  overflow: hidden;
  transition: 0.5s ease;
}
.valor-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-color: rgba(46, 125, 50, 0.05);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.valor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(46, 125, 50, 0.15);
}
.valor-card:hover::before {
  opacity: 1;
}
.valor-card:hover .valor-icon {
  transform: scale(1.1) rotate(6deg);
}

.valor-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #4DED65, #3ED555);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
}

.valor-title {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 900;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .valor-title {
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  .valor-title {
    font-size: 22px;
  }
}

.valor-text {
  font-size: 17px;
  color: rgba(17, 17, 17, 0.8);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .valor-text {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .valor-text {
    font-size: 15px;
  }
}

.valores-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.valores-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
}
@media (max-width: 768px) {
  .valores-list li {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .valores-list li {
    font-size: 15px;
  }
}
.valores-list li .valor-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #4DED65;
  margin-top: 8px;
  flex-shrink: 0;
}

.fecho-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #4DED65, #3ED555);
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .fecho-section {
    padding: 80px 0;
  }
}
@media (max-width: 640px) {
  .fecho-section {
    padding: 64px 0;
  }
}
.fecho-section .fecho-decoration-1,
.fecho-section .fecho-decoration-2 {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  filter: blur(60px);
}
.fecho-section .fecho-decoration-1 {
  top: 0;
  left: 33%;
  width: 400px;
  height: 400px;
}
.fecho-section .fecho-decoration-2 {
  bottom: 0;
  right: 33%;
  width: 300px;
  height: 300px;
}

.fecho-content {
  max-width: 900px;
  margin: 0 auto;
}

.fecho-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 10px 24px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
}
.fecho-badge svg {
  color: #FFFFFF;
}
.fecho-badge span {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}

.fecho-text {
  font-size: 36px;
  color: #FFFFFF;
  font-weight: 900;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .fecho-text {
    font-size: 28px;
  }
}
@media (max-width: 640px) {
  .fecho-text {
    font-size: 24px;
  }
}

.page-servicos {
  background-color: #000000;
  color: #FFFFFF;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 594px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .hero-section {
    height: 500px;
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    height: 400px;
    margin-top: 80px;
  }
}
.hero-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-section .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation: scaleIn 1.2s ease-out;
}
.hero-section:hover .hero-background img {
  transform: scale(1.05);
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 919px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeInUp 1s ease-out;
}
.hero-section .hero-title {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.5em;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
  animation: fadeIn 0.8s ease-out 0.2s both;
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 28px;
  }
}
@media (max-width: 640px) {
  .hero-section .hero-title {
    font-size: 24px;
  }
}
.hero-section .btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  min-width: 355px;
  background: black;
  border: none;
  border-radius: 0 0 20px 20px;
  font-size: 28px;
  font-weight: 600;
  color: #4DED65;
  text-align: center;
  box-shadow: -5px 4px 4px 0px rgba(77, 237, 101, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.6s ease-out 0.3s both;
}
.hero-section .btn-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(77, 237, 101, 0.2), transparent);
  transition: left 0.5s ease;
}
.hero-section .btn-hero:hover {
  color: #FFFFFF;
  box-shadow: -10px 10px 8px 0px rgba(77, 237, 101, 0.4);
  transform: translateY(-3px);
}
.hero-section .btn-hero:hover::before {
  left: 100%;
}
.hero-section .btn-hero:active {
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .hero-section .btn-hero {
    font-size: 24px;
    min-width: 280px;
    height: 45px;
    padding: 15px 10px;
  }
}
@media (max-width: 640px) {
  .hero-section .btn-hero {
    font-size: 20px;
    min-width: 240px;
    height: 40px;
    padding: 10px;
  }
}

.servico-item-section {
  position: relative;
  width: 100%;
  background-color: rgba(115, 115, 115, 0.1);
  padding: 0;
  margin-top: -1px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}
.servico-item-section:nth-child(1) {
  animation-delay: 0.1s;
}
.servico-item-section:nth-child(2) {
  animation-delay: 0.2s;
}
.servico-item-section:nth-child(3) {
  animation-delay: 0.3s;
}
.servico-item-section:nth-child(4) {
  animation-delay: 0.4s;
}
.servico-item-section:nth-child(5) {
  animation-delay: 0.5s;
}
.servico-item-section:nth-child(6) {
  animation-delay: 0.6s;
}
.servico-item-section:nth-child(7) {
  animation-delay: 0.7s;
}
.servico-item-section:nth-child(8) {
  animation-delay: 0.8s;
}
.servico-item-section:nth-child(9) {
  animation-delay: 0.9s;
}
.servico-item-section:nth-child(10) {
  animation-delay: 1s;
}
@media (max-width: 768px) {
  .servico-item-section {
    min-height: auto;
    padding: 40px 0;
  }
}

.servico-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  padding: 48px 0;
}
@media (max-width: 1024px) {
  .servico-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 60px;
  }
}
@media (max-width: 768px) {
  .servico-container {
    padding: 40px;
    min-height: auto;
  }
}
@media (max-width: 640px) {
  .servico-container {
    padding: 30px 20px;
    gap: 30px;
  }
}

.servico-imagem {
  position: relative;
  width: 416px;
  height: 560px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 20px;
  animation: slideInLeft 0.8s ease-out;
}
@media (max-width: 1024px) {
  .servico-imagem {
    width: 100%;
    height: auto;
    min-height: 400px;
    order: 2;
  }
}
@media (max-width: 768px) {
  .servico-imagem {
    height: auto;
    min-height: 300px;
    padding: 20px 0;
  }
}
.servico-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
  filter: brightness(1);
}
.servico-imagem:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.servico-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 0 0 33px;
  align-self: start;
  animation: slideInRight 0.8s ease-out;
}
@media (max-width: 1024px) {
  .servico-content {
    padding: 0;
    order: -1;
  }
}
@media (max-width: 768px) {
  .servico-content {
    gap: 15px;
  }
}

.servico-badge {
  position: relative;
  display: inline-block;
  background-color: rgba(77, 237, 101, 0.7);
  border-radius: 0 30px 30px 30px;
  box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.54);
  padding: 0;
  width: fit-content;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.servico-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 8px 0px rgba(77, 237, 101, 0.4);
}
.servico-badge .servico-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
  color: #000000;
  margin: 0;
  padding: 10px 30px;
  white-space: nowrap;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .servico-badge .servico-title {
    font-size: 24px;
    padding: 8px 20px;
  }
}
@media (max-width: 640px) {
  .servico-badge .servico-title {
    font-size: 20px;
    padding: 6px 15px;
    white-space: normal;
  }
}

.servico-texto {
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: -10px 10px 4px 0px rgba(77, 237, 101, 0.25);
  padding: 50px;
  max-width: 872px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.servico-texto:hover {
  transform: translateY(-5px);
  box-shadow: -15px 15px 8px 0px rgba(77, 237, 101, 0.3);
}
@media (max-width: 768px) {
  .servico-texto {
    padding: 30px;
  }
}
@media (max-width: 640px) {
  .servico-texto {
    padding: 20px;
  }
}
.servico-texto p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
  color: #000000;
  margin-bottom: 16px;
  text-align: left;
}
.servico-texto p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .servico-texto p {
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  .servico-texto p {
    font-size: 14px;
  }
}
.servico-texto ul,
.servico-texto ol {
  margin: 16px 0;
  padding-left: 24px;
}
.servico-texto ul li,
.servico-texto ol li {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
  color: #000000;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .servico-texto ul li,
  .servico-texto ol li {
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  .servico-texto ul li,
  .servico-texto ol li {
    font-size: 14px;
  }
}
.servico-texto strong {
  font-weight: 900;
}

.page-contato {
  background-color: rgba(115, 115, 115, 0.1);
  color: #FFFFFF;
  min-height: calc(100vh - 130px);
}
@media (max-width: 1024px) {
  .page-contato {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .page-contato {
    margin-top: 80px;
  }
}

.contato-section {
  position: relative;
  width: 100%;
  padding: 80px 0 90px;
}
@media (max-width: 768px) {
  .contato-section {
    padding: 60px 0;
  }
}
@media (max-width: 640px) {
  .contato-section {
    padding: 40px 0;
  }
}

.contato-container {
  max-width: 1358px;
  margin: 0 auto;
  padding: 0 62px;
  display: grid;
  grid-template-columns: 641.57px 641.57px;
  gap: 76px;
  align-items: start;
  justify-content: center;
}
@media (max-width: 1024px) {
  .contato-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 40px;
    max-width: 800px;
  }
}
@media (max-width: 768px) {
  .contato-container {
    padding: 0 20px;
    gap: 40px;
  }
}

.contato-formulario {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  animation: slideInLeft 0.8s ease-out;
}

.form-badge {
  position: relative;
  display: inline-block;
  background-color: rgba(77, 237, 101, 0.7);
  border-radius: 0 30px 30px 30px;
  box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.54);
  padding: 0;
  width: 279px;
  height: 53px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .form-badge {
    width: auto;
    height: auto;
    padding: 10px 30px;
  }
}
.form-badge .form-badge-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
  color: #000000;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .form-badge .form-badge-title {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .form-badge .form-badge-title {
    font-size: 16px;
  }
}

.contact-form-wrapper {
  border-radius: 20px;
  box-shadow: -10px 10px 4px 0px rgba(77, 237, 101, 0.25);
  padding: 0;
  width: 641.57px;
  min-height: 444px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px;
  background: #000;
}
@media (max-width: 768px) {
  .contact-form-wrapper {
    width: 100%;
    min-height: auto;
    padding: 30px;
  }
}
@media (max-width: 640px) {
  .contact-form-wrapper {
    padding: 20px;
  }
}

.form-error {
  background-color: rgba(255, 0, 0, 0.1);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 20px;
  padding: 20px;
  color: #FFFFFF;
  text-align: center;
}

.contato-informacoes {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  animation: slideInRight 0.8s ease-out;
}

.info-badge {
  position: relative;
  display: inline-block;
  background-color: rgba(77, 237, 101, 0.7);
  border-radius: 0 30px 30px 30px;
  box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.54);
  padding: 0;
  width: 291px;
  height: 53px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .info-badge {
    width: auto;
    height: auto;
    padding: 10px 30px;
  }
}
.info-badge .info-badge-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
  color: #000000;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .info-badge .info-badge-title {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .info-badge .info-badge-title {
    font-size: 16px;
  }
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 20px;
  box-shadow: -10px 10px 4px 0px rgba(77, 237, 101, 0.25);
  width: 641.57px;
  min-height: 444px;
  position: relative;
  background: #000;
  padding: 32px;
}
@media (max-width: 768px) {
  .info-content {
    width: 100%;
    min-height: auto;
    padding: 20px;
  }
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 0;
}
.info-item:nth-child(1) {
  margin-bottom: 47px;
}
.info-item:nth-child(2) {
  margin-bottom: 39px;
}
.info-item:nth-child(3) {
  margin-bottom: 0;
}
.info-item .info-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  position: relative;
}
.info-item .info-icon svg {
  width: 30px;
  height: 30px;
  stroke: #4DED65;
}
.info-item .info-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.info-item .info-label {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 5px 0;
}
@media (max-width: 768px) {
  .info-item .info-label {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .info-item .info-label {
    font-size: 16px;
  }
}
.info-item .info-value {
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.3s ease;
  margin: 0;
  line-height: 1.5em;
}
.info-item .info-value:hover {
  color: #4DED65;
}
@media (max-width: 768px) {
  .info-item .info-value {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .info-item .info-value {
    font-size: 16px;
  }
}

.info-mapa {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 35px;
  margin-top: 34px;
  position: relative;
}
.info-mapa .mapa-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0;
}
.info-mapa .mapa-icon svg {
  width: 30px;
  height: 30px;
  stroke: #4DED65;
}
.info-mapa .mapa-wrapper {
  width: 544px;
  height: 179px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: -10px 10px 4px 0px rgba(77, 237, 101, 0.25);
  flex: 1;
  position: relative;
}
.info-mapa .mapa-wrapper iframe {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .info-mapa .mapa-wrapper {
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 640px) {
  .info-mapa .mapa-wrapper {
    height: 250px;
  }
}

.contact-form-wrapper br {
  display: none;
}
.contact-form-wrapper .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 28px;
}
.contact-form-wrapper .wpcf7-form br {
  display: none;
}
.contact-form-wrapper .wpcf7-form p {
  margin: 0 0 51px 0;
}
.contact-form-wrapper .wpcf7-form p:nth-child(1) {
  margin-top: 0;
  margin-bottom: 51px;
}
.contact-form-wrapper .wpcf7-form p:nth-child(2) {
  margin-top: 0;
  margin-bottom: 51px;
}
.contact-form-wrapper .wpcf7-form p:nth-child(3) {
  margin-top: 0;
  margin-bottom: 51px;
}
.contact-form-wrapper .wpcf7-form p:nth-child(4) {
  margin-top: 0;
  margin-bottom: 51px;
}
.contact-form-wrapper .wpcf7-form p:last-child {
  margin-bottom: 0;
}
.contact-form-wrapper .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin-bottom: 0;
}
.contact-form-wrapper label {
  font-size: 13px;
  font-weight: 600;
  color: #4DED65;
  text-align: left;
  display: block;
  margin-bottom: 5px;
}
.contact-form-wrapper input[type=text],
.contact-form-wrapper input[type=email] {
  background-color: #000000;
  border: 1px solid #4DED65;
  border-radius: 0 20px 20px 20px;
  padding: 5px 10px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  box-shadow: inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
  width: 584.41px;
  max-width: 100%;
  height: 36.7px;
}
.contact-form-wrapper input[type=text]:focus,
.contact-form-wrapper input[type=email]:focus {
  outline: none;
  border-color: #4DED65;
  box-shadow: inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25), 0 0 0 2px rgba(77, 237, 101, 0.2);
}
.contact-form-wrapper input[type=text]::placeholder,
.contact-form-wrapper input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .contact-form-wrapper input[type=text],
  .contact-form-wrapper input[type=email] {
    width: 100%;
  }
}
.contact-form-wrapper input[type=tel] {
  background-color: #000000;
  border: 1px solid #4DED65;
  border-radius: 0 20px 20px 20px;
  padding: 5px 10px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  box-shadow: inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
  width: 584.41px;
  max-width: 100%;
  height: 36.7px;
}
.contact-form-wrapper input[type=tel]:focus {
  outline: none;
  border-color: #4DED65;
  box-shadow: inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25), 0 0 0 2px rgba(77, 237, 101, 0.2);
}
.contact-form-wrapper input[type=tel]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .contact-form-wrapper input[type=tel] {
    width: 100%;
  }
}
.contact-form-wrapper textarea {
  background-color: #000000;
  border: 1px solid #4DED65;
  border-radius: 0 20px 20px 20px;
  padding: 9px 23px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  box-shadow: inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
  width: 585.84px;
  max-width: 100%;
  min-height: 108.93px;
  resize: vertical;
}
.contact-form-wrapper textarea:focus {
  outline: none;
  border-color: #4DED65;
  box-shadow: inset 4px 4px 4px 0px rgba(0, 0, 0, 0.25), 0 0 0 2px rgba(77, 237, 101, 0.2);
}
.contact-form-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .contact-form-wrapper textarea {
    width: 100%;
  }
}
.contact-form-wrapper input[type=submit],
.contact-form-wrapper button[type=submit] {
  background-color: transparent;
  border: none;
  padding: 0 10px;
  height: 34px;
  font-size: 20px;
  font-weight: 600;
  color: #4DED65;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  min-width: 140px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
.contact-form-wrapper input[type=submit]::before,
.contact-form-wrapper button[type=submit]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(77, 237, 101, 0.2), transparent);
  transition: left 0.5s ease;
}
.contact-form-wrapper input[type=submit]:hover,
.contact-form-wrapper button[type=submit]:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
}
.contact-form-wrapper input[type=submit]:hover::before,
.contact-form-wrapper button[type=submit]:hover::before {
  left: 100%;
}
.contact-form-wrapper input[type=submit]:active,
.contact-form-wrapper button[type=submit]:active {
  transform: translateY(0);
}
.contact-form-wrapper .wpcf7-validation-errors,
.contact-form-wrapper .wpcf7-mail-sent-ok,
.contact-form-wrapper .wpcf7-mail-sent-ng,
.contact-form-wrapper .wpcf7-spam {
  padding: 15px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
}
.contact-form-wrapper .wpcf7-mail-sent-ok {
  background-color: rgba(77, 237, 101, 0.2);
  border: 1px solid #4DED65;
  color: #4DED65;
}
.contact-form-wrapper .wpcf7-validation-errors,
.contact-form-wrapper .wpcf7-mail-sent-ng {
  background-color: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.5);
  color: rgba(255, 0, 0, 0.9);
}

.contato-imagem-section {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding: 0;
}
.contato-imagem-section .contato-imagem-wrapper {
  width: 100%;
  height: 594px;
  overflow: hidden;
  position: relative;
}
.contato-imagem-section .contato-imagem-wrapper .contato-imagem {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .contato-imagem-section .contato-imagem-wrapper {
    height: 400px;
  }
}
@media (max-width: 640px) {
  .contato-imagem-section .contato-imagem-wrapper {
    height: 300px;
  }
}

.page-catalogo {
  background-color: #000000;
  color: #FFFFFF;
  min-height: calc(100vh - 130px);
  margin-top: 0;
}
@media (max-width: 1024px) {
  .page-catalogo {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .page-catalogo {
    margin-top: 80px;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  height: 594px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
  pointer-events: none;
}
.hero-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-section .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-section .hero-content .hero-title {
  font-size: 48px;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 30px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .hero-section .hero-content .hero-title {
    font-size: 36px;
  }
}
@media (max-width: 640px) {
  .hero-section .hero-content .hero-title {
    font-size: 28px;
  }
}

.catalogo-section {
  position: relative;
  width: 100%;
  padding: 60px 0;
  background-color: #000000;
}
@media (max-width: 768px) {
  .catalogo-section {
    padding: 40px 0;
  }
}
@media (max-width: 640px) {
  .catalogo-section {
    padding: 30px 0;
  }
}

.catalogo-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .catalogo-container {
    padding: 0 20px;
  }
}

.catalogo-wrapper {
  position: relative;
  width: 100%;
  background-color: #000000;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .catalogo-wrapper {
    padding: 15px;
  }
}
@media (max-width: 640px) {
  .catalogo-wrapper {
    padding: 10px;
  }
}

.catalogo-viewer {
  position: relative;
  width: 100%;
  min-height: 800px;
  height: 80vh;
  border-radius: 20px;
  background-color: #f5f5f5;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .catalogo-viewer {
    min-height: 700px;
    height: 75vh;
  }
}
@media (max-width: 768px) {
  .catalogo-viewer {
    min-height: 600px;
    height: 70vh;
  }
}
@media (max-width: 640px) {
  .catalogo-viewer {
    min-height: 500px;
    height: 65vh;
  }
}

.catalogo-embed {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.catalogo-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.catalogo-fallback {
  padding: 40px 20px;
  text-align: center;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
}
.catalogo-fallback a {
  color: #4DED65;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.catalogo-fallback a:hover {
  color: rgba(77, 237, 101, 0.8);
}

.catalogo-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(77, 237, 101, 0.2);
}
@media (max-width: 640px) {
  .catalogo-actions {
    padding: 15px 0;
  }
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: transparent;
  border: 2px solid #4DED65;
  border-radius: 20px;
  color: #4DED65;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-download svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}
.btn-download:hover {
  background-color: #4DED65;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(77, 237, 101, 0.3);
}
.btn-download:hover svg {
  transform: translateY(2px);
}
.btn-download:active {
  transform: translateY(0);
}
@media (max-width: 640px) {
  .btn-download {
    padding: 10px 20px;
    font-size: 14px;
  }
  .btn-download svg {
    width: 18px;
    height: 18px;
  }
}

.catalogo-error {
  text-align: center;
  padding: 60px 20px;
  background-color: rgba(255, 0, 0, 0.1);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 30px;
  color: #FFFFFF;
}
.catalogo-error p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 16px;
}

.mt-2 {
  margin-top: 24px;
}

.mt-3 {
  margin-top: 32px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 16px;
}

.mb-2 {
  margin-bottom: 24px;
}

.mb-3 {
  margin-bottom: 32px;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 16px;
}

.pt-2 {
  padding-top: 24px;
}

.pt-3 {
  padding-top: 32px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 16px;
}

.pb-2 {
  padding-bottom: 24px;
}

.pb-3 {
  padding-bottom: 32px;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

@media (max-width: 768px) {
  .hidden-md {
    display: none !important;
  }
}
@media (max-width: 640px) {
  .hidden-sm {
    display: none !important;
  }
}

/*# sourceMappingURL=style.css.map */
