:root {

  --color-primary: #00803A;
  --color-primary-dark: #00682E;
  --color-accent: #61CE70;
  --color-secondary: #4A4E54;
  --color-text-dark: #222222;
  --color-text-muted: #5A5A5A;
  --color-bg-light: #F8F9FA;
  --color-bg-gray: #ECECEC;
  --color-bg-card: #DDDDDD;
  --color-white: #FFFFFF;
  --color-black: #000000;

  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Roboto Slab", serif;
  --font-title: "Open Sans", sans-serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);

  --shadow-subtle: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.12);
  --shadow-deep: 0 19px 26px 1px rgba(0, 0, 0, 0.45);
  --glass-bg: rgba(255, 255, 255, 0.14);
  --glass-border: rgba(255, 255, 255, 0.22);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) #F1F5F2;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #F1F5F2;
  border-left: 1px solid #E2ECE5;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #009344 0%, #007436 100%);
  border-radius: 8px;
  border: 2px solid #F1F5F2;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #61CE70 0%, #009344 100%);
}

::-webkit-scrollbar-thumb:active {
  background: #007436;
}

::-webkit-scrollbar-corner {
  background: #F1F5F2;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-dark);
  background-color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

svg {
  max-width: 100%;
  flex-shrink: 0;
}

svg use {
  pointer-events: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-header {
  position: relative;
  background: #FFFFFF;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  padding: 4px;
  margin: -4px;
  transition: transform var(--transition-fast);
}

.header-logo-link:hover {
  transform: scale(1.06);
}

.header-logo-link:active {
  transform: scale(0.96);
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-audio-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 128, 58, 0.07);
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: all var(--transition-fast);
  transform: translateZ(0);
}

.btn-audio-promo:hover {
  background: var(--color-primary);
  color: #FFFFFF;
  transform: scale(1.03);
}

.btn-audio-promo.is-playing {
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 0 14px rgba(0, 128, 58, 0.35);
}

.audio-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.audio-wave {
  display: inline-flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 12px;
}

.wave-bar {
  width: 2px;
  height: 100%;
  background: currentColor;
  border-radius: 1px;
  animation: audioWaveBar 0.8s ease-in-out infinite alternate;
}

.wave-bar:nth-child(2) {
  animation-delay: 0.25s;
}

.wave-bar:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes audioWaveBar {
  0% {
    height: 25%;
  }

  100% {
    height: 100%;
  }
}


.audio-btn-text .text-mobile {
  display: none;
}

.audio-btn-text .text-desktop {
  display: inline;
}

@media (max-width: 480px) {
  .btn-audio-promo {
    padding: 7px 11px;
    font-size: 0.82rem;
    gap: 6px;
  }

  .audio-btn-text .text-desktop {
    display: none;
  }

  .audio-btn-text .text-mobile {
    display: inline;
    font-weight: 600;
  }
}

.header-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

#Contacto,
.contact-banner-section,
.contact-form-section {
  scroll-margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 500;
  border-radius: 15px;
  padding: 12px 28px;
  transition: transform var(--transition-fast);
  transform: translateZ(0);
  will-change: transform;
  text-align: center;
  cursor: pointer;
}

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

.btn-primary:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 147, 68, 0.35);
}

.btn-quote {
  font-size: 1.15rem;
  padding: 12px 30px;
  border-radius: 15px;
}

.hero-section {
  position: relative;
  min-height: 640px;
  background-image: url("assets/galeria-landing/hero-bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 65px 0 75px 0;
  color: var(--color-text-dark);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}

.hero-billboard-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-billboard-card {
  background: rgba(10, 22, 14, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 44px 42px 38px 42px;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-fast);
  transform: translateZ(0);
  will-change: transform;
}

.hero-billboard-card:hover {
  background: rgba(10, 22, 14, 0.65);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  border-color: rgba(97, 206, 112, 0.35);
}

.hero-3d-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6.4vw, 5.2rem);
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -1.5px;
  line-height: 1.02;
  margin-bottom: 6px;
  text-align: center;
  text-transform: none;
  user-select: none;

  text-shadow:
    0 1px 0 #d8d8d8,
    0 2px 0 #bebebe,
    0 3px 0 #a4a4a4,
    0 4px 0 #8a8a8a,
    0 5px 0 #707070,
    0 6px 1px rgba(0, 0, 0, 0.4),
    0 0 16px rgba(97, 206, 112, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.7);
  display: inline-block;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.hero-3d-title:hover {
  transform: translateY(-2px) scale(1.01);
  text-shadow:
    0 1px 0 #ffffff,
    0 2px 0 #d8d8d8,
    0 3px 0 #bebebe,
    0 4px 0 #a4a4a4,
    0 5px 0 #8a8a8a,
    0 6px 0 #707070,
    0 7px 2px rgba(0, 0, 0, 0.5),
    0 0 22px rgba(97, 206, 112, 0.45),
    0 12px 30px rgba(0, 0, 0, 0.85);
}

.brand-z {
  color: #FFFFFF;
  display: inline-block;
}

.brand-domain {
  font-size: 0.82em;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.brand-reg {
  font-size: 0.28em;
  vertical-align: super;
  margin-left: 2px;
  font-weight: 700;
  display: inline-block;
  opacity: 0.9;
  line-height: 1;
}

.hero-3d-divider {
  width: 100%;
  max-width: 860px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(97, 206, 112, 0.8) 25%, #FFFFFF 50%, rgba(97, 206, 112, 0.8) 75%, transparent 100%);
  border-radius: 2px;
  margin: 10px auto 22px auto;
  box-shadow: 0 0 10px rgba(97, 206, 112, 0.4);
}

.hero-tagline-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-family: var(--font-primary);
  font-size: clamp(0.92rem, 1.8vw, 1.35rem);
  font-weight: 800;
  color: #E6FCE9;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 24px;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.tagline-bullet {
  color: #61CE70;
  opacity: 0.9;
}

.hero-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px 32px;
  flex-wrap: wrap;
  margin-bottom: 0;
  width: 100%;
}

.hero-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition-fast);
  transform: translateZ(0);
  will-change: transform;
}

.hero-phone-item {
  background: rgba(0, 147, 68, 0.4);
  border-color: rgba(97, 206, 112, 0.5);
}

.hero-phone-item:hover {
  background: #009344;
  border-color: #61CE70;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 147, 68, 0.5);
}

.hero-instagram-item:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-contact-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #FFFFFF;
  color: #007A37;
  flex-shrink: 0;
}

.hero-ig-icon {
  background: transparent;
  color: #FFFFFF;
}

.hero-ig-icon svg {
  fill: none;
}

.hero-contact-icon-box svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-phone-number-wrap {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
  text-align: left;
  contain: layout style;
}

.hero-phone-number {
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  display: inline-block;
  min-width: 155px;
}

.hero-phone-cursor {
  font-size: 1.25em;
  font-weight: 300;
  color: #61CE70;
  margin-left: 2px;
  animation: heroCursorBlink 0.75s steps(2, start) infinite;
  display: inline-block;
  line-height: 1;
}

@keyframes heroCursorBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-ig-text {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #FFFFFF;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
  width: 100%;
}

.btn-hero-cta {
  font-size: 1.12rem;
  padding: 13px 28px;
  border-radius: 25px;
}

.btn-hero-works {
  font-size: 1.12rem;
  padding: 13px 28px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-hero-works:hover {
  background: #FFFFFF;
  color: var(--color-primary);
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.services-overview-section {
  padding: 85px 0 95px 0;
  background-color: #FFFFFF;
}

.section-header-wrap {
  margin-bottom: 50px;
}

.section-title-large {
  font-family: var(--font-primary);
  font-size: 3.6rem;
  font-weight: 300;
  color: var(--color-secondary);
  line-height: 1.18;
  margin-bottom: 22px;
}

.section-subtitle {
  font-family: var(--font-primary);
  font-size: 1.85rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.4;
  max-width: 95%;
}

.infobox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.infobox-card {
  background-color: var(--color-bg-card);
  border-radius: 25px;
  padding: 36px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal);
}

.infobox-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  background-color: #D3D3D3;
}

.infobox-icon-wrap {
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infobox-icon {
  width: 48px;
  height: 48px;
  fill: var(--color-primary);
  color: var(--color-primary);
}

.infobox-title {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 600;
  color: #4D4D4D;
  margin-bottom: 14px;
}

.infobox-desc {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: #4D4D4D;
  line-height: 1.5;
}

.company-section {
  background-color: #C5BFBF;
  padding: 70px 0 80px 0;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 45px;
  align-items: center;
}

.rounded-card-image {
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-card-box {
  background-color: #FEFFF4;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.company-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-secondary);
  line-height: 1.25;
  margin-bottom: 16px;
}

.company-description {
  font-family: var(--font-primary);
  font-size: 1.28rem;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 35px;
}

.highlight-words-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 16px;
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight-text-wrapper {
  position: relative;
  display: inline-block;
  padding: 8px 18px;
}

.highlight-text {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-text-dark);
  position: relative;
  z-index: 2;
}

.highlight-circle-svg {
  position: absolute;
  top: -15%;
  left: -8%;
  width: 116%;
  height: 130%;
  z-index: 1;
  pointer-events: none;
  contain: paint;
  transform: translateZ(0);
}

.highlight-circle-svg path {
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 6px;
  stroke-dasharray: 800;
  stroke-dashoffset: 0;
  will-change: stroke-dashoffset;
}

.company-card-box.in-view .highlight-circle-svg path {
  animation: drawCircle 2.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes drawCircle {
  0% {
    stroke-dashoffset: 800;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

.company-sub-image-wrap {
  margin-top: 10px;
}

.sub-image {
  max-height: 320px;
}

.works-section {
  padding: 90px 0 80px 0;
  background-color: #FFFFFF;
}

.works-header {
  text-align: center;
  margin-bottom: 45px;
}

.works-main-title {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.works-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
  align-items: stretch;
}

.gallery-feature-col {
  display: flex;
  height: 100%;
}

.gallery-img-vertical {
  width: 100%;
  height: 100%;
  min-height: 600px;
  max-height: 660px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.gallery-img-vertical:hover,
.gallery-img-square:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.gallery-quad-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 100%;
}

.gallery-quad-item {
  height: 100%;
  min-height: 290px;
  max-height: 320px;
  overflow: hidden;
  border-radius: 25px;
}

.gallery-img-square {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.works-gallery-cta {
  display: flex;
  justify-content: center;
  margin: 15px 0 45px 0;
}

.btn-gallery {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: 30px;
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(0, 147, 68, 0.3);
  transition: transform var(--transition-fast);
  transform: translateZ(0);
  will-change: transform;
}

.btn-gallery:hover {
  background-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 147, 68, 0.4);
}

.btn-icon-svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.work-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 24px;
  padding: 30px 0 20px 0;
  border-top: 1px solid #F0F0F0;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.category-icon svg {
  width: 38px;
  height: 38px;
  fill: var(--color-primary);
  color: var(--color-primary);
}

.category-title {
  font-family: var(--font-primary);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.gallery-page-main {
  padding: 35px 0 80px 0;
  background-color: var(--color-bg-gray);
  min-height: calc(100vh - 140px);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--color-text-dark);
  font-weight: 600;
}

.gallery-hero-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 45px auto;
}

.gallery-page-title {
  font-family: var(--font-primary);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.gallery-page-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 55px;
}

.gallery-card-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: #E2EAE5;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transform: translateZ(0);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.gallery-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.gallery-card-item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.gallery-card-zoom-icon {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.22s ease, transform 0.22s ease, background-color 0.2s ease;
  pointer-events: none;
}

.gallery-card-zoom-icon svg {
  width: 22px;
  height: 22px;
  fill: #FFFFFF;
  display: block;
}

.gallery-card-item:hover .gallery-card-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.faq-section {
  background-color: var(--color-bg-gray);
  padding: 85px 0 90px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 45px;
}

.faq-main-title {
  font-family: var(--font-primary);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--color-text-muted);
}

.faq-content-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 40px;
  align-items: flex-start;
}

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

.faq-item {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition-fast);
  transform: translateZ(0);
  will-change: transform;
}

.faq-button {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: #FFFFFF;
  gap: 16px;
  transition: background-color var(--transition-fast);
}

.faq-button:hover {
  background-color: #FAFAFA;
}

.faq-btn-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FFFFFF;
}

.faq-svg {
  width: 22px;
  height: 22px;
  fill: #FFFFFF;
  color: #FFFFFF;
}

.faq-question {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-primary);
}

.faq-toggle-icon {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.faq-minus {
  display: none;
}

.faq-item.active .faq-plus {
  display: none;
}

.faq-item.active .faq-minus {
  display: block;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-panel {
  max-height: 350px;
}

.faq-panel-inner {
  padding: 0 24px 24px 84px;
  font-size: 1.05rem;
  color: #4A4A4A;
  line-height: 1.65;
}

.faq-link {
  text-decoration: underline;
  color: var(--color-primary);
  font-weight: 600;
}

.faq-image-col {
  height: 100%;
}

.contact-banner-section {
  padding: 60px 0;
  background: #FFFFFF;
}

.contact-banner-card {
  background: linear-gradient(135deg, #009344 0%, #006830 100%);
  border-radius: 28px;
  padding: 55px 50px;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 147, 68, 0.28);
}

.banner-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.banner-subtitle {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
}

.contact-banner-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.banner-phones-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
  max-width: 250px;
}

.btn-banner-call {
  width: 100%;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 28px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFFFFF;
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition-fast);
  transform: translateZ(0);
  will-change: transform;
  text-decoration: none;
}

.btn-banner-call:hover {
  background-color: #004D20;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.phone-btn-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-banner-quote {
  width: 100%;
  max-width: 250px;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 28px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--transition-fast);
  transform: translateZ(0);
  will-change: transform;
  text-decoration: none;
  margin-top: 4px;
}

.btn-banner-quote:hover {
  background: #FFFFFF;
  color: var(--color-primary);
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.banner-email-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: underline;
  margin-top: 4px;
  width: 100%;
  max-width: 250px;
  text-align: center;
  transition: opacity var(--transition-fast);
}

.banner-email-link:hover {
  opacity: 0.85;
}

.contact-form-section {
  padding: 70px 0 95px 0;
  background-color: #FFFFFF;
}

.form-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 45px auto;
}

.form-title {
  font-family: var(--font-primary);
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.form-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.form-wrapper-card {
  max-width: 740px;
  margin: 0 auto;
  background: #FAFAFA;
  border: 1px solid #EFEFEF;
  border-radius: 24px;
  padding: 42px 40px;
  box-shadow: var(--shadow-card);
}

.native-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 640px) {
  .form-row-2col {
    grid-template-columns: 1fr;
  }
}

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

.form-group label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text-dark);
  border: 1px solid #D0D0D0;
  border-radius: 12px;
  background-color: #FFFFFF;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.custom-dropdown-search-input::placeholder {
  color: #5A5A5A;
  opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 147, 68, 0.18);
}

.custom-dropdown {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-dropdown-trigger {
  width: 100%;
  padding: 14px 44px 14px 18px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text-dark);
  border: 1px solid #D0D0D0;
  border-radius: 12px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.custom-dropdown.active .custom-dropdown-trigger,
.custom-dropdown-trigger:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 147, 68, 0.18);
}

.custom-dropdown-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.custom-dropdown-text .custom-option-icon {
  width: 18px;
  height: 18px;
}

.custom-dropdown-text.placeholder {
  color: #5A5A5A;
  font-weight: 400;
}

.custom-dropdown-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
  color: #666666;
  transition: transform var(--transition-normal);
}

.custom-dropdown.active .custom-dropdown-arrow {
  transform: translateY(-50%) rotate(180deg);
  color: var(--color-primary);
}

.custom-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
  z-index: 150;
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}

.custom-dropdown.active .custom-dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.custom-dropdown-search {
  padding: 10px 12px;
  border-bottom: 1px solid #EFEFEF;
  background: #F9F9F9;
}

.custom-dropdown-search-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}

.custom-dropdown-search-input:focus {
  border-color: var(--color-primary);
}

.custom-dropdown-list {
  max-height: 220px;
  overflow-y: auto;
  padding: 6px 0;
  scrollbar-width: none;

  -ms-overflow-style: none;

}

.custom-dropdown-list::-webkit-scrollbar {
  display: none;

  width: 0;
  height: 0;
}

.custom-dropdown-option {
  width: 100%;
  padding: 10px 18px;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.96rem;
  color: #333333;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.custom-option-icon {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
  color: var(--color-primary);
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.custom-dropdown-option:hover,
.custom-dropdown-option:focus {
  background: #EAF6EE;
  color: var(--color-primary);
  font-weight: 600;
  outline: none;
}

.custom-dropdown-option.selected {
  background: #E0F2E6;
  color: var(--color-primary);
  font-weight: 700;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-submit {
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
}

.btn-whatsapp-direct {
  background-color: var(--color-primary);
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast);
  transform: translateZ(0);
  will-change: transform;
}

.btn-whatsapp-direct:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 128, 58, 0.4);
}

.btn-test-preview {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  background: #F0F4F1;
  color: #005023;
  border: 1.5px solid #D0E2D5;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast);
  transform: translateZ(0);
  will-change: transform;
}

.btn-test-preview:hover {
  background: #E2ECE5;
  border-color: #009344;
  color: #009344;
  transform: translateY(-2px);
}

.icon-btn-svg {
  width: 22px;
  height: 22px;
  fill: #FFFFFF;
}

.form-alert {
  display: none;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 14px;
}

.form-alert-success {
  background-color: #E8F7EE;
  color: #0E7036;
  border: 1px solid #B8E4C9;
}

.wa-preview-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.wa-preview-modal.open {
  display: flex;
  opacity: 1;
}

.wa-preview-card {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  animation: modalScaleIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

@keyframes modalScaleIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.wa-preview-header {
  background: #005E54;
  color: #FFFFFF;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-preview-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-preview-avatar {
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.15);
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.wa-preview-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.wa-preview-subtitle {
  font-size: 0.8rem;
  opacity: 0.85;
}

.wa-preview-close {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: background var(--transition-fast);
}

.wa-preview-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.wa-preview-meta-bar {
  background: #F8F9FA;
  border-bottom: 1px solid #E5E7EB;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
}

.wa-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-meta-label {
  font-weight: 700;
  color: #4B5563;
}

.wa-meta-badge {
  background: #FEF3C7;
  color: #78350F;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.78rem;
  border: 1px solid #FCD34D;
}

.wa-meta-val {
  font-weight: 600;
  color: var(--color-primary);
}

.wa-preview-chat-body {
  background: #EFEAE2;
  padding: 20px;
  min-height: 150px;
  max-height: 240px;
  overflow-y: auto;
  scrollbar-width: none;
  background-image: radial-gradient(#d3cbbe 1px, transparent 1px);
  background-size: 16px 16px;
}

.wa-preview-chat-body::-webkit-scrollbar {
  display: none;
}

.wa-chat-bubble {
  background: #D9FDD3;
  color: #111B21;
  padding: 14px 18px;
  border-radius: 14px 14px 2px 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  position: relative;
}

.wa-preview-url-box {
  background: #111827;
  color: #E5E7EB;
  padding: 12px 18px;
  border-top: 1px solid #374151;
  font-size: 0.8rem;
}

.wa-url-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.wa-url-label {
  font-weight: 600;
  color: #CBD5E1;
  font-size: 0.78rem;
}

.btn-wa-copy-url {
  background: #374151;
  color: #F9FAFB;
  border: none;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.btn-wa-copy-url:hover {
  background: #4B5563;
}

.wa-url-text {
  font-family: Consolas, Monaco, monospace;
  word-break: break-all;
  color: #6EE7B7;
  max-height: 60px;
  overflow-y: auto;
  line-height: 1.35;
  scrollbar-width: none;
}

.wa-url-text::-webkit-scrollbar {
  display: none;
}

.wa-preview-actions {
  padding: 14px 20px;
  background: #F0F2F5;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
  border-top: 1px solid #E0E0E0;
}

.btn-wa-copy {
  background: #FFFFFF;
  color: #333333;
  border: 1px solid #D0D0D0;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-wa-copy:hover {
  background: #E8E8E8;
}

.btn-wa-send {
  background: #25D366;
  color: #FFFFFF;
  border: none;
  padding: 10px 22px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
}

.btn-wa-send:hover {
  background: #1EBE5D;
  transform: translateY(-1px);
}

.site-footer {
  background-color: #FFFFFF;
  padding: 40px 0 50px 0;
  border-top: 1px solid #EEEEEE;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  align-items: center;
}


.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--transition-fast);
  transform: translateZ(0);
}

.footer-brand-link:hover {
  transform: scale(1.03);
}

.footer-brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.footer-brand-link:hover .footer-brand-logo {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.footer-brand-text {
  font-family: var(--font-primary);
  font-size: 1.65rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.8px;
  line-height: 1;
  text-shadow:
    0 1px 0 #d5d5d5,
    0 2px 0 #bebebe,
    0 3px 0 #a8a8a8,
    0 4px 1px rgba(0, 0, 0, 0.16),
    0 4px 10px rgba(0, 0, 0, 0.08);
  display: inline-block;
  transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.footer-brand-link:hover .footer-brand-text {
  transform: translateY(-1px);
  text-shadow:
    0 1px 0 #c8c8c8,
    0 2px 0 #b0b0b0,
    0 3px 0 #989898,
    0 4px 0 #808080,
    0 5px 2px rgba(0, 0, 0, 0.22),
    0 6px 14px rgba(0, 0, 0, 0.12);
}

.footer-brand-z {
  color: #111827;
  display: inline-block;
}

.footer-brand-domain {
  font-size: 0.82em;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.4px;
}

.footer-brand-reg {
  font-size: 0.52em;
  vertical-align: super;
  margin-left: 3px;
  font-weight: 800;
  color: #111827;
  opacity: 1;
}

.footer-logo {
  max-width: 260px;
  height: auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav-link {
  font-size: 1rem;
  color: var(--color-secondary);
  font-weight: 500;
}

.footer-nav-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.footer-social-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  overflow: hidden;
  text-decoration: none;
  color: #FFFFFF;
}

.social-icon-btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.social-icon-btn .icon-svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
  color: #FFFFFF;
  display: block;
}

.footer-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-fb {
  background-color: #1877F2;
}

.footer-tiktok {
  background-color: #010101;
}

.footer-wa {
  background-color: #25D366;
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: rgba(10, 14, 12, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 20px 60px 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  z-index: 100002;
  pointer-events: none;
}

.lightbox-counter-pill {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 16px;
  border-radius: 20px;
}

.lightbox-counter {
  font-size: 0.9rem;
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.lightbox-close-btn {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.2s ease;
  padding: 0;
}

.lightbox-close-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.08);
}

.lightbox-close-btn svg {
  display: block;
}

.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}

.lightbox-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 86vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75);
  will-change: transform, opacity;
  transform: translateZ(0);
  display: block;
}

.lightbox-info-bar {
  display: block;
  margin-top: 14px;
  text-align: center;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 80vw;
}

.lightbox-caption {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.lightbox-nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.2s ease;
  z-index: 100001;
  padding: 0;
}

.lightbox-nav-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev-btn {
  left: 24px;
}

.lightbox-next-btn {
  right: 24px;
}

@media (max-width: 480px) {
  .lightbox-modal {
    padding: 56px 8px 58px 8px;
  }

  .lightbox-top-bar {
    padding: 12px 14px;
  }

  .lightbox-img {
    max-width: 96vw;
    max-height: 68vh;
  }

  .lightbox-nav-btn {
    top: auto;
    bottom: 12px;
    transform: none;
    width: 42px;
    height: 42px;
  }

  .lightbox-nav-btn:hover {
    transform: scale(1.08);
  }

  .lightbox-prev-btn {
    left: 14px;
  }

  .lightbox-next-btn {
    right: 14px;
  }

  .lightbox-info-bar {
    max-width: 70vw;
    padding: 5px 12px;
  }

  .lightbox-caption {
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }

  .section-title-large {
    font-size: 2.8rem;
  }

  .infobox-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .faq-content-grid {
    grid-template-columns: 1fr;
  }

  .faq-image-col {
    display: none;
  }

  .contact-banner-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-banner-buttons {
    align-items: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {

  html,
  body {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar,
  *::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  .site-header {
    padding: 14px 0;
  }

  .header-container {
    gap: 12px;
  }


  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn-audio-promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 128, 58, 0.07);
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: all var(--transition-fast);
    transform: translateZ(0);
  }

  .btn-audio-promo:hover {
    background: var(--color-primary);
    color: #FFFFFF;
    transform: scale(1.03);
  }

  .btn-audio-promo.is-playing {
    background: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 0 14px rgba(0, 128, 58, 0.35);
  }

  .audio-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
  }

  .audio-wave {
    display: inline-flex;
    align-items: flex-end;
    gap: 2.5px;
    height: 12px;
  }

  .wave-bar {
    width: 2px;
    height: 100%;
    background: currentColor;
    border-radius: 1px;
    animation: audioWaveBar 0.8s ease-in-out infinite alternate;
  }

  .wave-bar:nth-child(2) {
    animation-delay: 0.25s;
  }

  .wave-bar:nth-child(3) {
    animation-delay: 0.5s;
  }

  @keyframes audioWaveBar {
    0% {
      height: 25%;
    }

    100% {
      height: 100%;
    }
  }


  .audio-btn-text .text-mobile {
    display: none;
  }

  .audio-btn-text .text-desktop {
    display: inline;
  }

  @media (max-width: 480px) {
    .btn-audio-promo {
      padding: 7px 11px;
      font-size: 0.82rem;
      gap: 6px;
    }

    .audio-btn-text .text-desktop {
      display: none;
    }

    .audio-btn-text .text-mobile {
      display: inline;
      font-weight: 600;
    }
  }

  .header-logo {
    height: 42px;
    width: auto;
  }

  .btn-quote {
    font-size: 0.88rem;
    padding: 9px 16px;
    border-radius: 20px;
    white-space: nowrap;
  }

  .hero-section {
    background-image: url("assets/galeria-landing/hero-bg-mobile.webp");
    padding: 35px 0 55px 0;
    min-height: auto;
  }

  .hero-billboard-card {
    padding: 30px 18px 24px 18px;
    border-radius: 22px;
  }

  .hero-3d-title {
    font-size: 2.3rem;
    letter-spacing: -0.5px;
  }

  .hero-tagline-text {
    font-size: 0.92rem;
    gap: 4px 8px;
    margin-bottom: 18px;
  }

  .hero-contact-row {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 0;
    width: 100%;
  }

  .hero-contact-item {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-phone-number-wrap {
    min-width: 145px;
    justify-content: center;
  }

  .hero-phone-number {
    font-size: 1.55rem;
  }

  .hero-ig-text {
    font-size: 1.12rem;
  }

  .hero-actions-row {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-hero-cta,
  .btn-hero-works {
    width: 100%;
    font-size: 1.05rem;
    padding: 12px 18px;
    text-align: center;
    justify-content: center;
  }

  .section-title-large {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.12rem;
  }

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

  .company-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .company-card-box {
    padding: 28px 20px;
  }

  .company-title {
    font-size: 2rem;
  }

  .company-description {
    font-size: 1.15rem;
  }

  .works-main-title {
    font-size: 2.2rem;
  }

  .works-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-feature-col {
    height: auto;
  }

  .gallery-img-vertical {
    min-height: auto;
    max-height: 420px;
    height: 340px;
    width: 100%;
  }

  .gallery-quad-col {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: auto;
  }

  .gallery-quad-item {
    min-height: 180px;
    max-height: 240px;
    height: auto;
  }

  .btn-gallery {
    font-size: 1.1rem;
    padding: 13px 26px;
    width: 100%;
    justify-content: center;
  }

  .work-categories-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-item {
    justify-content: flex-start;
  }

  .full-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 20px;
  }

  .faq-main-title {
    font-size: 2.1rem;
  }

  .faq-question {
    font-size: 1.05rem;
  }

  .faq-panel-inner {
    padding: 0 16px 18px 16px;
  }

  .contact-banner-card {
    padding: 35px 22px;
  }

  .banner-title {
    font-size: 1.8rem;
  }

  .banner-subtitle {
    font-size: 1.1rem;
  }

  .form-title {
    font-size: 1.9rem;
  }

  .form-wrapper-card {
    padding: 26px 18px;
  }

  .form-submit-row {
    flex-direction: column;
    width: 100%;
  }

  .btn-submit,
  .btn-whatsapp-direct {
    width: 100%;
    justify-content: center;
  }

  .legal-card {
    padding: 30px 20px;
  }

  .legal-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 12px 0;
  }

  .header-container {
    gap: 8px;
  }


  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn-audio-promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 128, 58, 0.07);
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: all var(--transition-fast);
    transform: translateZ(0);
  }

  .btn-audio-promo:hover {
    background: var(--color-primary);
    color: #FFFFFF;
    transform: scale(1.03);
  }

  .btn-audio-promo.is-playing {
    background: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 0 14px rgba(0, 128, 58, 0.35);
  }

  .audio-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
  }

  .audio-wave {
    display: inline-flex;
    align-items: flex-end;
    gap: 2.5px;
    height: 12px;
  }

  .wave-bar {
    width: 2px;
    height: 100%;
    background: currentColor;
    border-radius: 1px;
    animation: audioWaveBar 0.8s ease-in-out infinite alternate;
  }

  .wave-bar:nth-child(2) {
    animation-delay: 0.25s;
  }

  .wave-bar:nth-child(3) {
    animation-delay: 0.5s;
  }

  @keyframes audioWaveBar {
    0% {
      height: 25%;
    }

    100% {
      height: 100%;
    }
  }


  .audio-btn-text .text-mobile {
    display: none;
  }

  .audio-btn-text .text-desktop {
    display: inline;
  }

  @media (max-width: 480px) {
    .btn-audio-promo {
      padding: 7px 11px;
      font-size: 0.82rem;
      gap: 6px;
    }

    .audio-btn-text .text-desktop {
      display: none;
    }

    .audio-btn-text .text-mobile {
      display: inline;
      font-weight: 600;
    }
  }

  .header-logo {
    height: 38px;
    width: auto;
  }

  .btn-quote {
    font-size: 0.8rem;
    padding: 8px 12px;
    border-radius: 18px;
    letter-spacing: -0.2px;
  }

  .hero-billboard-card {
    padding: 22px 14px 18px 14px;
    border-radius: 18px;
  }

  .hero-3d-title {
    font-size: 1.95rem;
    letter-spacing: -0.5px;
  }

  .hero-tagline-text {
    font-size: 0.8rem;
    line-height: 1.35;
    gap: 3px 6px;
    margin-bottom: 16px;
  }

  .hero-phone-number {
    font-size: 1.45rem;
  }

  .hero-ig-text {
    font-size: 0.98rem;
  }

  .highlight-words-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .works-gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-img-vertical {
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: none;
  }

  .gallery-quad-col {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-quad-item {
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: auto;
    max-height: none;
    width: 100%;
  }

  .full-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-card-item {
    aspect-ratio: 4 / 3;
    width: 100%;
  }

  .gallery-page-title {
    font-size: 2.2rem;
  }

  .gallery-page-subtitle {
    font-size: 1.05rem;
  }

  .banner-phones-group {
    width: 100%;
    max-width: 100%;
  }

  .btn-banner-call,
  .btn-banner-quote {
    min-width: 100%;
    max-width: 100%;
    font-size: 1.05rem;
    padding: 10px 16px;
  }

  .banner-email-link {
    font-size: 1.15rem;
    min-width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 360px) {

  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn-audio-promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 128, 58, 0.07);
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: all var(--transition-fast);
    transform: translateZ(0);
  }

  .btn-audio-promo:hover {
    background: var(--color-primary);
    color: #FFFFFF;
    transform: scale(1.03);
  }

  .btn-audio-promo.is-playing {
    background: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 0 14px rgba(0, 128, 58, 0.35);
  }

  .audio-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
  }

  .audio-wave {
    display: inline-flex;
    align-items: flex-end;
    gap: 2.5px;
    height: 12px;
  }

  .wave-bar {
    width: 2px;
    height: 100%;
    background: currentColor;
    border-radius: 1px;
    animation: audioWaveBar 0.8s ease-in-out infinite alternate;
  }

  .wave-bar:nth-child(2) {
    animation-delay: 0.25s;
  }

  .wave-bar:nth-child(3) {
    animation-delay: 0.5s;
  }

  @keyframes audioWaveBar {
    0% {
      height: 25%;
    }

    100% {
      height: 100%;
    }
  }


  .audio-btn-text .text-mobile {
    display: none;
  }

  .audio-btn-text .text-desktop {
    display: inline;
  }

  @media (max-width: 480px) {
    .btn-audio-promo {
      padding: 7px 11px;
      font-size: 0.82rem;
      gap: 6px;
    }

    .audio-btn-text .text-desktop {
      display: none;
    }

    .audio-btn-text .text-mobile {
      display: inline;
      font-weight: 600;
    }
  }

  .header-logo {
    height: 34px;
    width: auto;
  }

  .btn-quote {
    font-size: 0.75rem;
    padding: 7px 10px;
  }
}