/* ============================================================
   FONTS
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&display=swap');


/* ============================================================
   RESET
============================================================ */

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

html {
  scroll-behavior: smooth;
  margin-top: 0 !important;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: #f1f1f1;
  background: #575757;
  font-weight: 300;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}


/* ============================================================
   WORDPRESS ADMIN BAR
============================================================ */

body.admin-bar #wpadminbar {
  position: fixed;
  top: 0;
}

body.admin-bar .sw-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .sw-header {
    top: 46px;
  }
}


/* ============================================================
   GLOBAL
============================================================ */

:root {
  --sw-container: 1380px;
  --sw-text: #1c1c1c;
  --sw-white: #ffffff;
  --sw-border-dark: rgba(0,0,0,.08);
  --sw-header-height: 96px;
  --sw-header-height-scrolled: 74px;
}

.sw-container {
  width: 100%;
  max-width: var(--sw-container);
  margin: 0 auto;
  padding: 0 28px;
}

.sw-main {
  min-height: 100vh;
  padding: 0;
}

section {
  scroll-margin-top: 110px;
}


/* ============================================================
   HEADER
============================================================ */

.sw-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--sw-header-height);
  z-index: 1000;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  transition:
    background-color .28s ease,
    backdrop-filter .28s ease,
    -webkit-backdrop-filter .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    height .28s ease,
    top .28s ease;
}

.sw-header.scrolled {
  height: var(--sw-header-height-scrolled);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--sw-border-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sw-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sw-logo {
  position: relative;
  z-index: 20;
  flex: 0 0 auto;
}

.sw-logo a {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.sw-logo img {
  display: block;
  width: auto;
  max-height: 72px;
  transition:
    opacity .28s ease,
    visibility .28s ease,
    max-height .28s ease;
}

.sw-logo .sw-logo-white {
  max-height: 62px;
  opacity: 1;
  visibility: visible;
}

.sw-logo .sw-logo-dark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}

.sw-header.scrolled .sw-logo .sw-logo-white,
.sw-header.menu-open .sw-logo .sw-logo-white {
  opacity: 0;
  visibility: hidden;
}

.sw-header.scrolled .sw-logo .sw-logo-dark,
.sw-header.menu-open .sw-logo .sw-logo-dark {
  opacity: 1;
  visibility: visible;
}

.sw-header.scrolled .sw-logo img,
.sw-header.menu-open .sw-logo img {
  max-height: 52px;
}

.sw-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.sw-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sw-menu > li {
  position: relative;
}

.sw-menu > li > a {
  color: rgba(255,255,255,.96);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .25s ease, opacity .25s ease;
}

.sw-menu > li > a:hover {
  opacity: .78;
}

.sw-header.scrolled .sw-menu > li > a {
  color: #4a4a4a;
}

/* EXTRA HEADER */

.sw-header-extra {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.sw-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,.96);
  transition: opacity .25s ease, color .25s ease;
}

.sw-header-icon svg {
  width: 14px;
  height: 14px;
}

.sw-header-icon:hover {
  opacity: .75;
}

.sw-header-phone {
  color: rgba(255,255,255,.96);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  white-space: nowrap;
  margin-left: 4px;
  transition: opacity .25s ease, color .25s ease;
}

.sw-header-phone:hover {
  opacity: .78;
}

/* LANG SELECTOR */

.sw-header-lang {
  position: relative;
  margin-left: 6px;
}

.sw-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.96);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .25s ease, color .25s ease;
}

.sw-lang-toggle:hover {
  opacity: .8;
}

.sw-flag {
  font-size: 13px;
  line-height: 1;
}

.sw-lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 130px;
  padding: 6px 0;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s ease;
  z-index: 50;
}

.sw-header-lang:hover .sw-lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sw-lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #2f2f2f;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

.sw-lang-option:hover {
  background: rgba(0,0,0,.05);
}

/* SCROLLED COLORS */

.sw-header.scrolled .sw-header-icon,
.sw-header.menu-open .sw-header-icon,
.sw-header.scrolled .sw-header-phone,
.sw-header.menu-open .sw-header-phone,
.sw-header.scrolled .sw-lang-toggle,
.sw-header.menu-open .sw-lang-toggle {
  color: #4a4a4a;
}

/* MENU TOGGLE */

.sw-menu-toggle {
  display: none;
  position: relative;
  z-index: 25;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.sw-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  transition:
    transform .25s ease,
    opacity .25s ease,
    background .25s ease;
}

.sw-header.scrolled .sw-menu-toggle span,
.sw-header.menu-open .sw-menu-toggle span {
  background: #3d3d3d;
}

/* MOBILE PANEL */

.sw-mobile-panel {
  display: none;
}

@media (max-width: 1200px) {
  .sw-menu {
    gap: 22px;
  }

  .sw-header-phone {
    display: none;
  }
}

@media (max-width: 1024px) {
  .sw-nav,
  .sw-header-extra {
    display: none;
  }

  .sw-menu-toggle {
    display: inline-block;
  }

  .sw-mobile-panel {
    display: block;
    position: fixed;
    top: var(--sw-header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--sw-header-height));
    background: rgba(255,255,255,.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity .25s ease,
      visibility .25s ease,
      transform .25s ease,
      top .25s ease;
    z-index: 15;
    overflow-y: auto;
    padding: 28px;
  }

  .sw-header.scrolled .sw-mobile-panel,
  .sw-header.menu-open .sw-mobile-panel {
    top: var(--sw-header-height-scrolled);
    height: calc(100vh - var(--sw-header-height-scrolled));
  }

  .sw-header.menu-open .sw-mobile-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sw-mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
  }

  .sw-mobile-menu li {
    border-bottom: 1px solid rgba(0,0,0,.08);
  }

  .sw-mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 60px;
    color: #2f2f2f;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .sw-arrow {
    font-size: 18px;
    line-height: 1;
    opacity: .55;
  }
}


/* ============================================================
   HERO
============================================================ */

.sw-hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  color: #ffffff;
  overflow: hidden;
  background: #000;
}

.sw-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sw-hero-slider {
  position: absolute;
  inset: 0;
}

.sw-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition:
    opacity 1.2s ease,
    visibility 1.2s ease,
    transform 6s ease;
}

.sw-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.sw-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 40%, rgba(0,0,0,.55) 100%),
    linear-gradient(to right, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 40%, rgba(0,0,0,.35) 100%);
}

.sw-hero-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 140px;
  padding-bottom: 80px;
}

.sw-hero-copy {
  width: 100%;
  max-width: 1050px;
}

.sw-hero-kicker {
  display: inline-block;
  margin-bottom: 24px;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.sw-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.sw-hero p {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(255,255,255,.88);
  font-size: 20px;
  line-height: 1.8;
  font-weight: 300;
}

.sw-hero-actions {
  margin-top: 34px;
}

.sw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border: 1px solid rgba(255,255,255,.75);
  color: #ffffff;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition:
    background-color .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.sw-btn:hover {
  background: #ffffff;
  color: #111111;
  transform: translateY(-2px);
}


/* ============================================================
   ABOUT / NOSOTROS
============================================================ */

.sw-about-main {
  background: #f2f2f2;
  padding: 0;
}

.sw-about-main .sw-container,
.sw-about-secondary .sw-container {
  max-width: 1240px;
}

.sw-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 72px;
  align-items: stretch;
}

.sw-about-content {
  max-width: 560px;
  align-self: center;
}

.sw-about-title {
  margin: 0 0 28px;
  color: #454545;
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.sw-about-intro {
  margin: 0 0 20px;
  color: #707070;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.85;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.sw-about-body {
  margin: 0 0 16px;
  color: #808080;
  font-size: 0.96rem;
  line-height: 1.9;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.sw-about-body:last-child {
  margin-bottom: 0;
}

.sw-about-image {
  width: 100%;
  height: 100%;
}

.sw-about-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.sw-about-secondary {
  background: #ffffff;
  padding: 86px 0 100px;
}

.sw-about-secondary-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 720px);
  justify-content: space-between;
  gap: 64px;
  align-items: start;
}

.sw-about-quote p {
  margin: 0;
  color: #5a5a5a;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-align: left;
}

.sw-about-secondary-text p {
  margin: 0;
  color: #888888;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.9;
  font-weight: 300;
  letter-spacing: -0.01em;
}


/* ============================================================
   SERVICES
============================================================ */

.sw-services {
  background: #575757;
  padding: 96px 0 110px;
}

.sw-services-wrap {
  max-width: 1240px;
}

.sw-services-head {
  margin-bottom: 44px;
  text-align: center;
}

.sw-services-title {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.sw-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 34px;
  align-items: start;
}

.sw-service-card {
  position: relative;
}

.sw-service-card-media {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  aspect-ratio: 0.78 / 1;
}

.sw-service-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.34);
  z-index: 1;
  transition: background .3s ease;
}

.sw-service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .82;
  transition: transform .5s ease, opacity .3s ease;
}

.sw-service-card:hover .sw-service-card-media img {
  transform: scale(1.04);
  opacity: .92;
}

.sw-service-card:hover .sw-service-card-media::before {
  background: rgba(0,0,0,.22);
}

.sw-service-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  text-align: center;
}

.sw-service-card-title {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  pointer-events: none;
}

.sw-service-card-text {
  margin: 16px 0 14px;
  color: rgba(255,255,255,.80);
  font-size: 0.98rem;
  line-height: 1.8;
  font-weight: 300;
  text-align: left;
}

.sw-service-gallery-btn.sw-service-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.6);
  background: transparent;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
}

.sw-service-gallery-btn.sw-service-card-link:hover {
  background: #ffffff;
  color: #575757;
  border-color: #ffffff;
}

.sw-service-gallery-btn.sw-service-card-link:hover {
  opacity: .68;
}

@media (max-width: 1200px) {
  .sw-services-wrap {
    max-width: 1100px;
  }

  .sw-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 26px;
  }
}

@media (max-width: 900px) {
  .sw-services {
    padding: 74px 0 82px;
  }

  .sw-services-head {
    margin-bottom: 32px;
  }

  .sw-services-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    letter-spacing: .14em;
  }

  .sw-services-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sw-service-card-title {
    font-size: 15px;
    padding: 18px;
  }

  .sw-service-card-media {
    aspect-ratio: 1 / 1;
  }

  .sw-service-card-text {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .sw-service-gallery-btn.sw-service-card-link {
    font-size: 15px;
  }
}


/* ============================================================
   GALLERY MODAL
============================================================ */

.sw-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}

.sw-gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sw-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12,12,12,.68);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.sw-gallery-dialog {
  position: relative;
  width: min(1100px, calc(100vw - 40px));
  margin: 6vh auto 0;
  background: #ffffff;
  padding: 24px;
}

.sw-gallery-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.sw-gallery-top h3 {
  margin: 0;
  color: #2f2f2f;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.sw-gallery-close {
  border: 0;
  background: transparent;
  padding: 0;
  color: #333;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.sw-gallery-slider {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 18px;
}

.sw-gallery-arrow {
  border: 0;
  background: transparent;
  color: #2d2d2d;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: opacity .25s ease;
}

.sw-gallery-arrow:hover {
  opacity: .6;
}

.sw-gallery-stage {
  width: 100%;
}

.sw-gallery-stage img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.sw-gallery-counter {
  margin-top: 14px;
  text-align: center;
  color: #666;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}


/* ============================================================
   PROJECTS
============================================================ */

.sw-projects {
  padding: 120px 0 110px;
  background: #f5f5f5;
}

.sw-projects-wrap {
  max-width: 1240px;
}

.sw-projects-head {
  margin-bottom: 54px;
  text-align: center;
}

.sw-projects-title {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 3vw, 3.1rem);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  color: #1a1a1a;
}

.sw-projects-sub {
  margin: 0;
  font-size: 1rem;
  color: rgba(0,0,0,.62);
  font-weight: 300;
  line-height: 1.9;
}

.sw-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
}

.sw-project-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9; /* 🔥 FIX CLAVE */
  cursor: pointer;
  background: #ddd;
}

.sw-project-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1;
  transition: background .3s ease;
}

.sw-project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform .6s ease, opacity .3s ease;
}

.sw-project-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  text-align: center;
}

.sw-project-copy {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sw-project-name {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sw-project-text {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 300;
  max-width: 500px;
}

.sw-project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 7px 12px;
  min-height: 32px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.95);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  transition: all .25s ease;
}

.sw-project-btn:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.7);
  color: #ffffff;
}

.sw-project-item:hover img {
  transform: scale(1.04);
}

.sw-project-item:hover::before {
  background: rgba(0,0,0,.65);
}

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

@media (max-width: 1100px) {
  .sw-projects-grid {
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .sw-projects {
    padding: 74px 0 82px;
  }

  .sw-projects-head {
    margin-bottom: 34px;
  }

  .sw-projects-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    letter-spacing: .14em;
  }

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

  .sw-project-item {
    aspect-ratio: 16 / 9; /* mantiene proporción en móvil */
  }

  .sw-project-overlay {
    padding: 22px;
  }

  .sw-project-copy {
    gap: 10px;
  }

  .sw-project-name {
    font-size: 14px;
    letter-spacing: .1em;
  }

  .sw-project-text {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .sw-project-btn {
    padding: 6px 11px;
    min-height: 30px;
    font-size: 9px;
  }
}


/* ============================================================
   CTA
============================================================ */

.sw-cta {
  position: relative;
  padding: 120px 0 110px;
  background: #f5f5f5;
  overflow: hidden;
}

/* overlay oscuro elegante */
.sw-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1;
}

.sw-cta-wrap {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.sw-cta-title {
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffffff;
}

.sw-cta-text {
  margin: 0 0 42px;
  font-size: 1.05rem;
  line-height: 1.95;
  color: rgba(255,255,255,.78);
  font-weight: 300;
}

.sw-cta-action {
  display: flex;
  justify-content: center;
}

.sw-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;

  border: 1px solid rgba(255,255,255,.65);
  background: transparent;

  color: #ffffff;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;

  cursor: pointer;
  transition: all .25s ease;
}

.sw-cta-btn:hover {
  background: #ffffff;
  color: #2f2f2f;
  border-color: #ffffff;
}


/* ============================================================
   FOOTER
============================================================ */

.sw-footer {
  background: #f6f6f6;
  border-top: 1px solid rgba(0,0,0,.06);
}

.sw-footer-top {
  max-width: 1240px;
  padding-top: 72px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(160px, .8fr) minmax(240px, 1fr);
  gap: 48px;
  align-items: start;
}

.sw-footer-brand {
  max-width: 340px;
}

.sw-footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.sw-footer-logo img {
  width: auto;
  max-height: 52px;
  display: block;
}

.sw-footer-tagline {
  margin: 0;
  color: #7b7b7b;
  font-size: 0.96rem;
  line-height: 1.9;
  font-weight: 300;
}

.sw-footer-nav-block h3,
.sw-footer-contact h3 {
  margin: 0 0 18px;
  color: #2f2f2f;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.sw-footer-links,
.sw-footer-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

/* ===== FIX ICONOS CONTACT ===== */

.sw-footer-contact{
  text-align: center;
}

.sw-footer-info{
  justify-items: center;
}

.sw-footer-info .sw-footer-socials{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.sw-footer-info .sw-footer-socials{
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 2px;
}

.sw-footer-icon-link{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 50%;
  color: #7a7a7a !important;
  text-decoration: none;
  font-size: 15px !important;
  line-height: 1 !important;
  transition: all .25s ease;
}

.sw-footer-icon-link:hover{
  color: #1a1a1a !important;
  border-color: rgba(0,0,0,.3);
  opacity: 1 !important;
  transform: translateY(-2px);
}

.sw-footer-icon-link i{
  line-height: 1;
}

.sw-footer-links a,
.sw-footer-info li,
.sw-footer-info a {
  color: #7a7a7a;
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  transition: opacity .25s ease;
}

.sw-footer-links a:hover,
.sw-footer-info a:hover {
  opacity: .65;
}

.sw-footer-bottom {
  border-top: 1px solid rgba(0,0,0,.06);
}

.sw-footer-bottom-inner {
  padding-top: 18px;
  padding-bottom: 18px;
}

.sw-footer-bottom p {
  margin: 0;
  color: #8a8a8a;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {
  .sw-menu {
    gap: 22px;
  }

  .sw-menu > li > a {
    font-size: 12px;
    letter-spacing: .12em;
  }

  .sw-hero-content {
    padding-top: 150px;
  }

  .sw-hero h1 {
    font-size: clamp(3rem, 9vw, 6rem);
  }

  .sw-hero p {
    max-width: 680px;
    font-size: 18px;
  }

  .sw-about-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .sw-about-image {
    max-width: 100%;
    height: auto;
  }

  .sw-about-secondary-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .sw-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
  }
}


/* ============================================================
   MOBILE / TABLET SMALL
============================================================ */

@media (max-width: 900px) {
  :root {
    --sw-header-height: 82px;
    --sw-header-height-scrolled: 72px;
  }

  .sw-container {
    padding: 0 20px;
  }

  .sw-nav {
    display: none;
  }

  .sw-menu-toggle {
    display: inline-block;
  }

  .sw-logo .sw-logo-white {
    max-height: 52px;
  }

  .sw-header.scrolled .sw-logo img,
  .sw-header.menu-open .sw-logo img {
    max-height: 44px;
  }

  .sw-mobile-panel {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 10px 0 18px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity .25s ease,
      visibility .25s ease,
      transform .25s ease;
  }

  .sw-header.menu-open {
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.04);
  }

  .sw-header.menu-open .sw-mobile-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sw-mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0 20px;
  }

  .sw-mobile-menu li {
    border-bottom: 1px solid rgba(0,0,0,.06);
  }

  .sw-mobile-menu li:last-child {
    border-bottom: 0;
  }

  .sw-mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  color: #444444;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: opacity .25s ease;
}

.sw-mobile-menu a:hover {
  opacity: .65;
}

.sw-arrow {
  font-size: 18px;
  line-height: 1;
  color: #999999;
  transition: transform .25s ease, opacity .25s ease;
}

.sw-mobile-menu a:hover .sw-arrow {
  transform: translateX(4px);
  opacity: .65;
}

  .sw-hero,
  .sw-hero-content {
    height: 100vh;
    min-height: 100vh;
  }

  .sw-hero-content {
    padding-top: 110px;
    padding-bottom: 40px;
  }

  .sw-hero-copy {
    max-width: 100%;
  }

  .sw-hero-kicker {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: .32em;
  }

  .sw-hero h1 {
  font-size: clamp(2.9rem, 8vw, 4rem);
  line-height: 1.1;
  letter-spacing: .05em;
}

  .sw-hero p {
    max-width: 100%;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
  }

  .sw-btn {
    min-height: 52px;
    padding: 0 24px;
    font-size: 12px;
    letter-spacing: .14em;
  }

  .sw-about-main {
    padding: 82px 0;
  }

  .sw-about-title {
    margin-bottom: 20px;
    font-size: 2.1rem;
  }

  .sw-about-intro {
    font-size: 0.98rem;
    line-height: 1.82;
  }

  .sw-about-body {
    font-size: 14.5px;
    line-height: 1.86;
  }

  .sw-about-image img {
    aspect-ratio: 4 / 4.8;
  }

  .sw-about-secondary {
    padding: 68px 0 82px;
  }

  .sw-services {
    padding: 82px 0 88px;
  }

  .sw-services-head {
    margin-bottom: 40px;
  }

  .sw-services-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .sw-service-item {
    padding-top: 14px;
  }

  .sw-service-item p {
    margin-bottom: 14px;
  }

  .sw-gallery-dialog {
    width: min(96vw, 1100px);
    padding: 18px;
    margin-top: 4vh;
  }

  .sw-gallery-slider {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 10px;
  }

  .sw-gallery-arrow {
    font-size: 32px;
  }

  .sw-gallery-stage img {
    max-height: 64vh;
  }

  .sw-projects {
    padding: 90px 0;
  }

  .sw-projects-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .sw-project-large,
  .sw-project-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .sw-project-item img {
    height: auto;
  }
}

/* ============================================================
   CONTACT HERO
============================================================ */

.sw-contact-hero {
  position: relative;
  min-height: 58vh;
  color: #ffffff;
  overflow: hidden;
  background: #111111;
}

.sw-contact-hero-media {
  position: absolute;
  inset: 0;
  background: url('../img/contact-hero.webp') center center / cover no-repeat;
}

.sw-contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.56) 0%, rgba(0,0,0,.34) 42%, rgba(0,0,0,.58) 100%),
    linear-gradient(to right, rgba(0,0,0,.34) 0%, rgba(0,0,0,.14) 45%, rgba(0,0,0,.34) 100%);
}

.sw-contact-hero-content {
  position: relative;
  z-index: 2;
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 70px;
}

.sw-contact-hero-copy {
  max-width: 840px;
}

.sw-contact-kicker {
  display: inline-block;
  margin-bottom: 20px;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.sw-contact-hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sw-contact-hero p {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.88);
  font-size: 1.02rem;
  line-height: 1.9;
  font-weight: 300;
}


/* ============================================================
   CONTACT SECTION
============================================================ */

.sw-contact-section {
  padding: 96px 0 110px;
  background: #f5f5f5;
}

.sw-contact-grid {
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.sw-contact-info h2,
.sw-contact-form-wrap h2 {
  margin: 0 0 28px;
  color: #2f2f2f;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  line-height: 1.08;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.sw-contact-list {
  display: grid;
  gap: 22px;
}

.sw-contact-item {
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.sw-contact-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #3f3f3f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sw-contact-item p,
.sw-contact-item a {
  margin: 0;
  color: #7a7a7a;
  font-size: 0.98rem;
  line-height: 1.9;
  font-weight: 300;
}

.sw-contact-form {
  display: grid;
  gap: 22px;
}

.sw-contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.sw-field {
  display: grid;
  gap: 10px;
}

.sw-field label {
  color: #3d3d3d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sw-field input,
.sw-field select,
.sw-field textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.10);
  background: #ffffff;
  padding: 16px 18px;
  color: #2f2f2f;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
  appearance: none;
  border-radius: 0;
}

.sw-field input:focus,
.sw-field select:focus,
.sw-field textarea:focus {
  border-color: rgba(0,0,0,.24);
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}

.sw-field textarea {
  resize: vertical;
  min-height: 170px;
}

.sw-contact-action {
  display: flex;
  justify-content: flex-start;
}

.sw-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border: 1px solid #2f2f2f;
  background: transparent;
  color: #2f2f2f;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease;
}

.sw-contact-btn:hover {
  background: #2f2f2f;
  color: #ffffff;
}


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

@media (max-width: 1100px) {
  .sw-contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .sw-contact-hero {
    min-height: 44vh;
  }

  .sw-contact-hero-content {
    min-height: 44vh;
    padding-top: 105px;
    padding-bottom: 44px;
  }

  .sw-contact-hero h1 {
    font-size: clamp(2.1rem, 9vw, 3.4rem);
  }

  .sw-contact-hero p {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .sw-contact-section {
    padding: 74px 0 82px;
  }

  .sw-contact-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sw-contact-action {
    justify-content: stretch;
  }

  .sw-contact-btn {
    width: 100%;
  }
}

/* ============================================================
   FABRICANTES
============================================================ */

.sw-fabricantes {
  background: #f5f5f5;
  padding: 100px 0 110px;
  overflow: hidden;
}

.sw-fabricantes-wrap {
  max-width: 1240px;
}

.sw-fabricantes-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
}

.sw-fabricantes-head h2 {
  margin: 0 0 18px;
  color: #1a1a1a;
  font-size: clamp(2rem, 2.8vw, 3rem);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
}

.sw-fabricantes-head p {
  color: rgba(0,0,0,.65);
  line-height: 1.9;
  font-size: 1rem;
}

/* SLIDER */

.sw-fabricantes-slider {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
  gap: 18px;
}

.sw-fabricantes-viewport {
  overflow: hidden;
}

.sw-fabricantes-track {
  display: flex;
  transition: transform .5s ease;
}

.sw-fabricantes-slide {
  flex: 0 0 calc(100% / 3);
  padding: 0 8px;
}

.sw-fabricantes-slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* ARROWS */

.sw-fabricantes-arrow {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(0,0,0,.18);
  background: transparent;
  color: #1a1a1a;
  font-size: 32px;
  cursor: pointer;
  transition: .25s ease;
}

.sw-fabricantes-arrow:hover {
  background: rgba(0,0,0,.06);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .sw-fabricantes-slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 900px) {
  .sw-fabricantes-slider {
    grid-template-columns: 40px 1fr 40px;
  }

  .sw-fabricantes-slide {
    flex: 0 0 100%;
  }

  .sw-fabricantes-slide img {
    height: 300px;
  }
}