/* Fetiche Models - Estilo Oficial de Alta Performance */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=Playball&display=swap');

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

:root {
  --font-main: 'Montserrat', sans-serif;
  --font-script: 'Playball', cursive;
  --color-text-body: rgb(148, 148, 148);
  --color-bg-dark: #000000;
  --color-bg-white: #ffffff;
  --container-width: 1200px;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  background-color: transparent;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: rgb(148, 148, 148);
  background-color: #ffffff;
  overflow-x: hidden;
}

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

a:hover {
  color: #000000;
}

body.home-page a:hover,
.nav-link:hover,
.nav-link.active,
.dropdown-link:hover,
.footer-social-links a:hover,
.subfooter a:hover,
.top-bar-social a:hover,
.top-bar-item a:hover {
  color: #ffffff;
}

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

.container {
  width: min(90%, var(--container-width));
  margin-inline: auto;
}

/* Landmarks & Content Wrap */
#content-wrap.container.clr {
  padding-top: 50px;
  padding-bottom: 50px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 1000;
  background: #000;
  color: #fff;
  padding: 8px 16px;
}
.skip-link:focus {
  left: 12px;
}

/* ==========================================================================
   TOPBAR
   ========================================================================== */
#top-bar.top-bar {
  background-color: #000000;
  border-bottom: none;
  font-size: 12px;
  color: rgb(148, 148, 148);
  height: 50px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 50;
}

#top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: min(90%, var(--container-width));
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-social a {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.top-bar-social a:hover {
  transform: scale(1.15);
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(148, 148, 148);
}

.top-bar-item a {
  color: rgb(148, 148, 148);
}

.top-bar-item a:hover {
  color: #ffffff;
}

@media (max-width: 959px) {
  #top-bar.top-bar {
    display: none !important;
  }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header#site-header.site-header {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.75);
  border-bottom: none;
  font-size: 18px;
  color: rgb(148, 148, 148);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 154px;
  padding: 15px 0;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 124px;
  max-height: 124px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 959px) {
  header#site-header.site-header {
    top: 0 !important;
    height: 100px;
    min-height: 100px;
  }
  .header-inner {
    min-height: 100px;
    height: 100px;
    padding: 0;
  }
  .site-logo img {
    height: 70px;
    max-height: 70px;
  }
}

.nav-desktop {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: rgb(148, 148, 148);
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.6px;
  padding: 0 15px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #111111;
  border: 1px solid #222222;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 200;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 12px 15px;
  color: rgb(148, 148, 148);
  font-size: 12px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.6px;
  transition: background-color 0.2s, color 0.2s;
}

.dropdown-link:hover,
.dropdown-link.active {
  background-color: #1a1a1a;
  color: #ffffff;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
}

.mobile-drawer {
  display: none;
  background-color: #111111;
  border-top: 1px solid #222222;
  padding: 16px 20px 24px;
}

.mobile-drawer.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-list a {
  color: #cccccc;
  font-size: 16px;
  display: block;
  padding: 6px 0;
}

.mobile-nav-list .mobile-subnav {
  list-style: none;
  padding-left: 16px;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-list .mobile-subnav a {
  font-size: 14px;
  color: #999999;
}

@media (max-width: 960px) {
  .nav-desktop {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}

/* ==========================================================================
   LANDMARK MAIN & CONTENT-WRAP
   ========================================================================== */
main#main.site-main {
  position: relative;
  display: block;
  padding-top: 0;
}

div#content-wrap.container.clr {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 300;
  color: rgb(148, 148, 148);
  width: min(90%, 1200px);
  margin-inline: auto;
  position: static;
  padding-top: 50px;
  padding-bottom: 50px;
}

body.home-page div#content-wrap.container.clr {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.inner-page:not(.has-page-header) div#content-wrap.container.clr {
  padding-top: 170px;
  padding-bottom: 50px;
}

body.has-page-header div#content-wrap.container.clr {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* ==========================================================================
   HOME PAGE ELEMENTS
   ========================================================================== */
/* Slider stretched beyond content-wrap to 100vw */
.home-slider-row {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background-color: #000000;
  margin-top: 0;
}

.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slider-prev {
  left: 24px;
}

.slider-next {
  right: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.slider-dot.active {
  background: #ffffff;
  transform: scale(1.2);
}

.slider-arrow,
.slider-dots {
  display: none;
}

@media (max-width: 768px) {
  .slider-container {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
  }
}

/* Home Sections */
body.home-page #content-wrap,
body.home-page #primary,
body.home-page #content,
body.home-page .entry,
body.home-page article {
  overflow: visible;
}

.home-section-wrap {
  padding: 100px 0;
  position: relative;
  background-color: #000000;
  text-align: center;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.home-section-inner {
  max-width: 720px;
  margin: 0 auto;
}

.section-title {
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: normal;
  line-height: 1.4;
}

.bordaTitulo {
  width: 100px;
  height: 2px;
  margin: 0 auto 40px;
  background-color: #ffffff;
}

.section-lead {
  font-size: 18px;
  line-height: 32.4px;
  color: rgb(148, 148, 148);
  margin-bottom: 40px;
}

.home-agencia .section-lead {
  text-align: justify;
}

.home-btn-wrap {
  text-align: center;
  margin: 0;
}

.home-noticias-btn {
  margin-top: 50px;
}

.btn-custom {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  line-height: 16px;
  padding: 25px 40px;
  border: 2px solid #ffffff;
  background-color: #1e1e1e;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: rgb(148, 148, 148);
}

/* Casting — faixa preta (#pg-6-9) + grid com padding-top 100px (#pg-6-10).
   Playball 300/132 vaza; só a perna do g toca as fotos. */
.home-casting-block {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #000000;
  overflow: visible;
}

.home-watermark-row {
  position: relative;
  z-index: 5;
  height: 152px;
  text-align: center;
  background-color: #000000;
  user-select: none;
  overflow: visible;
  pointer-events: none;
}

.tituloCasting {
  color: #252525;
  font-family: 'Playball', cursive, sans-serif;
  font-size: 300px;
  font-weight: 400;
  line-height: 132px;
  margin: 0;
  padding: 0;
  overflow: visible;
  white-space: nowrap;
  position: relative;
  z-index: 5;
  pointer-events: none;
  user-select: none;
  text-align: center;
}

@media (max-width: 780px) {
  .home-section-wrap {
    padding: 30px 0;
  }
  .home-watermark-row {
    height: auto;
  }
  .tituloCasting {
    font-size: 90px;
    line-height: 90px;
    margin-bottom: -63px;
  }
}

/* 2x2 — gutter 30px horizontal, 0 vertical; padding-top 100px como o original */
.home-category-row {
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 100px;
  background-color: #000000;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 0;
  width: 100%;
}

.category-card {
  position: relative;
  overflow: visible;
  display: block;
  background-color: #000000;
}

.category-photo {
  display: block;
  overflow: hidden;
  aspect-ratio: 1200 / 700;
  background-color: #000000;
}

.category-card img,
.category-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.4s ease;
}

.category-card:hover img {
  filter: contrast(130%);
}

.category-title,
.castingHome {
  position: relative;
  display: block;
  margin-top: -152px;
  height: 152px;
  padding: 0;
  color: #ffffff;
  font-family: 'Playball', cursive, sans-serif;
  font-size: 140px;
  font-weight: 400;
  line-height: 132px;
  text-shadow: 1px 2px 2px #000;
  pointer-events: none;
  z-index: 2;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 780px) {
  .home-category-row {
    padding-top: 30px;
  }
  .category-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0;
  }
  .category-title,
  .castingHome {
    text-align: center;
    font-size: 68px;
    line-height: 80px;
    height: 110px;
    margin-top: -110px;
  }
}

/* ==========================================================================
   PÁGINAS INTERNAS (Casting, Agência, etc.)
   ========================================================================== */
.inner-page-wrap,
.page-content-wrap {
  background-color: transparent;
  padding: 0;
  color: rgb(148, 148, 148);
  margin-top: 0;
}

.inner-page-title-banner {
  text-align: center;
  margin-bottom: 40px;
}

.inner-page-title {
  font-size: 32px;
  font-weight: 800;
  color: #222222;
}

/* Model Profile */
.model-profile-wrap,
.model-profile {
  background-color: transparent;
  padding: 0;
}

.model-name-title {
  font-family: var(--font-script);
  font-size: 90px;
  color: rgb(148, 148, 148);
  text-align: center;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .model-name-title {
    font-size: 48px;
  }
}

.model-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin: 0 auto 40px;
  align-items: center;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #999999;
  text-transform: uppercase;
}

.stat-value {
  font-size: 15px;
  color: #888888;
  font-weight: 400;
}

.model-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}

@media (max-width: 1024px) {
  .model-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .model-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
  background-color: #f0f0f0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.gallery-overlay svg {
  color: #ffffff;
  width: 32px;
  height: 32px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay svg {
  transform: scale(1);
}

/* Page Header (banner topo.jpg — fora do container, largura total) */
.page-header,
.page-header-topo {
  position: relative;
  width: 100%;
  min-height: 500px;
  background-color: #000000;
  background-image: url('/assets/img/topo.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 36px;
}

.page-header-topo-overlay {
  display: none;
}

.page-header .page-header-inner,
.page-header-topo .page-header-inner {
  position: relative;
  z-index: 2;
  width: min(90%, 1200px);
}

.page-header h1,
.page-header-title,
.page-header-topo h1 {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: normal;
  text-align: center;
  padding-top: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .page-header,
  .page-header-topo {
    min-height: 320px;
    padding: 100px 0 30px;
    background-attachment: scroll;
  }
  .page-header h1,
  .page-header-title,
  .page-header-topo h1 {
    font-size: 26px;
  }
}

.page-content-wrap {
  background-color: transparent;
  padding: 0;
  color: rgb(148, 148, 148);
}

/* Casting Overview Grid (5 colunas, gap 20px como o original) */
.casting-page-wrap {
  background-color: transparent;
  padding: 0;
}

.casting-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .casting-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 850px) {
  .casting-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 14px;
  }
}

@media (max-width: 600px) {
  .casting-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 10px;
  }
}

.model-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #ffffff;
  transition: transform 0.2s ease;
}

.model-card-img {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background-color: #f5f5f5;
}

.model-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.model-card:hover .model-card-img img {
  transform: scale(1.04);
}

.model-card-title {
  margin-top: 14px;
  padding: 0 4px;
  text-align: center;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #333333;
  text-transform: uppercase;
  line-height: 1.35;
  transition: color 0.2s;
}

.model-card:hover .model-card-title {
  color: #666666;
}

/* Agência */
.agencia-layout {
  display: grid;
  grid-template-columns: 339px 1fr;
  gap: 30px;
  align-items: start;
}

.agencia-img img {
  width: 100%;
  max-width: 339px;
  height: auto;
  display: block;
}

.agencia-text {
  font-size: 18px;
  line-height: 32.4px;
  color: rgb(148, 148, 148);
}

.agencia-text p {
  margin-bottom: 20px;
  text-align: left;
}

.agencia-text strong {
  color: rgb(148, 148, 148);
  font-weight: 400;
}

@media (max-width: 850px) {
  .agencia-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .agencia-img {
    text-align: center;
  }
  .agencia-img img {
    margin: 0 auto;
    max-width: 280px;
  }
}

/* Contato Form (Underline Minimal Style matching original) */
.contact-container {
  max-width: 680px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  font-size: 18px;
  color: rgb(148, 148, 148);
  margin-bottom: 40px;
}

.contact-form-minimal {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.contact-field-group label {
  font-size: 14px;
  color: #888888;
}

.contact-input-underline,
.contact-textarea-underline {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cccccc;
  background: transparent;
  padding: 8px 0;
  font-family: var(--font-main);
  font-size: 15px;
  color: #222222;
  outline: none;
  border-radius: 0;
  transition: border-bottom-color 0.2s;
}

.contact-input-underline:focus,
.contact-textarea-underline:focus {
  border-bottom-color: #000000;
}

.contact-textarea-underline {
  resize: vertical;
  min-height: 80px;
}

.contact-captcha-group {
  margin-top: 10px;
}

.contact-captcha-img {
  display: inline-block;
  margin-bottom: 6px;
}

.contact-btn-submit {
  align-self: flex-start;
  margin-top: 14px;
  background-color: #222222;
  color: #ffffff;
  border: none;
  padding: 13px 40px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background-color 0.2s;
}

.contact-btn-submit:hover {
  background-color: #000000;
}

.form-feedback {
  margin-top: 15px;
  padding: 12px;
  font-size: 14px;
  display: none;
}

.form-feedback.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.form-feedback.error {
  display: block;
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer#footer.site-footer {
  position: relative;
  background: #000000 url('/assets/img/021-bg-rodape-efeito-x.jpg') center top / cover no-repeat;
  color: rgb(148, 148, 148);
  font-size: 18px;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  overflow-x: hidden;
  overflow-y: visible;
}

.footer-overlay {
  display: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
  padding: 150px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 780px) {
  .footer-inner {
    padding: 50px 0 30px 0;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-col h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-borda {
  width: 100px;
  height: 2px;
  background-color: #ffffff;
  margin-bottom: 40px;
}

.footer-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 15px;
  color: #bbbbbb;
  margin-top: 40px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: #ffffff;
}

.footer-social-links {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.footer-social-links a {
  color: #ffffff;
  font-size: 18px;
  transition: transform 0.2s ease;
}

.footer-social-links a:hover {
  transform: scale(1.2);
}

/* Footer Newsletter Form */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.footer-field {
  margin-bottom: 30px;
}

.footer-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  padding: 10px 0;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 15px;
  outline: none;
}

.footer-input::placeholder {
  color: #888888;
}

.captcha-field {
  margin-bottom: 30px;
  line-height: 1.8;
}

.footer-captcha-img {
  margin-bottom: 8px;
  display: inline-block;
}

.captcha-label {
  font-size: 15px;
  color: #bbbbbb;
  display: inline-block;
  margin-bottom: 6px;
}

.footer-btn {
  align-self: flex-start;
  margin-top: 10px;
  background-color: #222222;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 12px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.footer-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Subfooter — barra de copyright fora do padding dos widgets */
.subfooter {
  position: relative;
  z-index: 3;
  background-color: #000000;
  padding: 30px 0;
  font-size: 12px;
  line-height: 1;
  color: rgb(148, 148, 148);
  border-top: none;
}

.subfooter .container,
.subfooter .footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

#copyright {
  margin: 0;
}

.subfooter a {
  color: #aaaaaa;
}

.subfooter a:hover {
  color: #ffffff;
}

.back-to-top {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s;
}

.back-to-top:hover {
  background: #ffffff;
  color: #000000;
}

.localizacao-address {
  font-size: 18px;
  color: rgb(148, 148, 148);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.localizacao-map {
  width: 100%;
  height: 550px;
  border: 1px solid #eee;
  overflow: hidden;
}

.noticias-empty {
  text-align: center;
  font-size: 18px;
  color: rgb(148, 148, 148);
  padding: 40px 0;
}

.model-cover-single {
  max-width: 480px;
  margin: 0 auto;
}

.model-cover-single .gallery-item {
  aspect-ratio: 2 / 3;
}

.contact-input-underline.captcha-input {
  max-width: 200px;
}

/* ==========================================================================
   NATIVE VANILLA JS LIGHTBOX
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.2s;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 1px;
}
