@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap");

:root {
  --brand-primary: #2f85d6;
  --brand-primary-strong: #256fb3;
  --brand-dark: #2c3069;
  --text-strong: #1f2937;
  --surface-soft: #f8fafc;
  /* Quadro da imagem: igual em todos os .product-detail (CC3, CC4, …). Medido a partir do layout CC4 em stretch, viewport 1280×900. */
  --product-detail-hero-media-w: 540px;
  --product-detail-hero-media-h: 469px;
}

body {
  color: var(--text-strong);
  text-wrap: pretty;
}

::selection {
  background: var(--brand-primary);
  color: #ffffff;
}

::-moz-selection {
  background: var(--brand-primary);
  color: #ffffff;
}

#logo img {
  width: 250px;
  max-height: none;
  height: auto;
  display: block;
}

.main-menu {
  background: #ffffff;
  border-top: 0;
  border-bottom: 0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02);
  backdrop-filter: none;
  border-radius: 0;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  width: 75%;
}

.main-menu::before {
  content: none;
}

.main-menu .row {
  min-height: 56px;
  position: relative;
  z-index: 1;
  margin-left: 0;
  margin-right: 0;
  gap: 12px;
  align-items: center !important;
}

#header .nav-menu a,
#header .menu-has-children i,
#header .nav-menu li.menu-active a {
  color: #2f3a48;
  text-shadow: none;
  font-weight: 400;
}

#header .nav-menu a:hover,
#header .nav-menu > .menu-active > a,
#header .nav-menu > li:hover > a {
  color: #2f3a48;
  background: transparent;
  box-shadow: none;
}

#header #nav-menu-container {
  margin-top: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

#header .nav-menu {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: auto;
  max-width: 100%;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

#header .nav-menu > li {
  display: flex;
  align-items: center;
  margin: 0;
}

#header .nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 0;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

#header .nav-menu > li.menu-has-children > a {
  padding-right: 14px;
}

#header .nav-menu > li.menu-has-children > a .uk-navbar-parent-icon {
  margin-left: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-out;
  transform-origin: 50% 50%;
  backface-visibility: visible;
  transform-style: preserve-3d;
  perspective: 800px;
  vertical-align: middle;
}

#header .nav-menu > li.menu-has-children > a .uk-navbar-parent-icon svg {
  width: 12px;
  height: 12px;
  display: block;
}

#header .nav-menu > li.menu-has-children > a .uk-navbar-parent-icon polyline {
  fill: none;
  stroke: #2f3a48;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#header .nav-menu > li.menu-has-children:hover > a .uk-navbar-parent-icon,
#header .nav-menu > li.menu-has-children > a[aria-expanded="true"] .uk-navbar-parent-icon {
  transform: rotateX(180deg);
}

#header .nav-menu > li > a::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: -16px;
  height: 3px;
  border-radius: 0;
  background: linear-gradient(90deg, #2f85d6 0%, #2c3069 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

#header .nav-menu > li.menu-active > a::after,
#header .nav-menu > li:hover > a::after {
  transform: scaleX(1);
}

#header .nav-menu ul {
  background: #ffffff;
  border: 1px solid #e7ecf2;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  padding: 10px 8px;
  min-width: 250px;
  margin-top: 0 !important;
  top: calc(100% + 2px);
}

#header .nav-menu > li.menu-has-children {
  position: relative;
}

#header .nav-menu > li.menu-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

#header .nav-menu ul li a {
  color: #4b5563;
  text-shadow: none;
  border-radius: 8px;
  padding: 8px 10px;
  display: block;
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

#mobile-nav ul li a {
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

#header .nav-menu ul li a:hover {
  color: #2c3069;
  background: linear-gradient(90deg, #e6f1ff 0%, #d6e7ff 100%);
}

#header #logo {
  display: flex;
  align-items: center;
  height: 56px;
  margin-right: 22px;
  padding-left: 0;
  flex: 0 0 auto;
  align-self: center;
  justify-content: center;
}

#header #logo > a {
  display: flex;
  align-items: center;
  height: 100%;
}

#header #logo img {
  width: 250px;
  height: auto;
  max-height: none;
  margin: 0;
  vertical-align: middle;
  transform: translateY(10px);
}

.primary-btn,
.header-btn {
  background-color: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
  color: #ffffff !important;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.primary-btn:hover,
.header-btn:hover {
  background: var(--brand-primary-strong) !important;
  border-color: var(--brand-primary-strong) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.home-about-area .home-about-left h6,
.single-service .primary-btn:hover,
.single-service h4:hover,
.single-blog .bottom span,
.single-blog h4:hover {
  color: var(--brand-primary) !important;
}

.cat-area .hb-facebook-inv,
.cat-area .hb-facebook-inv::after,
.cat-area .hb-facebook-inv::before,
.cat-area .hb-facebook:hover,
.cat-area .hb-facebook:hover::after,
.cat-area .hb-facebook:hover::before {
  border-color: #a7a7a7 !important;
  color: #a7a7a7 !important;
  background: transparent !important;
}

.cat-area .hb-facebook-inv:hover,
.cat-area .hb-facebook-inv:hover::after,
.cat-area .hb-facebook-inv:hover::before {
  background-color: var(--brand-primary) !important;
  border-color: #a7a7a7 !important;
  color: #ffffff !important;
}

.circle {
  border: 1px solid var(--brand-primary) !important;
}

.inner {
  background-color: var(--brand-primary) !important;
}

.single-service,
.single-cat,
.single-blog,
.single-post {
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.cat-card-link {
  text-decoration: none !important;
  color: inherit;
}

.cat-card-link:hover,
.cat-card-link:focus {
  text-decoration: none !important;
  color: inherit;
}

.single-service:hover,
.single-cat:hover,
.single-blog:hover,
.single-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.single-project,
.f-img,
.thumb img {
  border-radius: 10px;
}

.section-gap {
  padding: 96px 0;
}

#feature.cat-area.section-gap {
  padding-top: 18px;
}

.header-top-right a {
  white-space: nowrap;
}

.banner-content h1,
.about-content h1 {
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.header-top {
  background: var(--brand-dark);
  display: none;
}

.header-top-right a {
  color: #dbeafe;
  font-weight: 500;
}

.header-top-right a:hover {
  color: #ffffff;
}

.banner-area .overlay-bg {
  background: linear-gradient(90deg, rgba(22, 25, 30, 0.78) 0%, rgba(38, 42, 49, 0.58) 38%, rgba(55, 60, 68, 0.24) 68%, rgba(0, 0, 0, 0) 100%);
}

/* Home: vídeo no hero + camada preta (teste de leitura sobre o vídeo) */
.banner-area.banner-area--has-video {
  background: #0f0f0f;
  overflow: hidden;
}

.banner-area.banner-area--has-video .banner-area__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.banner-area.banner-area--has-video .banner-area__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-area.banner-area--has-video .banner-area__video-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.banner-area.banner-area--has-video .overlay.overlay-bg {
  z-index: 2;
  opacity: 1;
  background: linear-gradient(90deg, rgba(10, 12, 14, 0.68) 0%, rgba(18, 22, 28, 0.42) 55%, rgba(0, 0, 0, 0.12) 100%);
}

.banner-area.banner-area--has-video .container {
  position: relative;
  z-index: 3;
}

/* Catálogos: breadcrumb com foto (blend no estilo contato/quem somos) */
.banner-area.banner-area--catalog-hero {
  background-color: rgba(29, 28, 28, 0.66);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.banner-area.banner-area--catalog-hero.banner-area--cat-bg-frangos {
  background-image: url("/assets/img/breadcrumb-frangos-corte.png");
}

.banner-area.banner-area--catalog-hero.banner-area--cat-bg-aviario-linhas {
  background-image: url("/assets/img/breadcrumb-aviario-linhas.png");
}

.banner-area.banner-area--catalog-hero.banner-area--cat-bg-pintinhos {
  background-image: url("/assets/img/breadcrumb-pintinhos.png");
}

.banner-area.banner-area--catalog-hero.banner-area--cat-bg-contato-frangos {
  background-image: url("/assets/img/contato-hero-frangos.png");
}

.banner-area.banner-area--catalog-hero.banner-area--cat-bg-sobre-chicks {
  background-image: url("/assets/img/sobre-nos-hero-chicks.png");
}

.banner-area.banner-area--catalog-hero .overlay.overlay-bg {
  background: linear-gradient(90deg, rgba(18, 21, 26, 0.82) 0%, rgba(28, 32, 38, 0.65) 45%, rgba(40, 44, 52, 0.35) 100%);
}

.banner-area .row.fullscreen {
  justify-content: flex-start !important;
}

.banner-area .banner-content {
  text-align: left !important;
  max-width: 760px;
  margin-right: auto;
  margin-left: 0;
  padding-left: 12px;
}

.banner-area .banner-content h6 {
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.88);
}

.banner-area .banner-content h1 {
  color: #ffffff;
  max-width: 700px;
}

.banner-area .banner-content p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9) !important;
}

.banner-area .banner-content .primary-btn {
  margin-top: 8px;
}

/* Botão hero: cantos arredondados destacados, leva a Quem somos */
.banner-area .banner-content .home-banner-saiba-btn {
  border-radius: 14px !important;
  padding: 14px 32px !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
}

.banner-area .banner-content .home-banner-saiba-btn:hover,
.banner-area .banner-content .home-banner-saiba-btn:focus {
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
  color: #ffffff !important;
}

@media (max-width: 991.98px) {
  .banner-area .overlay-bg {
    background: linear-gradient(90deg, rgba(22, 25, 30, 0.78) 0%, rgba(38, 42, 49, 0.54) 50%, rgba(0, 0, 0, 0.1) 100%);
  }

  .banner-area .banner-content {
    max-width: 680px;
    padding-left: 6px;
  }
}

@media (max-width: 767.98px) {
  .banner-area .overlay-bg {
    background: linear-gradient(90deg, rgba(20, 24, 29, 0.82) 0%, rgba(20, 24, 29, 0.58) 55%, rgba(0, 0, 0, 0.12) 100%);
  }

  .banner-area .banner-content {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.home-about-right .form-wrap {
  background: linear-gradient(150deg, #2c3069 0%, #2f85d6 100%);
}

.home-about-area .home-about-right {
  background: none !important;
}

.fan-agri-copy {
  margin: 0 !important;
}

.fan-agri-copy > .uk-width-1-1 {
  width: 100%;
}

.product-related-section .el-title {
  font-weight: 600;
  text-transform: uppercase;
  color: #1f2937;
}

.product-related-section .el-content {
  color: #374151;
  font-size: 15px;
  line-height: 1.6;
}

.product-related-section .el-item .el-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #f8fafc;
  border-radius: 8px;
}

.product-related-section .el-link.uk-button {
  border-radius: 999px;
}

.product-related-section .el-link.uk-button {
  background: transparent;
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: 10px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  min-height: 34px;
  padding: 6px 14px;
  position: relative;
  vertical-align: middle;
}

.product-related-section .el-link.uk-button:hover,
.product-related-section .el-link.uk-button:focus {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #ffffff;
}

/* Produtos relacionados: setas/paginação na paleta Fancontrol + cards alinhados */
.product-related-section .el-slidenav {
  color: #7a8799;
  background: #dbeafe;
  border: none;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1;
  overflow: visible;
}

.product-related-section .el-slidenav:focus:not(:focus-visible) {
  color: #7a8799;
  background: #dbeafe;
}

.product-related-section .el-slidenav:hover,
.product-related-section .el-slidenav:focus-visible {
  color: #e5e7eb;
  background: var(--brand-primary-strong);
}

/* Garante hover ativo mesmo após clique/foco persistente */
.product-related-section .el-slidenav:hover,
.product-related-section .el-slidenav:hover:focus,
.product-related-section .el-slidenav:focus:hover,
.product-related-section .el-slidenav:hover:focus-visible {
  color: #e5e7eb !important;
  background: var(--brand-primary-strong) !important;
}

/* Chevron simples no estilo referência (formato "v") */
.product-related-section .el-slidenav::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2.4px solid currentColor;
  border-bottom: 2.4px solid currentColor;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -5px;
  box-sizing: border-box;
}

.product-related-section [uk-slidenav-previous].el-slidenav::before {
  transform: rotate(135deg);
}

.product-related-section [uk-slidenav-next].el-slidenav::before {
  transform: rotate(-45deg);
}

/* Remove o ícone padrão do UIkit para evitar conflito */
.product-related-section .el-slidenav svg,
.product-related-section .el-slidenav [class*="uk-icon"] {
  display: none !important;
}

/* Mais respiro lateral para não encostar nas imagens */
.product-related-section .uk-position-center-left-out {
  margin-right: 20px;
}

.product-related-section .uk-position-center-right-out {
  margin-left: 20px;
}

.product-related-section .uk-dotnav > * > * {
  background: rgba(47, 133, 214, 0.28);
  border: 1px solid rgba(47, 133, 214, 0.5);
}

.product-related-section .uk-dotnav > .uk-active > * {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.product-related-section .el-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: visible;
}

.product-related-section .el-item .el-content {
  min-height: calc(15px * 1.6 * 3);
}

.product-related-section .el-item > .uk-margin-top:last-child {
  margin-top: auto !important;
  padding-top: 10px;
  padding-bottom: 2px;
}

.home-about-left .sub {
  color: var(--brand-primary);
  font-weight: 500;
}

.service-area .header-text p,
.project-area .header-text p,
.blog-area .header-text p {
  color: #475467;
}

/* Home: cards de notícias alinhados (mesma altura de foto e texto cortado) */
.blog-area.home-news-section .home-news-row {
  margin-left: -12px;
  margin-right: -12px;
}

.blog-area.home-news-section .home-news-col {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .blog-area.home-news-section .home-news-col {
    margin-bottom: 0;
  }
}

.blog-area.home-news-section .home-news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 10px;
  box-sizing: border-box;
}

.blog-area.home-news-section .home-news-card__media {
  display: block;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.blog-area.home-news-section .home-news-card__thumb {
  height: 220px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
}

.blog-area.home-news-section .home-news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-area.home-news-section .home-news-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding-top: 14px;
}

.blog-area.home-news-section .home-news-card__meta {
  margin-bottom: 10px;
  min-height: 28px;
}

.blog-area.home-news-section .home-news-card__titlelink {
  text-decoration: none;
  color: inherit;
  display: block;
  margin-bottom: 8px;
}

.blog-area.home-news-section .home-news-card__titlelink h4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0;
  min-height: calc(1.35em * 2);
  line-height: 1.35;
}

.blog-area.home-news-section .home-news-card__excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin: 0;
  margin-top: auto;
  min-height: calc(1.55em * 4);
  line-height: 1.55;
  flex: 1 0 auto;
}

.single-service h4,
.single-cat h4,
.single-blog h4 {
  color: var(--brand-dark);
}

.single-service p,
.single-cat p,
.single-blog p {
  color: #4b5563;
}

.single-faq h5,
.single-faq p {
  color: #ffffff;
}

.footer-area {
  position: relative;
  background: #f8f8f8;
  border-top: 0;
  padding-top: 68px;
  padding-bottom: 0;
}

.footer-top-transition {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(180deg, rgba(248, 248, 248, 0) 0%, rgba(248, 248, 248, 1) 100%);
}

.footer-area > .container,
.footer-bottom-bar > .container {
  width: calc(100% - 160px);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.footer-grid {
  row-gap: 24px;
  align-items: flex-start;
}

.footer-grid > [class*="col-"] {
  display: flex;
}

.footer-grid .single-footer-widget {
  width: 100%;
}

.footer-area .single-footer-widget h6 {
  color: var(--brand-dark);
  margin-bottom: 10px;
  font-size: 20px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

.footer-area p,
.footer-area a {
  color: #7a7a7a;
  font-size: 16px;
  line-height: 1.85;
}

.footer-address-widget .footer-address-text {
  margin-top: 0;
  margin-bottom: 0;
}

.footer-contact-line {
  margin: 0 0 6px;
}

.footer-contact-line i {
  width: 16px;
  text-align: center;
  margin-right: 6px;
  color: var(--brand-primary);
}

.footer-route-line {
  margin-top: 8px;
}

.footer-route-line a {
  display: inline-flex;
  align-items: center;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-right: 6px;
  vertical-align: -2px;
  filter: invert(45%) sepia(67%) saturate(1511%) hue-rotate(184deg) brightness(91%) contrast(90%);
}

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

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

.footer-links a:hover,
.footer-area a:hover {
  color: var(--brand-primary-strong);
}

.footer-social {
  gap: 10px;
  margin-top: 10px;
}

.footer-social-title {
  margin-top: 12px;
}

.footer-social a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--brand-primary);
  background: var(--brand-primary);
  color: #ffffff !important;
  padding: 0;
}

.footer-social a i {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  width: 13px;
  height: 13px;
  transform: translateY(0.5px);
  color: #ffffff !important;
  transition: transform 0.2s ease;
}

.footer-social-instagram-svg {
  width: 17px;
  height: 17px;
  display: inline-block;
  fill: currentColor;
  color: #ffffff;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover i {
  transform: translateY(0.5px) scale(1.08);
  color: #ffffff !important;
}

.footer-social a:hover .footer-social-instagram-svg {
  opacity: 1;
  transform: scale(1.08);
}

.footer-route-pin-svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -2px;
  fill: var(--brand-primary);
}

.footer-social a:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: #ffffff !important;
}

.footer-bottom-bar {
  margin-top: 68px;
  padding: 0;
  background: linear-gradient(90deg, #4b4b4b 0%, #1a1a1a 35%, #000000 100%);
  border-top: 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom-bar > .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
}

.footer-area .footer-text {
  color: #bdbdbd;
  margin: 0;
  padding-top: 0;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  width: 100%;
}

.about-company-intro {
  padding-top: 72px;
}

.about-company-copy h2,
.about-company-pillars h2,
.about-company-location h2 {
  color: var(--brand-dark);
  margin-bottom: 18px;
}

.about-company-copy p {
  margin-bottom: 14px;
  color: #4b5563;
}

.about-company-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-media-card {
  background: #ffffff;
  border: 1px solid #e6edf5;
  border-radius: 14px;
  padding: 14px;
  min-height: 210px;
  display: grid;
  place-items: center;
}

.about-media-card img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.about-company-pillars {
  background: #f8fbff;
}

.about-pillar-card {
  background: #ffffff;
  border: 1px solid #e3ecf7;
  border-radius: 14px;
  padding: 24px 20px;
  height: 100%;
}

.about-pillar-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--brand-dark);
}

.about-pillar-card p,
.about-pillar-card li {
  color: #4b5563;
}

.about-pillar-card ul {
  margin: 0;
  padding-left: 18px;
}

.about-highlight-item {
  background: #ffffff;
  border: 1px solid #e6edf5;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
}

.about-highlight-item h4 {
  color: var(--brand-primary-strong);
  margin-bottom: 8px;
}

.about-highlight-item p {
  color: #4b5563;
  margin: 0;
}

.about-company-location {
  background: #f8fbff;
}

.about-location-card {
  background: #ffffff;
  border: 1px solid #e3ecf7;
  border-radius: 14px;
  padding: 22px;
}

.about-location-card h5 {
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.about-copy-hero,
.about-locations-full,
.about-showcase-full {
  width: 100%;
}

.about-copy-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-copy-block {
  padding: 72px 7vw;
  min-height: 460px;
}

.about-copy-dark {
  background: #0f172a;
  color: #e2e8f0;
}

.about-copy-dark h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.about-copy-dark p {
  color: #d1d9e6;
  max-width: 680px;
}

.about-copy-light {
  background: #f3f6fb;
  color: #1f2937;
}

.about-copy-light h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.about-copy-light p,
.about-copy-light li {
  color: #3f4a59;
}

.about-copy-light ul {
  margin: 0;
  padding-left: 18px;
}

.about-locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-location-col {
  padding: 64px 7vw;
  background: #ffffff;
  border-top: 1px solid #e5edf7;
}

.about-location-col h2 {
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.about-location-col p {
  color: #4b5563;
}

.about-location-highlight {
  background: #f8fbff;
}

.about-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.about-showcase-item {
  min-height: 320px;
  border-top: 1px solid #e5edf7;
  border-right: 1px solid #e5edf7;
  display: grid;
  place-items: center;
  background: #ffffff;
  padding: 26px;
}

.about-showcase-item:last-child {
  border-right: 0;
}

.about-showcase-item img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .about-copy-wrap,
  .about-locations-grid {
    grid-template-columns: 1fr;
  }

  .about-copy-block,
  .about-location-col {
    padding: 48px 24px;
    min-height: auto;
  }

  .about-showcase-grid {
    grid-template-columns: 1fr;
  }

  .about-showcase-item {
    border-right: 0;
    min-height: 260px;
  }
}

.about-clone {
  padding-top: 36px;
  padding-bottom: 72px;
}

/* Quem somos: hero panorâmico colado ao grid (sem fracao entre blocos) */
.about-clone--merged {
  padding-top: 0;
  padding-bottom: 80px;
}

/* Hero estilo Agridrones (Yootheme): blend overlay + Manrope / #016a42 */
.about-clone-hero-panorama {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: clamp(280px, 32vw, 480px);
  padding: clamp(56px, 8vw, 100px) clamp(20px, 4vw, 48px);
  background-color: rgba(29, 28, 28, 0.69);
  background-image: url("/assets/img/sobre-nos-hero-chicks.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.about-clone-hero-panorama__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.about-clone-hero-tagline {
  margin: 0;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.about-clone-hero-tagline strong {
  font-weight: 700;
}

@media (max-width: 767px) {
  .about-clone-hero-tagline {
    font-size: clamp(22px, 5.5vw, 36px);
  }
}

/* Quem somos: texto institucional (H2 igual às páginas de produto .product-section h2) */
.about-company-story {
  background: #ffffff;
}

.about-company-story__head {
  margin-bottom: 2.25rem;
}

/* Mesmo padrão visual do h2 em “Destaques do produto” (.product-section h2 + tipografia global h2) */
.about-company-story__title {
  color: var(--brand-dark);
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2em;
  margin: 0 0 16px;
}

.about-company-story__title strong {
  font-weight: 700;
  color: var(--brand-dark);
}

.about-company-story__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: #374151;
  margin: 0 auto;
  max-width: 40rem;
}

.about-company-story__subtitle strong {
  font-weight: 700;
  color: inherit;
}

.about-company-story__body {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: #1f2937;
}

.about-company-story__body p {
  margin: 0 0 1.2em;
}

.about-company-story__body p:last-child {
  margin-bottom: 0;
}

/* Quem somos: grade 3 colunas × 2 linhas — missão | img | valores / img | visão | img */
.about-clone--merged .about-clone-grid {
  border-top: 0;
}

.about-clone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(280px, auto) minmax(280px, auto);
  background: #ffffff;
  border-top: 1px solid #e5ecf6;
  border-left: 1px solid #e5ecf6;
}

.about-clone-cell {
  min-height: 0;
  border-right: 1px solid #e5ecf6;
  border-bottom: 1px solid #e5ecf6;
}

.about-clone-cell--text {
  background: #f5f7fb;
  padding: 48px clamp(20px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-clone-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.about-clone-pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 38rem;
  margin: 0 auto;
}

.about-clone-pillar-svg {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  margin-bottom: 22px;
  color: var(--brand-primary);
}

.about-clone-pillar-svg--diamond {
  width: 68px;
  height: 68px;
}

.about-clone-pillar p {
  color: #1f2937;
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  text-align: center;
}

.about-clone-cell--text p {
  color: #1f2937;
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.75;
}

.about-clone-cell--text p:last-child {
  margin-bottom: 0;
}

.about-clone-lead {
  color: #0f172a;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 18px !important;
}

.about-clone-block-title {
  color: #0f172a;
  font-size: 26px;
  line-height: 1.25;
  margin: 0 0 12px;
  font-weight: 600;
}

.about-clone-cell--photo {
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

.about-clone-photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.about-clone-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

/* Esfumado atmosférico (véu + vignette), inspiração Agridrones, em azul Fancontrol */
.about-clone-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 95% 70% at 50% 42%, rgba(47, 133, 214, 0.18) 0%, transparent 58%),
    radial-gradient(ellipse 125% 90% at 50% 110%, rgba(44, 48, 105, 0.62) 0%, transparent 55%),
    radial-gradient(ellipse 115% 75% at 50% -8%, rgba(29, 28, 28, 0.48) 0%, transparent 50%),
    radial-gradient(ellipse 95% 100% at 0% 50%, rgba(44, 48, 105, 0.35) 0%, transparent 45%),
    radial-gradient(ellipse 95% 100% at 100% 50%, rgba(44, 48, 105, 0.35) 0%, transparent 45%),
    linear-gradient(
      168deg,
      rgba(44, 48, 105, 0.5) 0%,
      rgba(29, 28, 28, 0.34) 32%,
      rgba(47, 133, 214, 0.1) 52%,
      rgba(44, 48, 105, 0.56) 100%
    );
}

@media (max-width: 1199px) {
  .about-clone-block-title {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .about-clone-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    border-left: 0;
    border-top: 1px solid #e5ecf6;
  }

  .about-clone-cell {
    border-right: 0;
    border-bottom: 1px solid #e5ecf6;
  }

  .about-clone-cell:last-child {
    border-bottom: 0;
  }

  .about-clone-cell--text {
    padding: 42px 24px;
  }

  .about-clone-photo-frame,
  .about-clone-photo-frame img {
    min-height: 220px;
  }
}

/* .product-detail: quadro .product-hero-media sempre --product-detail-hero-media-* (CC3 e CC4 idênticos). */
.product-hero {
  padding: 120px 0 54px;
  background: #ffffff;
}

.product-detail .product-hero-row {
  align-items: flex-start;
}

/* Hero com coluna de texto fixa à altura do quadro da imagem e bloco de contato no rodapé */
.product-detail.product-detail-ba1 .product-hero-row,
.product-detail.product-detail-hero-balanced .product-hero-row {
  align-items: stretch;
}

.product-detail.product-detail-ba1 .product-hero-col-text,
.product-detail.product-detail-hero-balanced .product-hero-col-text {
  justify-content: space-between;
}

.product-detail.product-detail-ba1 .product-hero-copy,
.product-detail.product-detail-hero-balanced .product-hero-copy {
  flex: 1 1 auto;
  min-height: 0;
}

.product-detail-stretch-reference .product-hero-row {
  align-items: stretch;
}

.product-hero-row {
  align-items: stretch;
}

.product-hero-col {
  display: flex;
}

.product-hero-col-text {
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  height: var(--product-detail-hero-media-h);
  min-height: var(--product-detail-hero-media-h);
}

.product-hero-col-media {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.product-hero-kicker {
  color: var(--brand-primary-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 2px;
}

.product-hero h1 {
  color: #111827;
  margin: 0 0 14px;
  font-size: 38px;
}

.product-hero-text {
  color: #374151;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
}

.product-hero-media {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  align-self: stretch;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  background: #fafbfc;
}

.product-detail .product-hero-col-media {
  min-height: 0;
}

.product-detail .product-hero-media {
  flex: 0 0 auto;
  box-sizing: border-box;
  width: var(--product-detail-hero-media-w);
  max-width: 100%;
  height: var(--product-detail-hero-media-h);
  min-height: var(--product-detail-hero-media-h);
  align-self: flex-start;
}

.product-detail-stretch-reference .product-hero-media {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  height: auto;
  align-self: stretch;
}

.product-hero-copy {
  display: flex;
  flex-direction: column;
}

.product-hero-copy .product-hero-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .product-hero-col-text {
    height: auto;
    min-height: 0;
  }

  .product-detail .product-hero-media {
    width: 100%;
    max-width: min(var(--product-detail-hero-media-w), 100%);
    height: auto;
    min-height: 0;
    aspect-ratio: 540 / 469;
  }
}

.product-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  display: block;
}

/* Catálogo controladores: quadro com altura 30% menor que a base CC2-C (162×224 → ratio 405/392) */
.catalog-controladores .single-service .thumb {
  aspect-ratio: 405 / 392;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  padding: 18px;
  box-sizing: border-box;
  background: #fafbfc;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  overflow: hidden;
}

.catalog-controladores .single-service .thumb img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  display: block;
}

.catalog-controladores .single-service:hover .thumb img {
  transform: none;
}

/* Texto do card no catálogo: mais espaço até a borda */
.catalog-controladores .single-service h4 {
  padding: 22px 26px 10px;
  margin: 0;
}

.catalog-controladores .single-service p {
  padding: 0 26px 14px;
  margin: 0;
}

.catalog-controladores .single-service .primary-btn {
  margin: 4px 26px 26px;
  display: inline-block;
  border-radius: 10px !important;
  border: 1px solid var(--brand-primary) !important;
  background: transparent !important;
  color: var(--brand-primary) !important;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  box-shadow: none !important;
}

.catalog-controladores .single-service .primary-btn:hover,
.catalog-controladores .single-service .primary-btn:focus {
  background: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
  color: #ffffff !important;
}

.product-contact-box {
  border: 1px solid #dbe6f3;
  border-radius: 12px;
  background: #f8fbff;
  padding: 18px 18px 16px;
}

.product-contact-box h3 {
  font-size: 20px;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.product-contact-box p {
  margin-bottom: 14px;
}

.product-contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.primary-btn.product-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 240px;
  text-align: left;
  border-radius: 10px;
  border: 1px solid var(--brand-primary);
  background: transparent;
  color: var(--brand-primary);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.primary-btn.product-btn-whatsapp:hover,
.primary-btn.product-btn-whatsapp:focus {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #ffffff;
}

/* main.css .primary-btn span usa position:absolute (seta); aqui o texto e o ícone ficam em flex */
.primary-btn.product-btn-whatsapp span {
  position: static !important;
  top: auto !important;
  right: auto !important;
  transform: none !important;
}

.primary-btn.product-btn-whatsapp:hover span {
  right: auto !important;
}

.primary-btn.product-btn-whatsapp .product-btn-whatsapp-icon {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}

.primary-btn.product-btn-whatsapp .product-btn-whatsapp-icon svg {
  display: block;
}

.product-section {
  padding: 68px 0;
}

.product-section-soft {
  background: #f8fbff;
}

.product-section h2 {
  color: var(--brand-dark);
  font-size: 30px;
  margin: 0 0 16px;
}

.product-section p {
  color: #374151;
  line-height: 1.75;
  margin-bottom: 14px;
}

.product-section .col-lg-6 {
  display: flex;
  flex-direction: column;
}

/* Blindagem de alinhamento para o bloco "Destaques do produto" (CC3/CC4 e futuros) */
.product-highlights-section .product-highlights-content,
.product-highlights-section .product-highlights-content h2,
.product-highlights-section .product-highlights-content .product-list,
.product-highlights-section .product-highlights-content p {
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-align: left;
}

.product-highlights-section .product-highlights-content p {
  display: block !important;
  float: none !important;
  clear: both;
  position: static !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 14px 0 !important;
  padding: 0 !important;
  white-space: normal !important;
  text-wrap: auto !important;
  text-indent: 0 !important;
  transform: none !important;
}

.product-highlights-section .product-highlights-content .product-list,
.product-highlights-section .product-highlights-content .product-highlights-paragraph {
  margin-left: 0 !important;
  width: 100% !important;
}

.product-card {
  background: #fff;
  border: 1px solid #e7eef7;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
}

.product-card h3 {
  color: var(--brand-dark);
  font-size: 20px;
}

.product-list {
  margin: 0 0 16px;
  padding-left: 0;
  list-style: none;
}

.product-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #374151;
  line-height: 1.7;
}

.product-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--brand-primary);
  font-weight: 700;
}

.product-related-section .product-related-heading {
  text-align: left;
  margin-bottom: 24px;
}

/* Mesmo respiro superior que as outras .product-section (ex.: Recursos técnicos); título e subtítulo mais próximos */
.product-related-section .product-related-heading h2 {
  margin-bottom: 8px;
}

.product-related-section .product-related-heading p {
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .footer-area .single-footer-widget {
    margin-bottom: 14px;
  }

  .footer-area .single-footer-widget h6 {
    font-size: 18px;
  }

  .footer-area > .container,
  .footer-bottom-bar > .container {
    width: calc(100% - 80px);
  }
}

/* WhatsApp floating button (same motion style as Next4 plugin) */
.nxwhats_content {
  position: fixed;
  bottom: 20px !important;
  right: 10px;
  z-index: 1000;
}

.nxwhats_content img {
  width: 70px;
  height: 70px;
  display: block;
}

.nxwhats_content:hover img {
  opacity: 0.95;
}

.whatstremor {
  animation: 1s 1s infinite forwards whatstremor;
}

@keyframes whatstremor {
  0% {
    animation-timing-function: ease-out;
    transform: scale(1);
    transform-origin: center center;
  }
  10% {
    animation-timing-function: ease-in;
    transform: scale(0.91);
  }
  17% {
    animation-timing-function: ease-out;
    transform: scale(0.98);
  }
  33% {
    animation-timing-function: ease-in;
    transform: scale(0.87);
  }
  45% {
    animation-timing-function: ease-out;
    transform: scale(1);
  }
}

/* Responsive hardening */
@media (max-width: 991.98px) {
  .section-gap {
    padding: 72px 0;
  }

  #logo img {
    width: 250px;
    height: auto;
  }

  #header #logo {
    margin-right: 10px;
    padding-left: 8px;
  }

  .main-menu {
    border-radius: 0;
    padding: 0;
    width: 100%;
  }

  .main-menu .row {
    min-height: 72px;
    gap: 8px;
  }

  #header #nav-menu-container {
    display: flex;
  }

  .banner-content h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .single-service,
  .single-cat,
  .single-blog {
    margin-bottom: 22px;
  }
}

@media (max-width: 800px) {
  #header #nav-menu-container {
    display: none;
  }

  #header .main-menu .row {
    justify-content: center !important;
  }

  #header #logo {
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    height: 66px;
  }

  #header #logo img,
  #logo img {
    width: 250px;
    height: auto;
  }

  #mobile-nav-toggle {
    left: 12px !important;
    right: auto !important;
    top: 46px !important;
    transform: translateY(-50%);
  }

  #mobile-nav-toggle i {
    color: #2c3069 !important;
  }

  body.mobile-nav-active #mobile-nav-toggle {
    top: 14px !important;
    left: 222px !important;
    right: auto !important;
    transform: none !important;
    z-index: 1001 !important;
  }

  body.mobile-nav-active #mobile-nav-toggle i {
    color: #2f85d6 !important;
  }
}

@media (max-width: 767.98px) {
  .section-gap {
    padding: 56px 0;
  }

  .banner-content h1 {
    font-size: 28px;
  }

  .banner-area .row.fullscreen {
    justify-content: center !important;
  }

  .banner-area .banner-content {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  .banner-area .banner-content h1,
  .banner-area .banner-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .banner-area .banner-content .primary-btn {
    display: inline-flex;
    justify-content: center;
  }

  .banner-content p br {
    display: none;
  }

  .home-about-right .form-wrap {
    margin-top: 24px;
  }

  .about-content h1 {
    font-size: 30px;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .banner-content h1 {
    font-size: 24px;
  }

  .primary-btn,
  .header-btn {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ——— Fale conosco (contato.php) ——— */
.contato-page {
  padding-top: 0;
}

.contato-hero-panorama {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: clamp(280px, 32vw, 480px);
  padding: clamp(56px, 8vw, 100px) clamp(20px, 4vw, 48px);
  background-color: rgba(29, 28, 28, 0.69);
  background-image: url("/assets/img/contato-hero-frangos.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.contato-hero-panorama__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

/* Mesma tipografia de sobre_nos (.about-clone-hero-tagline); só espaço entre as duas linhas */
.contato-hero-panorama .contato-hero-titleline {
  margin: 0 0 0.65rem !important;
}

.contato-hero-panorama .contato-hero-subline {
  margin: 0 !important;
}

.contato-page-body {
  padding-top: 56px;
  padding-bottom: 64px;
}

.contato-page-row {
  align-items: flex-start;
}

.contato-page-aside {
  padding-right: clamp(8px, 2vw, 20px);
  margin-bottom: 28px;
}

.contato-page-form-wrap {
  padding-left: clamp(8px, 2vw, 20px);
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .contato-page-aside {
    margin-bottom: 0;
  }
}

.contato-aside-card {
  background: #f5f7fb;
  border: 1px solid #e5ecf6;
  border-radius: 12px;
  padding: clamp(22px, 4vw, 32px);
}

.contato-aside-text {
  margin-bottom: 14px;
  color: #1f2937;
}

.contato-aside-card .footer-address-text {
  color: #1f2937;
  margin-bottom: 0;
}

.contato-aside-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.contato-aside-line:last-child {
  margin-bottom: 0;
}

.contato-aside-line__icon {
  flex: 0 0 22px;
  width: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 3px;
}

.contato-aside-icon-svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: var(--brand-primary);
}

.contato-aside-line__icon .contato-aside-contact-img {
  margin: 0;
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: top;
}

.contato-aside-line__text {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: #111827;
  line-height: 1.6;
}

.contato-aside-card .footer-contact-line {
  margin-bottom: 0;
}

.contato-aside-card a {
  color: #111827;
  text-decoration: none;
}

.contato-aside-card a:hover {
  color: #000000;
  text-decoration: underline;
}

.contato-aside-sep {
  color: #6b7280;
  margin: 0 0.15em;
  font-weight: 400;
  text-decoration: none;
}

.contato-form .form-group {
  margin-bottom: 18px;
}

.contato-form-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.contato-form .form-control.contato-input,
.contato-form .form-control.contato-textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contato-form-actions {
  margin-bottom: 0;
}

.contato-submit-btn--full {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.contato-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.contato-input,
.contato-textarea {
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 15px;
  padding: 10px 14px;
}

.contato-input:focus,
.contato-textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(47, 133, 214, 0.2);
  outline: none;
}

.contato-textarea {
  resize: vertical;
  min-height: 140px;
}

.contato-submit-btn.primary-btn {
  border-radius: 10px;
  padding-left: 28px;
  padding-right: 28px;
  cursor: pointer;
}

.contato-map-section {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  background: #e2e8f0;
}

.contato-map-iframe {
  width: 100%;
  height: min(52vh, 520px);
  min-height: 320px;
  border: 0;
  display: block;
}

/* ——— Notícias (lista + interna, conteúdo estático importado) ——— */
.noticias-hero {
  background-image: url("/assets/img/contato-hero-frangos.png");
}

.noticias-list-body {
  padding-top: 48px;
  padding-bottom: 72px;
}

.noticias-intro {
  max-width: 46rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.noticias-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.noticias-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
  .noticias-card {
    grid-template-columns: 280px 1fr;
    align-items: stretch;
  }
}

.noticias-card__media {
  display: block;
  background: #e2e8f0;
  min-height: 200px;
}

.noticias-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  display: block;
}

.noticias-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.noticias-card__date {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-primary, #2f85d6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.noticias-card__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin: 0.5rem 0 0.75rem;
  line-height: 1.3;
  color: var(--brand-dark, #1d1d1d);
}

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

.noticias-card__title a:hover {
  color: var(--brand-primary-strong, #1a6ec4);
}

.noticias-card__excerpt {
  margin: 0 0 1.25rem;
  color: #475569;
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
}

.noticias-card__more {
  margin-top: auto;
}

.noticias-single-wrap {
  padding-top: 32px;
  padding-bottom: 72px;
  max-width: 820px;
}

.noticias-missing {
  font-size: 18px;
  margin-bottom: 1rem;
}

.noticias-back {
  margin: 0 0 1.5rem;
}

.noticias-back-link {
  font-weight: 600;
  color: var(--brand-primary, #2f85d6);
  text-decoration: none;
}

.noticias-back-link:hover {
  text-decoration: underline;
}

.noticias-hero--single .noticias-single-hero-title {
  font-size: clamp(22px, 4vw, 38px) !important;
  line-height: 1.3 !important;
  margin-bottom: 0.6rem !important;
}

.noticias-single-hero-date {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Manrope", sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
}

.noticias-single-cover {
  margin: 0 0 2rem;
  border-radius: 12px;
  overflow: hidden;
  background: #e2e8f0;
}

.noticias-single-cover img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.noticias-single-content {
  font-size: 17px;
  line-height: 1.75;
  color: #1e293b;
}

.noticias-single-content p {
  margin-bottom: 1.15rem;
}

.noticias-single-links {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
}

.noticias-single-links a {
  color: var(--brand-primary, #2f85d6);
  word-break: break-word;
}

.noticias-gallery {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.noticias-gallery__title {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--brand-dark, #1d1d1d);
}

.noticias-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.noticias-gallery__item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f5f9;
  aspect-ratio: 4 / 3;
}

.noticias-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.noticias-gallery__item:hover img {
  transform: scale(1.03);
}

.noticias-single-nav {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .noticias-single-nav {
    grid-template-columns: 1fr 1fr;
  }

  .noticias-single-nav__next {
    text-align: right;
  }
}

.noticias-single-nav__label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 0.35rem;
}

.noticias-single-nav a {
  font-weight: 600;
  color: var(--brand-dark, #1d1d1d);
  text-decoration: none;
}

.noticias-single-nav a:hover {
  color: var(--brand-primary, #2f85d6);
}