@charset "UTF-8";
.primary-text-color {
  color: #008268;
}

.secondary-text-color {
  color: #feb73b;
}

.white-text-color {
  color: #fff;
}

.primary-bg-color {
  background-color: #008268;
}

.primary-bg-color-light {
  background-color: #e6f4f0;
}

.secondary-bg-color {
  background-color: #feb73b;
}

.light-bg-color {
  background-color: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

figure {
  margin: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

h1 {
  line-height: 1.05 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none !important;
  color: inherit;
}

ul,
ol {
  list-style: none;
  padding: 0 !important;
  margin-bottom: 0 !important;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .hero h1 {
    font-size: 2.5rem !important;
    line-height: 1.05 !important;
  }
  .hero h2 {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

p {
  margin-bottom: 1rem;
}

a {
  transition: color 0.3s ease;
}

.footer {
  background-color: #008268;
  color: #fff;
  padding: 60px 0 20px;
  border-top: 4px solid #feb73b;
}

.footer-logo {
  max-width: 280px;
}

.footer-top-message h3 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 850px;
  margin: 0 auto;
  margin-bottom: 4rem;
}
@media (width < 768px) {
  .footer-top-message h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

.footer-title {
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 8px;
}

.footer-contact .whatsapp {
  color: #f5b53d;
  font-weight: 600;
}

.footer-slogan {
  font-size: 0.95rem;
  opacity: 0.8;
  font-style: italic;
}

.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  color: #feb73b;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  background: none;
  overflow: hidden;
  transition: 0.2s ease;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid rgba(0, 130, 104, 0.3);
}
.accordion-item:hover {
  border-bottom: 1px solid #008268;
}
.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 20px;
}
.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-header {
  background: none;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.accordion-header h3 {
  color: #008268;
  font-size: 1.1em;
  margin: 0;
  font-weight: 500;
}

.accordion-icon {
  color: #008268;
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
  display: inline-block;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: 0.2s ease;
  background: none;
}
.accordion-content p, .accordion-content li {
  color: #008268;
  line-height: 1.6;
  margin: 0;
}

.accordion-curriculos .accordion-header h3 img {
  max-width: 70px;
  height: auto;
  margin-right: 15px;
}
.accordion-curriculos .bio-list li, .accordion-curriculos .honors-list li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .accordion-header {
    padding: 15px 0;
  }
  .accordion-header h3 {
    font-size: 1em;
  }
}
.button {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 0.938rem;
  margin-top: 0.5rem;
  transition: ease-in-out 0.2s;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
@media (width > 768px) {
  .button {
    max-width: 300px;
  }
}
.button span {
  margin-left: 5px;
  font-weight: 600;
}
@media (width > 768px) {
  .button span {
    font-size: 1.125rem;
  }
}
.button::before {
  font-family: "bootstrap-icons";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  margin-right: 5px;
}

[data-priority=primary] {
  background-color: #008268;
  color: #fff;
}
[data-priority=primary]:hover {
  background-color: #00705a;
}

[data-priority=secondary] {
  background-color: #feb73b;
  color: #1e2a3e;
}
[data-priority=secondary]:hover {
  background-color: #e0a12b;
}

[data-type=whatsapp]::before {
  content: "\f618";
}

[data-type=read_more]::before {
  content: "\f4fa";
}

[data-type=mail]::before {
  content: "\f32f";
}

[data-type=return]::before {
  content: "\f12a";
}

.cta-premium {
  background: linear-gradient(135deg, rgba(0, 130, 104, 0.05), rgba(254, 183, 59, 0.06));
}

.cta-premium-box {
  background: #fff;
  border-radius: 28px;
  padding: 3rem 2rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 130, 104, 0.08);
}
.cta-premium-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #008268;
  line-height: 1.1;
}
.cta-premium-box p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cta-premium__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  background: rgba(0, 130, 104, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-premium__icon i {
  font-size: 2rem;
  color: #008268;
}

.cta-premium__button {
  margin-top: 2rem;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.card__body img {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
}
.card__body__title {
  font-size: 1.25rem;
  font-weight: 400;
  color: #333;
}

.card-service-premium {
  transition: all 0.3s ease;
}
.card-service-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.differential-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}
.differential-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.differential-card .icon-box {
  margin: 0 auto 1.5rem auto;
}
.differential-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-text-color);
}
.differential-card p {
  margin-bottom: 0;
  line-height: 1.6;
}

.recognition-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  border-top: 4px solid #008268;
}
.recognition-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.recognition-card--gold {
  border-top-color: #feb73b;
}
.recognition-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  background: rgba(0, 130, 104, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.recognition-card__icon i {
  font-size: 1.8rem;
  color: #008268;
}
.recognition-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #008268;
  margin-bottom: 1rem;
}
.recognition-card p {
  margin-bottom: 0;
  line-height: 1.6;
}

.recognition-image-wrapper {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.recognition-image-wrapper img {
  transition: transform 0.4s ease;
}
.recognition-image-wrapper:hover img {
  transform: scale(1.05);
}

.experience-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}
.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}
.experience-card__image {
  height: 240px;
  overflow: hidden;
}
.experience-card__image picture,
.experience-card__image img {
  width: 100%;
  height: 100%;
  display: block;
}
.experience-card__image img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.experience-card:hover img {
  transform: scale(1.06);
}
.experience-card__body {
  padding: 1.75rem;
}
.experience-card__body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #008268;
  margin: 1rem 0;
}
.experience-card__body p {
  margin-bottom: 0;
  line-height: 1.65;
}
.experience-card .icon-box {
  width: 64px;
  height: 64px;
}

.cf-inline-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.cf-inline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}
.cf-inline-card .icon-box {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.25rem auto;
  border-radius: 50%;
  background: rgba(0, 130, 104, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cf-inline-card .icon-box i {
  font-size: 1.7rem;
  color: #008268;
}
.cf-inline-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #008268;
  margin-bottom: 1rem;
}
.cf-inline-card p {
  margin-bottom: 0;
  line-height: 1.6;
}

.credit-gallery-inline__item {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.credit-gallery-inline__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.credit-gallery-inline__item:hover img {
  transform: scale(1.03);
}
.credit-gallery-inline__item--large {
  min-height: 520px;
}
.credit-gallery-inline__item--small {
  min-height: 250px;
}

@media (max-width: 991px) {
  .credit-gallery-inline__item--large, .credit-gallery-inline__item--small {
    min-height: 360px;
  }
}
@media (max-width: 767px) {
  .cf-inline-card {
    padding: 1.5rem;
  }
  .credit-gallery-inline__item--large, .credit-gallery-inline__item--small {
    min-height: auto;
  }
}
.counter-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 112, 90, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.counter-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(254, 183, 59, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.counter-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .counter-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 576px) {
  .counter-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.counter-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 112, 90, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 112, 90, 0.08);
}
.counter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 112, 90, 0.12);
  border-color: rgba(0, 112, 90, 0.2);
}
.counter-card:hover .counter-icon {
  background: #00705a;
  transform: scale(1.05);
}
.counter-card:hover .counter-icon i {
  color: #ffffff;
}

.counter-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 112, 90, 0.1);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}
.counter-icon i {
  font-size: 2rem;
  color: #00705a;
  transition: all 0.3s ease;
}

.counter-number {
  font-size: 3rem;
  font-weight: 800;
  color: #00705a;
  line-height: 1;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 768px) {
  .counter-number {
    font-size: 2.5rem;
  }
}

.counter-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: #feb73b;
  display: inline-block;
  margin-left: 0.25rem;
}
@media (max-width: 768px) {
  .counter-suffix {
    font-size: 1.75rem;
  }
}

.counter-label {
  display: block;
  width: 100%;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.75rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.counter-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #feb73b;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.counter-card:hover .counter-label::after {
  width: 50px;
}

.counter-section--dark {
  background: #00705a;
}
.counter-section--dark .counter-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.counter-section--dark .counter-card:hover {
  background: rgba(255, 255, 255, 0.15);
}
.counter-section--dark .counter-number {
  color: #ffffff;
}
.counter-section--dark .counter-label {
  color: rgba(255, 255, 255, 0.9);
}
.counter-section--dark .counter-label::after {
  background: #feb73b;
}
.counter-section--dark .counter-icon {
  background: rgba(255, 255, 255, 0.15);
}
.counter-section--dark .counter-icon i {
  color: #feb73b;
}
.counter-section--dark .counter-card:hover .counter-icon {
  background: #feb73b;
}
.counter-section--dark .counter-card:hover .counter-icon i {
  color: #00705a;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.counter-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}
.counter-card:nth-child(1) {
  animation-delay: 0.1s;
}
.counter-card:nth-child(2) {
  animation-delay: 0.2s;
}
.counter-card:nth-child(3) {
  animation-delay: 0.3s;
}
.counter-card:nth-child(4) {
  animation-delay: 0.4s;
}

.form-control,
.form-select {
  min-height: 52px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  transition: 0.3s ease;
}
.form-control:focus,
.form-select:focus {
  border-color: #008268;
  box-shadow: none;
}

.form-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
}

textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  max-width: 320px;
  height: 60px;
  border-radius: 999px;
  font-weight: 700;
}

/* Estilização do campo de upload */
.file-upload-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.file-upload-label {
  display: block;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px dashed #008268;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.file-upload-label:hover {
  border-color: #3498db;
  background-color: rgba(51, 51, 51, 0.5);
}

.file-upload-label.dragover {
  border-color: #2ecc71;
  background-color: #00d169;
}

.file-upload-icon {
  font-size: 1.5rem;
  color: #008268;
  margin-bottom: 10px;
}

.file-upload-text {
  font-weight: 600;
  color: #008268;
  margin-bottom: 5px;
}

.file-upload-hint {
  color: #333;
  font-size: 0.75rem;
}

.file-input {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.file-info {
  margin-top: 15px;
  padding: 15px;
  background-color: #e8f6f3;
  border-radius: 6px;
  display: none;
}

.file-info.show {
  display: block;
}

.file-name {
  font-weight: 600;
  color: #27ae60;
  margin-bottom: 5px;
}

.file-size {
  color: #7f8c8d;
  font-size: 14px;
}

.remove-file {
  color: #008268;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem !important;
  margin-top: 5px;
  text-decoration: underline;
}

.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border-bottom: 2px dotted #008268;
}
.icon-box .bi, .icon-box .fas {
  color: #008268;
  font-size: 2rem;
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  animation: fadeInZoom 1.8s ease-out forwards;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
}
.hero__caption-container .hero__title,
.hero__caption-container .hero__subtitle {
  color: #fff;
}
.hero__caption-container .hero__title {
  position: relative;
  letter-spacing: 2px;
  padding-bottom: 15px;
  margin-bottom: 1rem;
}
.hero__caption-container .hero__title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 4px;
  border-radius: 4px;
  background-color: #feb73b;
}
.hero__caption-container .hero__title,
.hero__caption-container .hero__subtitle {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
.hero__caption-container .hero__subtitle {
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

@keyframes lineReveal {
  from {
    transform: scaleX(0);
    opacity: 1;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .hero {
    height: calc(100vh - 130px);
    align-items: flex-end;
  }
  .hero__caption-container {
    margin-bottom: 1.5rem;
  }
  .hero__caption-container .hero__title {
    line-height: 1.02;
    font-size: clamp(1.5rem, 4vw, 3rem);
    max-width: 90%;
  }
  .hero__caption-container .hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.4;
    max-width: 90%;
  }
}
@media (width >= 768px) {
  .hero {
    height: 432px;
  }
  .hero__caption-container {
    padding-top: 70px;
  }
}
@media (width >= 1024px) {
  .hero {
    height: 100vh;
  }
  .hero__caption-container {
    padding-top: 150px;
  }
}
@media (width >= 1360px) {
  .hero {
    height: 100vh;
  }
  .hero__caption-container {
    padding-top: 250px;
  }
  .hero__caption-container .hero__title {
    font-size: 4rem !important;
  }
}
/* HOME */
@media (width < 768px) {
  #hero-home .hero__subtitle {
    display: none;
  }
  #hero-home::before {
    background-image: url("../img/layout/mobile/hero-home-2.jpg");
  }
}
@media (width = 768px) {
  #hero-home::before {
    background-image: url("../img/layout/tablet/hero-home-2.jpg");
  }
}
@media (width > 768px) and (width <= 1920px) {
  #hero-home::before {
    background-image: url("../img/layout/desktop/hero-home-2.jpg");
  }
}
@media (width > 1920px) {
  #hero-home::before {
    background-image: url("../img/layout/ultra/hero-home-2.jpg");
  }
}

/* SERVIÇOS */
@media (width < 768px) {
  #hero-servicos::before {
    background-image: url("../img/layout/mobile/hero-servicos.jpg");
  }
}
@media (width = 768px) {
  #hero-servicos::before {
    background-image: url("../img/layout/tablet/hero-servicos.jpg");
  }
}
@media (width > 768px) and (width <= 1920px) {
  #hero-servicos::before {
    background-image: url("../img/layout/desktop/hero-servicos.jpg");
  }
}
@media (width > 1920px) {
  #hero-servicos::before {
    background-image: url("../img/layout/ultra/hero-servicos.jpg");
  }
}

@media (width < 768px) {
  #hero-sobre::before {
    background-image: url("../img/layout/mobile/hero-sobre.jpg");
  }
}
@media (width = 768px) {
  #hero-sobre::before {
    background-image: url("../img/layout/tablet/hero-sobre.jpg");
  }
}
@media (width > 768px) and (width <= 1920px) {
  #hero-sobre::before {
    background-image: url("../img/layout/desktop/hero-sobre.jpg");
  }
}
@media (width > 1920px) {
  #hero-sobre::before {
    background-image: url("../img/layout/ultra/hero-sobre.jpg");
  }
}

@media (width < 768px) {
  #hero-credito-fundiario-home::before {
    background-image: url("../img/layout/mobile/hero-credito-fundiario-home.jpg");
  }
}
@media (width = 768px) {
  #hero-credito-fundiario-home::before {
    background-image: url("../img/layout/tablet/hero-credito-fundiario-home.jpg");
  }
}
@media (width > 768px) and (width <= 1920px) {
  #hero-credito-fundiario-home::before {
    background-image: url("../img/layout/desktop/hero-credito-fundiario-home.jpg");
  }
}
@media (width > 1920px) {
  #hero-credito-fundiario-home::before {
    background-image: url("../img/layout/ultra/hero-credito-fundiario-home.jpg");
  }
}

@media (width < 768px) {
  #hero-assistencia-tecnica::before {
    background-image: url("../img/layout/mobile/hero-assistencia-tecnica.jpg");
  }
}
@media (width = 768px) {
  #hero-assistencia-tecnica::before {
    background-image: url("../img/layout/tablet/hero-assistencia-tecnica.jpg");
  }
}
@media (width > 768px) and (width <= 1920px) {
  #hero-assistencia-tecnica::before {
    background-image: url("../img/layout/desktop/hero-assistencia-tecnica.jpg");
  }
}
@media (width > 1920px) {
  #hero-assistencia-tecnica::before {
    background-image: url("../img/layout/ultra/hero-assistencia-tecnica.jpg");
  }
}

@media (width < 768px) {
  #hero-gestao-de-grandes-projetos-rurais::before {
    background-image: url("../img/layout/mobile/hero-gestao-de-grandes-projetos-rurais.jpg");
  }
}
@media (width = 768px) {
  #hero-gestao-de-grandes-projetos-rurais::before {
    background-image: url("../img/layout/tablet/hero-gestao-de-grandes-projetos-rurais.jpg");
  }
}
@media (width > 768px) and (width <= 1920px) {
  #hero-gestao-de-grandes-projetos-rurais::before {
    background-image: url("../img/layout/desktop/hero-gestao-de-grandes-projetos-rurais.jpg");
  }
}
@media (width > 1920px) {
  #hero-gestao-de-grandes-projetos-rurais::before {
    background-image: url("../img/layout/ultra/hero-gestao-de-grandes-projetos-rurais.jpg");
  }
}

@media (width < 768px) {
  #hero-consultoria-agropecuaria::before {
    background-image: url("../img/layout/mobile/hero-consultoria-agropecuaria.jpg");
  }
}
@media (width = 768px) {
  #hero-consultoria-agropecuaria::before {
    background-image: url("../img/layout/tablet/hero-consultoria-agropecuaria.jpg");
  }
}
@media (width > 768px) and (width <= 1920px) {
  #hero-consultoria-agropecuaria::before {
    background-image: url("../img/layout/desktop/hero-consultoria-agropecuaria.jpg");
  }
}
@media (width > 1920px) {
  #hero-consultoria-agropecuaria::before {
    background-image: url("../img/layout/ultra/hero-consultoria-agropecuaria.jpg");
  }
}

@media (width < 768px) {
  #hero-planos-de-desenvolvimento-rural::before {
    background-image: url("../img/layout/mobile/hero-planos-de-desenvolvimento-rural.jpg");
  }
}
@media (width = 768px) {
  #hero-planos-de-desenvolvimento-rural::before {
    background-image: url("../img/layout/tablet/hero-planos-de-desenvolvimento-rural.jpg");
  }
}
@media (width > 768px) and (width <= 1920px) {
  #hero-planos-de-desenvolvimento-rural::before {
    background-image: url("../img/layout/desktop/hero-planos-de-desenvolvimento-rural.jpg");
  }
}
@media (width > 1920px) {
  #hero-planos-de-desenvolvimento-rural::before {
    background-image: url("../img/layout/ultra/hero-planos-de-desenvolvimento-rural.jpg");
  }
}

@media (width < 768px) {
  #hero-cooperativismo-e-associativismo::before {
    background-image: url("../img/layout/mobile/hero-cooperativismo-e-associativismo.jpg");
  }
}
@media (width = 768px) {
  #hero-cooperativismo-e-associativismo::before {
    background-image: url("../img/layout/tablet/hero-cooperativismo-e-associativismo.jpg");
  }
}
@media (width > 768px) and (width <= 1920px) {
  #hero-cooperativismo-e-associativismo::before {
    background-image: url("../img/layout/desktop/hero-cooperativismo-e-associativismo.jpg");
  }
}
@media (width > 1920px) {
  #hero-cooperativismo-e-associativismo::before {
    background-image: url("../img/layout/ultra/hero-cooperativismo-e-associativismo.jpg");
  }
}

@media (width < 768px) {
  #hero-projetos-de-credito-rural::before {
    background-image: url("../img/layout/mobile/hero-projetos-de-credito-rural.jpg");
  }
}
@media (width = 768px) {
  #hero-projetos-de-credito-rural::before {
    background-image: url("../img/layout/tablet/hero-projetos-de-credito-rural.jpg");
  }
}
@media (width > 768px) and (width <= 1920px) {
  #hero-projetos-de-credito-rural::before {
    background-image: url("../img/layout/desktop/hero-projetos-de-credito-rural.jpg");
  }
}
@media (width > 1920px) {
  #hero-projetos-de-credito-rural::before {
    background-image: url("../img/layout/ultra/hero-projetos-de-credito-rural.jpg");
  }
}

@media (width < 768px) {
  #hero-gestao-de-propriedades-rurais::before {
    background-image: url("../img/layout/mobile/hero-gestao-de-propriedades-rurais.jpg");
  }
}
@media (width = 768px) {
  #hero-gestao-de-propriedades-rurais::before {
    background-image: url("../img/layout/tablet/hero-gestao-de-propriedades-rurais.jpg");
  }
}
@media (width > 768px) and (width <= 1920px) {
  #hero-gestao-de-propriedades-rurais::before {
    background-image: url("../img/layout/desktop/hero-gestao-de-propriedades-rurais.jpg");
  }
}
@media (width > 1920px) {
  #hero-gestao-de-propriedades-rurais::before {
    background-image: url("../img/layout/ultra/hero-gestao-de-propriedades-rurais.jpg");
  }
}

@media (width < 768px) {
  #hero-regularizacao-de-agroindustrias::before {
    background-image: url("../img/layout/mobile/hero-regularizacao-de-agroindustrias.jpg");
  }
}
@media (width = 768px) {
  #hero-regularizacao-de-agroindustrias::before {
    background-image: url("../img/layout/tablet/hero-regularizacao-de-agroindustrias.jpg");
  }
}
@media (width > 768px) and (width <= 1920px) {
  #hero-regularizacao-de-agroindustrias::before {
    background-image: url("../img/layout/desktop/hero-regularizacao-de-agroindustrias.jpg");
  }
}
@media (width > 1920px) {
  #hero-regularizacao-de-agroindustrias::before {
    background-image: url("../img/layout/ultra/hero-regularizacao-de-agroindustrias.jpg");
  }
}

@media (width < 768px) {
  #hero-rastreabilidade-de-produtos-agropecuarios::before {
    background-image: url("../img/layout/mobile/hero-rastreabilidade-de-produtos-agropecuarios.jpg");
  }
}
@media (width = 768px) {
  #hero-rastreabilidade-de-produtos-agropecuarios::before {
    background-image: url("../img/layout/tablet/hero-rastreabilidade-de-produtos-agropecuarios.jpg");
  }
}
@media (width > 768px) and (width <= 1920px) {
  #hero-rastreabilidade-de-produtos-agropecuarios::before {
    background-image: url("../img/layout/desktop/hero-rastreabilidade-de-produtos-agropecuarios.jpg");
  }
}
@media (width > 1920px) {
  #hero-rastreabilidade-de-produtos-agropecuarios::before {
    background-image: url("../img/layout/ultra/hero-rastreabilidade-de-produtos-agropecuarios.jpg");
  }
}

@media (width < 768px) {
  #hero-consultoria-em-negocios-e-mercado::before {
    background-image: url("../img/layout/mobile/hero-consultoria-em-negocios-e-mercado.jpg");
  }
}
@media (width = 768px) {
  #hero-consultoria-em-negocios-e-mercado::before {
    background-image: url("../img/layout/tablet/hero-consultoria-em-negocios-e-mercado.jpg");
  }
}
@media (width > 768px) and (width <= 1920px) {
  #hero-consultoria-em-negocios-e-mercado::before {
    background-image: url("../img/layout/desktop/hero-consultoria-em-negocios-e-mercado.jpg");
  }
}
@media (width > 1920px) {
  #hero-consultoria-em-negocios-e-mercado::before {
    background-image: url("../img/layout/ultra/hero-consultoria-em-negocios-e-mercado.jpg");
  }
}

@media (width < 768px) {
  #hero-programa-nacional-de-credito-fundiario::before {
    background-image: url("../img/layout/mobile/hero-programa-nacional-de-credito-fundiario.jpg");
  }
}
@media (width = 768px) {
  #hero-programa-nacional-de-credito-fundiario::before {
    background-image: url("../img/layout/tablet/hero-programa-nacional-de-credito-fundiario.jpg");
  }
}
@media (width > 768px) and (width <= 1920px) {
  #hero-programa-nacional-de-credito-fundiario::before {
    background-image: url("../img/layout/desktop/hero-programa-nacional-de-credito-fundiario.jpg");
  }
}
@media (width > 1920px) {
  #hero-programa-nacional-de-credito-fundiario::before {
    background-image: url("../img/layout/ultra/hero-programa-nacional-de-credito-fundiario.jpg");
  }
}

@media (width < 768px) {
  #hero-georreferenciamento-de-imoveis-rurais::before {
    background-image: url("../img/layout/mobile/hero-georreferenciamento.jpg");
  }
}
@media (width = 768px) {
  #hero-georreferenciamento-de-imoveis-rurais::before {
    background-image: url("../img/layout/tablet/hero-georreferenciamento.jpg");
  }
}
@media (width > 768px) and (width <= 1920px) {
  #hero-georreferenciamento-de-imoveis-rurais::before {
    background-image: url("../img/layout/desktop/hero-georreferenciamento.jpg");
  }
}
@media (width > 1920px) {
  #hero-georreferenciamento-de-imoveis-rurais::before {
    background-image: url("../img/layout/ultra/hero-georreferenciamento.jpg");
  }
}

@media (width < 768px) {
  #hero-regularizacao-fundiaria::before {
    background-image: url("../img/layout/mobile/hero-regularizacao-fundiaria.jpg");
  }
}
@media (width = 768px) {
  #hero-regularizacao-fundiaria::before {
    background-image: url("../img/layout/tablet/hero-regularizacao-fundiaria.jpg");
  }
}
@media (width > 768px) and (width <= 1920px) {
  #hero-regularizacao-fundiaria::before {
    background-image: url("../img/layout/desktop/hero-regularizacao-fundiaria.jpg");
  }
}
@media (width > 1920px) {
  #hero-regularizacao-fundiaria::before {
    background-image: url("../img/layout/ultra/hero-regularizacao-fundiaria.jpg");
  }
}

.bullet {
  position: relative;
}
.bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #008268;
  border-radius: 50%;
}

.bi-award {
  color: #feb73b;
}

.bi-graph-up-arrow {
  color: #008268;
}

/* Container do menu */
#main-menu {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background: #fff;
  z-index: 1000;
  transition: all 0.4s ease;
}

#main-menu.scrolled {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scrolled-background {
  background-color: #fff;
}

/* Menu fixo quando aplicado */
.menu-fixo {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Container do menu para alinhamento */
.menu-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: ease-in-out 0.2s;
}

/* Logo */
@media (width >= 200px) {
  .logo img {
    width: 200px !important;
  }
}
@media (width >= 1024px) {
  .logo img {
    width: 185px !important;
  }
}

/* Estilos da lista do menu - DESKTOP */
.menu {
  list-style: none;
  display: flex;
  position: relative;
}

.menu > li {
  position: relative;
}

.menu a {
  text-decoration: none;
  padding: 18px 25px;
  display: block;
  transition: all 0.3s ease;
  font-weight: 500;
}
@media (width >= 1024px) {
  .menu a {
    color: #008268;
  }
}
@media (width < 1024px) {
  .menu a {
    color: #feb73b;
  }
}

@media (width >= 1024px) {
  .menu a:not(.submenu a) {
    font-size: 10px !important;
    padding: 18px 15px;
  }
}
@media (width >= 1366px) {
  .menu a:not(.submenu a) {
    font-size: 18px !important;
  }
}

.menu a:hover {
  color: #feb73b;
}

@media (width > 768px) {
  .menu > li > a {
    border-bottom: 3px solid transparent;
  }
  .menu > li > a:hover:not(.active) {
    border-bottom: 3px solid #feb73b;
  }
}
/* Submenu */
.submenu {
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  background-color: #008268;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
  overflow: hidden;
}

.submenu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.submenu li:last-child {
  border-bottom: none;
}

.submenu a {
  padding: 12px 20px;
  font-size: 0.75em;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fff;
}

.submenu a:hover {
  background-color: #feb73b;
  color: #008268;
}

/* Mostrar submenu ao passar o mouse */
.menu > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Indicador de submenu */
.has-submenu > a::after {
  content: "▼";
  font-size: 0.7em;
  margin-left: 8px;
}

/* Botão hamburger - escondido no desktop */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #008268;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* MEDIA QUERIES PARA RESPONSIVIDADE */
/* Tablet */
@media (max-width: 992px) {
  .menu a {
    padding: 15px 20px;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .menu-fixo .menu-container {
    height: 70px;
    flex-direction: column;
  }
  .menu-fixo .menu-container .logo {
    position: relative;
    width: 40%;
  }
  .menu-fixo .menu-container .logo img {
    margin: auto;
  }
}
@media (max-width: 768px) and (width >= 200px) {
  .menu-fixo .menu-container .logo img {
    width: 170px !important;
  }
}
@media (max-width: 768px) {
  .menu-fixo .menu-container .logo,
  .menu-fixo .menu-container .hamburger {
    top: 50%;
    transform: translateY(-50%);
  }
  .hamburger {
    display: flex;
    position: absolute;
    top: 30px;
    right: 15px;
  }
  .menu {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 60px);
    background-color: #008268;
    flex-direction: column;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    padding: 20px 0;
  }
  .menu.active {
    left: 0;
  }
  .menu > li {
    width: 100%;
  }
  .menu a {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 130, 104, 0.1);
  }
  .menu > li > a {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  /* Submenu no mobile */
  .submenu {
    position: static;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #008268;
  }
  .submenu.active {
    max-height: 300px;
  }
  .submenu a {
    padding-left: 40px;
    font-size: 0.9em;
  }
  .has-submenu > a::after {
    content: "▶";
    float: right;
    transition: transform 0.3s ease;
  }
  .has-submenu > a.active::after {
    transform: rotate(90deg);
  }
  /* Animação do hamburger para X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -8px);
  }
}
@media (width > 768px) {
  nav a.active:not(.borderless) {
    position: relative;
    color: #feb73b;
    font-weight: 700;
  }
  nav a.active:not(.borderless)::after {
    content: "";
    position: absolute;
    top: calc(100% - 10px);
    left: 25%;
    width: 50%;
    height: 3px;
    border-radius: 4px;
    background-color: #feb73b;
  }
}
.nossa-empresa {
  position: relative;
}
.nossa-empresa::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../img/contents/desktop/a-empresa.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (width >= 768px) {
  .nossa-empresa {
    display: flex;
  }
  .nossa-empresa::before {
    width: 50%;
    height: 100%;
  }
  .nossa-empresa article {
    padding: 3rem;
  }
}
@media (width < 768px) {
  .nossa-empresa::before {
    display: block;
    position: relative;
    width: 100%;
    height: 280px;
    margin-bottom: 2rem;
  }
}
#credito-fundiario-home .pncf-home .section-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(254, 183, 59, 0.12);
  color: #feb73b;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
#credito-fundiario-home .pncf-home h2 {
  line-height: 1.2;
}
#credito-fundiario-home .pncf-home__benefits {
  margin: 2rem 0;
}
#credito-fundiario-home .pncf-home__benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
#credito-fundiario-home .pncf-home__benefits li i {
  color: #feb73b;
  font-size: 1.1rem;
}
#credito-fundiario-home .pncf-home__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
#credito-fundiario-home .pncf-home__image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
#credito-fundiario-home .pncf-home__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  transition: transform 0.4s ease;
}
#credito-fundiario-home .pncf-home__image:hover img {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  #credito-fundiario-home .pncf-home {
    text-align: center;
  }
  #credito-fundiario-home .pncf-home__benefits li {
    justify-content: center;
  }
  #credito-fundiario-home .pncf-home__buttons {
    justify-content: center;
  }
}
#servicos-lista a {
  color: #fff;
  text-decoration: none;
}
#servicos-lista a:hover {
  color: #fff;
  text-decoration: underline !important;
}

.contact-page {
  display: flex;
  min-height: calc(100vh - 120px);
}
.contact-page__image, .contact-page__image-trabalhe {
  width: 40%;
}
.contact-page__content {
  width: 60%;
}
.contact-page__image {
  background-image: url("../img/layout/desktop/contato.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-page__image-trabalhe {
  background-image: url("../img/layout/desktop/trabalhe-conosco.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-page__content {
  display: flex;
  align-items: center;
  background: #feb73b;
}
.contact-page__inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 5rem 0;
}
.contact-page h1 {
  color: #008268;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .contact-page {
    flex-direction: column;
  }
  .contact-page__image, .contact-page__image-trabalhe, .contact-page__content {
    width: 100%;
  }
  .contact-page__inner {
    padding: 3rem 0;
  }
  .contact-page .contact-page__image, .contact-page .contact-page__image-trabalhe {
    height: 280px;
  }
  .contact-page .contact-page__image img, .contact-page .contact-page__image-trabalhe img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contact-page .contact-page__content {
    padding: 2rem 0;
  }
}
@media (max-width: 767px) {
  .contact-page .form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.section-tag {
  margin-bottom: 1rem;
}

.animation-1 .hero__title::before {
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  animation: lineReveal 0.8s ease forwards;
  animation-delay: 2.6s;
}
.animation-1 .line-1 {
  animation: fadeInUp 1.5s ease-out forwards;
  animation-delay: 1s;
  opacity: 0;
}
.animation-1 .line-2 {
  animation: fadeInUp 1.5s ease-out 0.5s forwards;
  animation-delay: 1.5s;
  opacity: 0;
}
.animation-1 .line-3 {
  animation: fadeInUp 1.5s ease-out 1s forwards;
  animation-delay: 2s;
  opacity: 0;
}
.animation-1 .line-4 {
  animation: fadeInUp 1.5s ease-out 1.8s forwards;
  animation-delay: 2.5s;
  opacity: 0;
}
.animation-1 .line-5 {
  animation: fadeInUp 1.5s ease-out 2.5s forwards;
  animation-delay: 3s;
  opacity: 0;
}
.animation-1 .line-6 {
  animation: fadeInUp 1.5s ease-out 2.5s forwards;
  animation-delay: 3s;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.recognition-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.recognition-image-wrapper img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.recognition-image-wrapper:hover img {
  transform: scale(1.03);
}
.recognition-image-wrapper:hover .recognition-overlay {
  opacity: 1;
}
.recognition-image-wrapper .recognition-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.recognition-image-wrapper .recognition-overlay i {
  color: #fff;
  font-size: 2rem;
}

#imageModal img {
  max-height: 100vh;
  -o-object-fit: contain;
     object-fit: contain;
}/*# sourceMappingURL=main.css.map */