/* ============================================================
   VARIÁVEIS DE CORES
   ============================================================ */
:root {
  --clr-primary:#BED24E;
  --clr-dark:#263238;
  --clr-white:#FFFFFF;
  --clr-black:#1E1E1E;
  --clr-gray: #4D4D4D;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*{ box-sizing: border-box; margin: 0; padding: 0;scroll-behavior: smooth; }

html, body { overflow-x: hidden; max-width: 100%; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ============================================================
   ANIMAÇÕES DE SCROLL (reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  padding:0 0px 8px;
  width:100%;
  z-index:999;
  top:0;
  background-color: transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0);
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background-color: var(--clr-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.site-header .border-top {
  height: 11px;
  background-color: var(--clr-primary);
  transition: height 0.35s ease;
}

.site-header.is-scrolled .border-top {
  height: 6px;
}

.site-header .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding:16px 20px 0;
}

.site-header .menu{
  display:flex;
  align-items:center;
  gap:32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}


.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #18191F;
}

.nav__link--active{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration-line: underline;
  color: #263238;
}

/* ============================================================
   HAMBURGER
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #18191F;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   MENU MOBILE (template-parts/mobile-menu.php)
   ============================================================ */
.mobile-menu {
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(30, 30, 30, 0.5);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1000;
}

.mobile-menu__panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 82vw);
  background-color: var(--clr-white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu.is-open .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__close {
  align-self: flex-end;
  border: none;
  background: none;
  font-size: 32px;
  line-height: 1;
  color: var(--clr-dark);
  cursor: pointer;
  padding: 4px;
  margin-bottom: 24px;
}

.mobile-menu__nav {
  margin-bottom: auto;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu__link {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  color: #18191F;
}

.mobile-menu__cta {
  margin: 32px 0 0;
  width: 100%;
  justify-content: center;
}

body.no-scroll {
  overflow: hidden;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  border: 2px solid transparent;
}

.btn--primary {
  background-color: var(--clr-primary);
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  max-width: fit-content;
  margin: 0 auto;
}

.btn--secondary{
  background-color: #fff;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #263238;
  max-width: fit-content;
  margin: 0 auto;
}

.btn--primary:hover {
  color: var(--clr-dark)
}

.btn--outline {
  background-color: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.btn--outline:hover {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--clr-white);
  border-color: var(--clr-white);
}

.btn--outline-white:hover {
  background-color: var(--clr-white);
  color: var(--clr-dark);
}

/* ============================================================
   HERO (HOME)
   ============================================================ */
.hero {
  padding-top: 120px;
  padding-bottom: 0;
  min-height: 100dvh;
  background-image: url('../images/bg-section-home.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.hero__inner {
  padding-block: 80px;
}

.hero__title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-text-on-dark);
  max-width: 700px;
  line-height: 1.15;
}

.hero__title .highlight { color: var(--clr-primary); }

/* ============================================================
   SEÇÃO SOBRE INTRO (HOME)
   ============================================================ */
.home_about{
  padding:128px 0;
  background-image:url('../images/bg-about-home.png');
  background-size: cover;
  background-position: center;
}

.page-about__intro{
  padding:58px 0 120px;
  display:flex;
  flex-direction:column;
  gap:100px;
  background:none;
}

.home_about .content{
  display:flex;
  justify-content:space-between;
  gap:80px;
  align-items: center;
}

.home_about .content.invert{
  flex-direction: row-reverse;
}

.about-intro__image-wrapper{
  width:100%;
  max-width:502px;
  height:485px;
  position:relative;
}

.about-intro__image-wrapper::before{
  content:'';
  position:absolute;
  width:335px;
  height:328px;
  background-color:var(--clr-primary);
  border-radius:4px;
  top:0px;
  left:0;
}

.home_about .content.invert .about-intro__image-wrapper::before{
  left:inherit;
  right:0;
}

.about-intro__image-wrapper img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:4px;
  position:relative;
  top:60px;
  left:70px;
  box-shadow: 25px 20px 25px -5px rgba(0, 0, 0, 0.1);
}


.home_about .content.invert .about-intro__image-wrapper img{
  left:inherit;
  right:70px;
}

.about-intro__content{
  width:100%;
  max-width:440px;
}

.about-intro__content h2{
  font-family: 'Alexandria';
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  text-transform: uppercase;
  color: #4D4D4D;
}

.about-intro__content h2 strong{
  color:#AAB539;
}

.about-intro__content p{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #263238;
  margin:20px 0;
}

.about-intro__content a.btn--primary{
  margin:0;
}


/* ============================================================
   SOLUÇÕES (HOME)
   ============================================================ */
.solutions {
  background-color: var(--clr-dark);
  text-align: center;
  padding:50px 0 0;
  position:relative;
}

.solutions::before{
  content:'';
  position: absolute;
  width: 1098px;
  height: 247px;
  left: 0px;
  bottom: 0px;
  background: #719327;
}


.solutions__head { margin-bottom: 48px; }

.solutions__head .section-title { 
  font-family: 'Alexandria';
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 44px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  margin:0 0 15px;
}

.solutions__head .section-title .highlight { 
  color: var(--clr-primary); 
}
.solutions__head .section-subtitle { 
  color: var(--clr-text-on-dark-muted); 
  margin-inline: auto; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;

}

.card-content{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}

.solution-card {
  background-color: var(--clr-primary);
  padding: 36px 28px;
  width:100%;
  max-width:31%;
}

.solution-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
}


.solution-card__text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
  margin:20px 0 0;
}

.solution-card__text  span{
  color:#263238;
}

.solutions__cta { margin-top: 48px; }

/* ============================================================
   SÓCIOS CTA (HOME)
   ============================================================ */
.partners-cta {
  background-color: #BCD366;
  text-align: center;
  padding: 64px 0 48px;
  width:100%;
  max-width:98%;
  position:relative;
  margin: 48px 0 0;
  top:60px;
  isolation: isolate;
  left:1%;
}

.partners-cta__text {
  font-size: 0.95rem;
  color: var(--clr-text-secondary);
  max-width: 500px;
  margin-inline: auto;
  margin-block: 16px 28px;
}

.partners-cta .section-title{
  font-family: 'Alexandria';
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 44px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}

.partners-cta__text{
  width: 100%;
  max-width: 372px;
  margin-inline: auto;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #263238;
}
/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background-color: var(--clr-white);
  text-align: center;
  padding:140px 0 70px;
  background-image: url('../images/bg-new.png');
  background-size:cover;
  background-position: center;
}

.newsletter__title {
  font-family: 'Alexandria';
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 44px;
  text-align: center;
  text-transform: uppercase;
  color: #4D4D4D;
  margin:0 0 20px;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  max-width: 870px;
  margin-inline: auto;
  gap: 0;
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  overflow: hidden;
}

.newsletter__input {
  width:100%;
  max-width:870px;
  height:63px;
  color: var(--clr-text);
  border: none;
  outline: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 33px;
  gap: 10px;
  background: #FFFFFF;
  border: 0.5px solid #B6B6B6;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
  font-family: 'Encode Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #5C5C5C;
  margin:0 0 30px;
}

.newsletter__input::placeholder { color: var(--clr-text-muted); }

.newsletter__btn {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  border: none;
  padding: 13px 28px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s;
}

.newsletter__btn:hover { background-color: var(--clr-primary-hover); }

/* ============================================================
   CONTATO
   ============================================================ */
.contact { 
  background-color: #BED24E;
  padding:58px 0;
}

.section.contact .content{
  display:flex;
  justify-content:space-between;
  gap:80px;
}


.contact__label {
  font-family: 'Alexandria';
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 44px;
  text-transform: uppercase;
  color: #4D4D4D;
  margin:0 0 10px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  flex-direction:column;
  gap: 8px;
  margin-bottom: 20px;
}

.contact__item-icon{
  width:30px;
  height:30px;
}


.contact__item-text {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 28px;
color: #0A0A0A;

}

.contact_form{
  width:100%;
}

.contact__form-title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #103E13;
  margin:0 0 24px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid--full { grid-column: 1 / -1; }

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  background-color: var(--clr-white);
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  font-family: 'Encode Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #5C5C5C;
}

.form-input:focus,
.form-textarea:focus { border-color: var(--clr-primary); }

.form-input::placeholder,
.form-textarea::placeholder { color: var(--clr-text-muted); }

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

.contact_form form input[type=submit]{
  background:none;
  border:1px solid #fff;
  border-radius:4px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  padding: 25px 60px;
  cursor:pointer;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: #263238;
  padding:64px 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 8px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}


.footer__desc {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #F5F7FA;
  margin:40px 0;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #F5F7FA;
}


.footer__col-title {
  font-family: 'Alexandria';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #BED24E;
  margin:0 0 24px;
}

.footer__links { display: flex; flex-direction: column; gap: 12px; }

.footer__link {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #F5F7FA;
}

.footer__link:hover { color: var(--clr-primary); }

.footer__contact-item {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #F5F7FA;
}

.footer__newsletter-form {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 14px;

}

.footer__newsletter-input {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #D9DBE1;
  background:none;
  border:none;
  padding:0 20px;
  flex:1;
}

.footer__newsletter-input::placeholder { color: var(--clr-text-on-dark-muted); }

.footer__newsletter-btn {
  background:none;
  border: none;
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
}

.footer__bottom .copy {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #F5F7FA;
}

.footer__dev {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  text-decoration-line: underline;
  color: #FFFFFF;
  display:flex;
  gap:8px;
  align-items:center;
}

.footer__dev a{
  display:flex;
}

/* ============================================================
   PAGE HERO (PÁGINAS INTERNAS)
   ============================================================ */
.main_page-about{
  background-image:url('../images/bg-page-about-sections.png');
  background-position:bottom;
  background-repeat:no-repeat;
}
.page-about-hero {
  padding-top: 100px;
  padding-bottom: 40px;
  background-color: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  background-image: url('../images/bg-hero-about.png');
  min-height: 50dvh;
  display: flex;
  align-items: end;
}

.page-hero__title {
  font-family: 'Alexandria';
  font-style: normal;
  font-weight: 600;
  font-size: 39.1589px;
  line-height: 48px;
  text-transform: uppercase;
  color: #263238;
}

/* ============================================================
   SOBRE NÓS
   ============================================================ */
.about-story__content {
  font-size: 0.93rem;
  color: var(--clr-text-secondary);
  line-height: 1.8;
}

.about-story__content p + p { margin-top: 14px; }

.about-story__photos {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.about-story__photo {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.about-mission {
  background-color: var(--clr-dark);
  padding: 64px 0;
  width:100%;
  max-width:98%;
  margin:0 auto;
  position:relative;
  z-index:2;
}

.dividir_page-about{
  width:100%;
  max-width: 1098px;
  height: 164px;
  margin-left: auto;
  top: -120px;
  background: #BCD366;
  transform: rotate(180deg);
  position:relative;
  z-index:1
}

.about-mission__text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
  margin:0 auto;
  max-width:980px;
}

.about-mission__text p + p { margin-top: 16px; }

.recognitions {
  background-color: var(--clr-off-white);
  text-align: center;
  padding: 58px 0;
}

.recognitions .text {
  margin: 0 0 58px;
}

.recognitions .text p{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #263238;
}

.recognitions__logos {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.recognitions .content_logos{
  display: flex;
  gap:58px;
  width:100%;
  max-width:803px;
  margin:0 auto;
  align-items: center;
}

.recognitions .content_logos h2{
  font-family: 'Alexandria';
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 44px;
  text-align: center;
  text-transform: uppercase;
  color: #719327;
}

/* ============================================================
   ÁREAS DE ATUAÇÃO
   ============================================================ */
.areas-hero {
  background-image: url('../images/bg-hero-area.png');
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 110px;
  padding-bottom: 60px;
  text-align: center;
  height:50dvh;
  display:flex;
  align-items:center;
}

.areas-hero__title {
  max-width: 904px;
  margin:0 auto 18px;
  font-family: 'Alexandria';
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 44px;
  text-align: center;
  text-transform: uppercase;
  color: #4D4D4D;
}

.areas-hero__title .highlight { color: var(--clr-primary); }

.areas-hero__subtitle {
font-family: 'Alexandria';
font-style: normal;
font-weight: 300;
font-size: 20px;
line-height: 28px;
text-align: center;
color: #263238;
max-width:784px;
margin: 0 auto;

}

.areas-grid {
  padding: 100px 0;
}

.areas-grid .content{
  display:flex;
  justify-content:center;
  width:100%;
  max-width:1061px;
  margin:0 auto;
  gap:80px;
  flex-wrap:wrap;
}

.area-card {
  padding: 50px 55px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  display:flex;
  flex-direction:column;
  width:100%;
  max-width:48%;
  border-radius:4px;
  height:466px;
  max-width:444px;
  align-items:center;
  justify-content:end;
}

.area-card.reveal:nth-child(even) { transition-delay: 0.15s; }

.area-card:before{
  content:'';
  position: absolute;
  width: 246.11px;
  height: 234.23px;
  left: -32px;
  top: -32px;
  background: #BCD366;

}

.area-card img{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.area-card .overlay{
  position:absolute;
  width:100%;
  height:396px;
  background-image:url('../images/areas/overlay.png');
  background-size:cover;
  background-position:bottom;
  bottom:0;
}

.area-card .text{
  position:relative;
  z-index:2;
  text-align: left;
}

.area-card__title {
  font-family: 'Alexandria';
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  text-transform: uppercase;
  color: #BED24E;
}

.area-card__text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin:10px 0 0;
}

/* ============================================================
   EQUIPE / SÓCIOS
   ============================================================ */



.team-text{
  padding:80px 0 32px;
}

.team-text h6{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  width:100%;
  max-width:1004px;
  margin:0 auto;
  text-align: center;
  color: #263238;
}


.partners-intro { background-color: var(--clr-white); padding-bottom: 0; }

.partners-intro__text {
  max-width: 820px;
  font-size: 0.93rem;
  color: var(--clr-text-secondary);
  line-height: 1.75;
  margin-top: 24px;
}

.partner-section { 
  padding-block: 64px;
  margin:0 0 80px;
}

.partner-section.invert{
  background-image:url('../images/bg-person-invert.png');
  background-size:cover;
  background-repeat:no-repeat;
}


.partner-section .card-partner{
  display:flex;
  align-items:end;
  gap:58px;
  justify-content:space-between;
  width:100%;
  max-width:1066px;
}

.partner-section .card-partner.invert{
  flex-direction:row-reverse;
  position:relative;
}


.partner__photo-wrapper {
  width:100%;
  max-width:363px;
  position:relative;
  display:flex;
  align-items:end;
  justify-content:end;
  height:500px;
}

.card-partner.invert .partner__photo-wrapper{
  justify-content:start;
}

.partner__photo-accent {
  position: absolute;
  width: 246px;
  height: 246px;
  background-color: var(--clr-primary);
  top: -20px;
  left: -20px;
  z-index: 0;
}


.card-partner.invert .partner__photo-accent {
  left:inherit;
  right: -20px;
}

.partner__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height:100%;
  object-fit: cover;
  box-shadow: 0 8px 32px var(--clr-shadow-md);
  max-width:317px;
}

.partner-content{
  width:100%;
  max-width:644px;
}

.partner__name {
  font-family: 'Alexandria';
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  text-transform: uppercase;
  color: #719327;
  margin:0 0 20px;
}

.partner__credentials {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style-type:disc;
  padding: 0 0 0 20px;
  margin:0 0 20px;
}

.partner__credentials::marker{
  color: var(--clr-black);
}

.partner__credential {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #263238;
}

.partner__bio {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #263238;
  margin:0 0 20px;
}

.partner__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.partner__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--clr-text-secondary);
}

.partner__contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner__contact a{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #263238;
}

.card-partner.invert .partner__credential,
.card-partner.invert .partner__bio,
.card-partner.invert .partner__contact a{
  color: #fff;
}



/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---------- Tablet grande / notebook pequeno (<=992px) ---------- */
@media (max-width: 992px) {
  /* Header: troca nav desktop pelo hambúrguer */
  .site-header .menu { display: none; }
  .hamburger { display: flex; }

  .hero { padding-top: 100px; }
  .hero__title { font-size: 2.2rem; }

  .home_about .content,
  .home_about .content.invert {
    flex-direction: column;
    gap: 48px;
  }

  .about-intro__image-wrapper { max-width: 420px; margin-inline: auto; }

  .solution-card { max-width: 48%; }

  .section.contact .content { flex-direction: column; gap: 40px; }

  .footer__grid { grid-template-columns: 1fr 1fr; }

  .partner-section .card-partner,
  .partner-section .card-partner.invert {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .partner__contacts { align-items: center; }
  .partner__credentials { align-items: flex-start; text-align:left;}

  .areas-grid .content { gap: 40px; }
  .area-card { max-width: 100%; }
}

/* ---------- Tablet / celular grande (<=768px) ---------- */
@media (max-width: 768px) {
  .container { padding-inline: 20px; }
  .section { padding-block: 56px; }

  .hero { padding-top: 90px;min-height:60dvh; }
  .hero__title { font-size: 1.8rem; }

  .about-intro__image-wrapper {
    max-width: 320px;
    height: 320px;
  }

  .about-intro__image-wrapper::before {
    width: 220px;
    height: 220px;
  }

  .about-intro__image-wrapper img {
    top: 32px;
    left: 32px;
  }

  .home_about .content.invert .about-intro__image-wrapper img { right: 32px; }

  .about-intro__content { max-width: 100%; }

  .card-content { gap: 20px; }
  .solution-card { max-width: 100%; }

  .newsletter { padding: 90px 0 60px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .form-grid { grid-template-columns: 1fr; }
  .contact_form form input[type=submit] { padding: 18px 40px; width: 100%; justify-content: center; }

  .page-hero__title { font-size: 1.8rem; }
  .page-about-hero { padding-top: 90px; }

  .about-mission { padding: 48px 0; }
  .dividir_page-about { height: 100px; top: -60px; }

  .recognitions .content_logos {
    flex-direction: column;
    gap: 24px;
  }

  .areas-hero { height: 60dvh; }
  .areas-hero__title { font-size: 1.6rem; }
  .areas-hero__subtitle { font-size: 16px; }

  .team-text { padding: 56px 0 24px; }
  .team-text h6 { font-size: 15px; }

  .partner-section { padding-block: 40px; margin-bottom: 48px; }
  .partner__photo-wrapper { max-width: 260px; height: 340px; }
  .partner__name { font-size: 24px; }
}

/* ---------- Celular (<=480px) ---------- */
@media (max-width: 480px) {
  .container { padding-inline: 16px; }

  .site-header .content { padding: 12px 16px 0; }
  .logo img { max-width: 130px; }

  .hero { padding-top: 80px; }
  .hero__inner { padding-block: 48px; }
  .hero__title { font-size: 1.5rem; }

  .home_about { padding: 72px 0; }
  .about-intro__image-wrapper { max-width: 260px; height: 260px; }
  .about-intro__image-wrapper::before { width: 170px; height: 170px; }
  .about-intro__image-wrapper img { top: 20px; left: 20px; }
  .home_about .content.invert .about-intro__image-wrapper img { right: 20px; }
  .about-intro__content h2 { font-size: 22px; line-height: 28px; }

  .solutions { padding-top: 40px; }
  .solutions__head .section-title { font-size: 22px; line-height: 32px; }

  .partners-cta { padding: 48px 0 36px; max-width: 100%; left: 0; top: 32px; margin-top: 32px; }
  .partners-cta .section-title { font-size: 22px; line-height: 32px; }

  .newsletter { padding: 64px 0 48px; }
  .newsletter__title { font-size: 22px; line-height: 32px; }
  .newsletter__input { padding: 10px 20px; }

  .contact { padding: 40px 0; }
  .contact__label { font-size: 22px; line-height: 32px; }
  .contact__form-title { font-size: 16px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 48px 0; }

  .form-grid { grid-template-columns: 1fr; }
  .areas-hero__title { font-size: 1.3rem; line-height:1.6rem}

  .page-hero__title { font-size: 1.5rem; }
  .about-mission__text { font-size: 15px; }

  .recognitions .content_logos h2 { font-size: 22px; line-height: 32px; }
  .recognitions__logos { gap: 20px; }
  .recognitions__logos img { max-width: 90px; }

  .area-card { padding: 36px 24px; height: auto; min-height: 380px; }
  .area-card:before { width: 160px; height: 160px; left: -20px; top: -20px; }
  .area-card__title { font-size: 22px; line-height: 28px; }

  .partner__name { font-size: 20px; }
  .partner__bio, .partner__credential, .partner__contact a { font-size: 14px; }
}
