/* =========================
   DESIGN TOKENS — PROINT
========================= */
:root {
  /* Marca */
  --c-primary:         #c31b25;
  --c-primary-hover:   #b01821;
  --c-secondary:       #1b4f72;
  --c-secondary-hover: #184767;

  /* Texto */
  --c-text:    #111827;
  --c-muted:   #5b6472;

  /* Fundo */
  --c-bg:      #ffffff;
  --c-bg-alt:  #f2f2f4;
  --c-dark:    #101010;

  /* Interface */
  --c-border:  #e5e7eb;

  /* Tipografia */
  --ff-base: "Titillium Web", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-md:   1rem;
  --fs-lg:   1.25rem;
  --fs-xl:   2rem;
  --fs-hero: 1.9125rem;

  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  --lh-base:  1.6;
  --lh-tight: 1.2;

  /* Espaçamento */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;

  /* Layout */
  --container: 1200px;

  /* Bordas */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.10);

  /* Transição */
  --transition:        0.25s ease;
  --transition-reveal: 0.6s ease;
}

/* =========================
   1. RESET
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================
   2. BASE
========================= */
body {
  font-family: var(--ff-base);
  font-size: var(--fs-md);
  line-height: var(--lh-base);
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

a {
  color: inherit;
}

/* =========================
   3. TYPOGRAPHY
========================= */
h1,
h2,
h3,
h4 {
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--c-text);
}

h1 { font-size: var(--fs-hero); }
h2 { font-size: 1.6rem; }
h3 { font-size: var(--fs-lg); }

@media (min-width: 1024px) {
  h1 { font-size: 2.55rem; }
  h2 { font-size: 2.1rem; }
}

p {
  margin-bottom: var(--space-2);
  color: var(--c-muted);
}

/* =========================
   4. LAYOUT
========================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-2);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-4); }
}

.secao {
  padding: var(--space-5) 0;
}

.secao-alt {
  background: var(--c-bg-alt);
}

.secao-dark {
  background: var(--c-dark);
  color: #fff;
}

.secao__title {
  max-width: 800px;
  margin-bottom: var(--space-2);
}

.secao__title--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.secao__eyebrow {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-primary);
  margin-bottom: var(--space-1);
}

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

.secao__subtitle {
  font-size: var(--fs-lg);
  max-width: 700px;
  margin-bottom: var(--space-2);
}

.secao__subtitle--sm {
  font-size: var(--fs-md);
}

.secao__subtitle--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* =========================
   5. GRID
========================= */
.grid-3,
.grid-4 {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  margin-top: var(--space-4);
}

@media (min-width: 768px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* =========================
   6. BUTTON
========================= */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}
.btn-primary:hover {
  background: var(--c-primary-hover);
  border-color: var(--c-primary-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--c-secondary);
  border-color: var(--c-secondary);
}
.btn-secondary:hover {
  background: var(--c-secondary);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* =========================
   7. CARD
========================= */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-3);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card [data-lucide] {
  color: var(--c-primary);
  width: 28px;
  height: 32px;
  margin-bottom: var(--space-2);
}

/* =========================
   8. HEADER
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

section[id] {
  scroll-margin-top: 90px;
}

.header__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}

.header__logo img {
  height: 48px;
  width: auto;
}

.header__nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: var(--shadow-sm);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.header__nav--open {
  max-height: 400px;
}

.header__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-2) var(--space-3);
}

.header__nav-link {
  display: block;
  padding: var(--space-1) 0;
  text-decoration: none;
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  color: var(--c-text);
  transition: color var(--transition);
}

.header__nav-link:hover {
  color: var(--c-primary);
}

.header__cta {
  display: none;
}

.header__menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: var(--space-1);
  cursor: pointer;
  color: var(--c-text);
}

.header__menu-toggle [data-lucide] {
  width: 26px;
  height: 26px;
}

@media (min-width: 1200px) {
  .header__nav {
    position: static;
    max-height: none;
    overflow: visible;
    box-shadow: none;
    display: flex;
    justify-content: center;
    flex: 1;
  }
  .header__nav-list {
    flex-direction: row;
    gap: var(--space-3);
    padding: 0;
  }

  .header__nav-link {
    white-space: nowrap;
  }
  .header__cta { display: inline-block; }
  .header__menu-toggle { display: none; }
}

/* =========================
   9. HERO
========================= */
.hero {
  position: relative;
  padding: var(--space-5) 0 var(--space-6);
  background: var(--c-bg);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--c-bg-alt);
  z-index: 0;
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-5);
  align-items: center;
}


.hero__title {
  font-size: 1.6rem;
  margin-bottom: var(--space-2);
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 2.1rem;
  }
}

.hero__subtitle {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-4);
}

.hero__stats {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-2);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: 2px;
  padding: var(--space-2);
  background: var(--c-bg-alt);
  border-left: 5px solid var(--c-primary);
  border-radius: var(--radius-sm);
}

.hero__stat-number {
  font-size: clamp(1.75rem, 8vw, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  line-height: 1.1;
}

.hero__stat-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (min-width: 1024px) {
  .hero__stats {
    gap: var(--space-3);
  }
  .hero__stat {
    flex: 0 0 auto;
    padding: var(--space-3);
  }
  .hero__stat-number {
    font-size: 2.75rem;
  }
}

.hero__media {
  position: relative;
}

.hero__media::before {
  content: "";
  display: none;
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  right: calc(var(--space-3) * -1);
  bottom: calc(var(--space-3) * -1);
  border: 3px solid var(--c-primary);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 30% center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (min-width: 1024px) {
  .hero__media::before {
    display: block;
  }

  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  .hero__media {
    margin-right: var(--space-3);
  }
}

/* =========================
   10. CLIENTES / TRUST BAR
========================= */
.clientes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-4);
}

.clientes__logo {
  width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: opacity var(--transition), filter var(--transition);
}

.clientes__logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (min-width: 768px) {
  .clientes__grid { grid-template-columns: repeat(5, 1fr); }
}

/* =========================
   12. SERVIÇOS
========================= */
.servicos__card-title {
  margin-bottom: var(--space-1);
}

/* =========================
   16. PROJETOS EM DESTAQUE
========================= */
.projetos__card img {
  border-radius: var(--radius-md);
  margin: calc(var(--space-3) * -1) calc(var(--space-3) * -1) var(--space-2);
  width: calc(100% + var(--space-3) * 2);
  max-width: none;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.projetos__card-client {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  margin-bottom: var(--space-1);
}

.projetos__card-title {
  margin-bottom: var(--space-1);
}

/* =========================
   17. SOBRE
========================= */
.sobre__grid {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-4);
  align-items: center;
}

.sobre__grid-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sobre__grid .sobre__experiencia {
  margin-top: 0;
}

@media (min-width: 768px) {
  .sobre__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.sobre__lead-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sobre__experiencia {
  margin-top: var(--space-5);
}

.sobre__experiencia h3 {
  margin-bottom: var(--space-3);
}

/* =========================
   18. PARALLAX SECTION
========================= */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.parallax-section__overlay {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  padding: var(--space-6) 0;
  text-align: center;
}

.parallax-section__overlay > .container {
  width: 100%;
}

.parallax-section__title {
  color: #fff;
  margin-bottom: var(--space-2);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.parallax-section__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-4);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.parallax-section__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.parallax-section__mensagem {
  color: #fff;
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .parallax-section {
    background-attachment: scroll;
  }
}

/* =========================
   19. FAQ
========================= */
.faq__lista {
  margin-top: var(--space-4);
}

.faq__item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-2) var(--space-3);
  margin-bottom: var(--space-2);
}

.faq__item summary {
  cursor: pointer;
  font-weight: var(--fw-semibold);
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  float: right;
  font-weight: var(--fw-bold);
  color: var(--c-primary);
}

.faq__item[open] summary::after {
  content: "\2212";
}

.faq__item p {
  margin-top: var(--space-2);
  margin-bottom: 0;
}

/* =========================
   20. CONTATO
========================= */
.contato__container {
  display: grid;
  gap: var(--space-5);
}

.contato__intro {
  display: flex;
  flex-direction: column;
}

.contato__abertura {
  margin: var(--space-3) 0;
}

.contato__info {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.contato__info li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-1);
  font-size: var(--fs-sm);
}

.contato__info [data-lucide] {
  color: var(--c-primary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contato__form-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-4);
}

.contato__form-wrapper h3 {
  margin-bottom: var(--space-1);
}

.contato__form-wrapper > p {
  margin-bottom: var(--space-3);
}

.contato__form-feedback {
  background: #fdecea;
  border: 1px solid #f5c2c0;
  color: #b91c1c;
  border-radius: var(--radius-sm);
  padding: var(--space-1) var(--space-2);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-2);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contato__form-group {
  margin-bottom: var(--space-2);
}

.contato__form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  margin-bottom: 6px;
}

.contato__form-group--checkbox label {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--space-1);
  font-weight: var(--fw-regular);
  font-size: var(--fs-xs);
  color: var(--c-muted);
}

.contato__form-group--checkbox input {
  width: auto;
  margin-top: 4px;
}

.contato__form-submit {
  width: 100%;
  text-align: center;
}

@media (min-width: 1024px) {
  .contato__container {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   21. FORM ELEMENTS
========================= */
.input,
.textarea {
  width: 100%;
  padding: 12px var(--space-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-base);
  font-size: var(--fs-sm);
  color: var(--c-text);
  background: #fff;
  transition: border-color var(--transition);
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: var(--c-primary);
}

.textarea {
  resize: vertical;
}

.input-icon-group {
  position: relative;
}

.input-icon-group__icon {
  position: absolute;
  left: var(--space-2);
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #25d366;
  pointer-events: none;
}

.input-icon-group__input {
  padding-left: 40px;
}

/* =========================
   22. FOOTER
========================= */
.footer {
  background: var(--c-dark);
  color: #9ca3af;
  font-size: var(--fs-sm);
}

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

.footer__legal-content {
  text-align: center;
  padding: var(--space-3) 0;
}

.footer__copyright {
  color: #9ca3af;
  font-size: var(--fs-sm);
  margin-bottom: 0;
}

.footer__legal-link {
  color: #9ca3af;
  text-decoration: underline;
  transition: opacity var(--transition);
}

.footer__legal-link:hover,
.footer__legal-link:focus-visible {
  opacity: 0.8;
}

.footer__bottom {
  padding: calc(var(--space-5) / 2) 0;
}

@media (max-width: 767px) {
  .footer__bottom {
    padding-bottom: var(--space-5);
  }
}

.footer__bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(var(--space-1) / 2);
  text-align: center;
  font-size: var(--fs-sm);
}

.footer__credits {
  color: #9ca3af;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9625rem;
}

.footer__hostnet-logo {
  height: 22px;
  width: auto;
}

.footer a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
  transition: opacity var(--transition);
}

.footer a:hover,
.footer a:focus-visible {
  opacity: 0.8;
}

/* =========================
   23. WHATSAPP FLOAT
========================= */
.whatsapp-float {
  position: fixed;
  right: var(--space-3);
  bottom: calc(var(--space-3) + env(safe-area-inset-bottom));
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #178a48;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.icon-whatsapp {
  width: 18px;
  height: 18px;
}

.whatsapp-float .icon-whatsapp {
  width: 28px;
  height: 28px;
}

/* =========================
   24. ACCESSIBILITY
========================= */
:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
}

/* =========================
   25. SCROLL REVEAL
========================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

.reveal.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; }

/* =========================
   26. GALERIA DE FOTOS (MODAL)
========================= */

.projetos__card-gallery-btn {
  margin-top: var(--space-2);
}

.galeria-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
}

.galeria-modal[hidden] {
  display: none;
}

/* =========================
   27. PÁGINA LEGAL (CONTEÚDO TEXTUAL)
========================= */
.legal {
  padding-top: var(--space-6);
}

.legal__container {
  max-width: 800px;
}

.legal__updated {
  color: var(--c-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-4);
}

.legal__content h2 {
  font-size: var(--fs-md);
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
}

.legal__content h2:first-child {
  margin-top: 0;
}

.legal__content h3 {
  font-size: var(--fs-sm);
  margin-top: var(--space-3);
  margin-bottom: var(--space-1);
}

.legal__content p {
  margin-bottom: var(--space-3);
}

.legal__content ul {
  list-style: disc;
  padding-left: var(--space-3);
  margin-bottom: var(--space-3);
}

.legal__content li {
  color: var(--c-muted);
  margin-bottom: var(--space-1);
}

.legal__content a {
  color: var(--c-secondary);
  text-decoration: underline;
}

.legal__content a:hover,
.legal__content a:focus-visible {
  color: var(--c-secondary-hover);
}

.legal__content strong {
  color: var(--c-text);
}

/* =========================
   28. AVISO DE COOKIES
========================= */
.cookie-consent {
  position: fixed;
  left: var(--space-2);
  bottom: var(--space-2);
  z-index: 900;
  width: min(360px, calc(100vw - (var(--space-2) * 2)));
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-3);
  padding-right: var(--space-4);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__close {
  position: absolute;
  top: var(--space-1);
  right: var(--space-1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--c-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.cookie-consent__close:hover,
.cookie-consent__close:focus-visible {
  background: var(--c-bg-alt);
  color: var(--c-text);
}

.cookie-consent__close i {
  width: 18px;
  height: 18px;
}

.cookie-consent__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-1);
}

.cookie-consent__text {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  margin-bottom: var(--space-2);
}

.cookie-consent__text a {
  color: var(--c-secondary);
  text-decoration: underline;
}

.cookie-consent__text a:hover,
.cookie-consent__text a:focus-visible {
  color: var(--c-secondary-hover);
}

.cookie-consent__btn {
  padding: 10px 20px;
  font-size: var(--fs-sm);
}

@media (min-width: 768px) {
  .cookie-consent {
    left: var(--space-3);
    bottom: var(--space-3);
  }
}

.galeria-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 16, 0.85);
}

.galeria-modal__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
}

.galeria-modal__close {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  z-index: 2;
  background: var(--c-bg-alt);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.galeria-modal__title {
  padding-right: var(--space-5);
  margin-bottom: var(--space-2);
}

.galeria-modal__slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galeria-modal__img {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: var(--c-bg-alt);
}

.galeria-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.galeria-modal__nav--prev { left: var(--space-2); }
.galeria-modal__nav--next { right: var(--space-2); }

.galeria-modal__counter {
  text-align: center;
  margin-top: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--c-text);
}

/* =========================
   TRABALHE CONOSCO
========================= */
.trabalhe__container {
  max-width: 700px;
  text-align: center;
}

.trabalhe__divider {
  width: 80px;
  height: 3px;
  margin: var(--space-3) auto;
  background: var(--c-secondary);
  border: none;
  border-radius: 2px;
}

.trabalhe__cta {
  background: var(--c-bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-4) var(--space-3);
  margin: var(--space-4) 0;
}

.trabalhe__cta-title {
  color: var(--c-secondary);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-2);
}

.trabalhe__cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2);
}

.trabalhe__cta-icon [data-lucide] {
  width: 30px;
  height: 30px;
  color: #fff;
}

.trabalhe__cta-email {
  display: inline-block;
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--c-secondary);
  text-decoration: none;
}

.trabalhe__cta-email:hover {
  text-decoration: underline;
}

.trabalhe__voltar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trabalhe__voltar [data-lucide] {
  width: 18px;
  height: 18px;
}

/* =========================
   PÁGINA DE SUCESSO
========================= */
.sucesso__container {
  max-width: 620px;
  text-align: center;
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.sucesso__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #1a9c53;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3);
}

.sucesso__icon [data-lucide] {
  width: 36px;
  height: 36px;
  color: #fff;
  stroke-width: 3;
}
