@charset "UTF-8";
/* ===========================
   CONFIGURACIÓN GLOBAL
=========================== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* ===========================
   BASE DE ESTILOS
=========================== */
*,
html,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scrollbar-width: none;
}
*::-webkit-scrollbar,
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  height: 0 !important;
  display: none !important;
}
*::-webkit-scrollbar-track,
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: transparent !important;
}
*::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: transparent !important;
}
*::-webkit-scrollbar-corner,
html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
  background: transparent !important;
}
*::-webkit-resizer,
html::-webkit-resizer,
body::-webkit-resizer {
  background: transparent !important;
}
*,
html,
body {
  scrollbar-gutter: stable both-edges;
}

a {
  text-decoration: none;
  color: #F15830;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

hr {
  border: none;
  border-top: 1px solid #e8eced;
  margin: 30px 0;
}
hr.hr-primary {
  border-top-color: rgba(0, 0, 0, 0.3);
}
hr.line-dashed {
  border-top-style: dashed;
}
hr.line-dashed--secondary {
  border-top-color: #F15830;
}
hr.line-dashed--primary {
  border-top-color: #000000;
}
hr.line-dashed--light {
  border-top-color: #F3F6F7;
}
hr.line-dashed--dark {
  border-top-color: #000000;
}
hr.line-solid {
  border-top-style: solid;
}
hr.line-solid--secondary {
  border-top-color: #F15830;
}
hr.line-solid--primary {
  border-top-color: #000000;
}
hr.line-solid--light {
  border-top-color: #F3F6F7;
}
hr.line-solid--dark {
  border-top-color: #000000;
}
hr.line-dotted {
  border-top-style: dotted;
}
hr.line-dotted--secondary {
  border-top-color: #F15830;
}
hr.line-dotted--primary {
  border-top-color: #000000;
}
hr.line-dotted--light {
  border-top-color: #F3F6F7;
}
hr.line-dotted--dark {
  border-top-color: #000000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  overflow-x: hidden;
  padding-top: 100px;
}
@media (max-width: 991px) {
  body {
    padding-top: 80px;
  }
}

.is-overflow-hidden {
  overflow: hidden !important;
}

.uppercase {
  text-transform: uppercase;
}

.container,
.container--md,
.container--sm,
.container--xs,
.container--xxs,
.container--min {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}

.container {
  max-width: 1350px;
}

.container--md {
  max-width: 1200px;
}

.container--sm {
  max-width: 1000px;
}

.container--xs {
  max-width: 900px;
}

.container--xxs {
  max-width: 800px;
}

.container--min {
  max-width: 600px;
}

@media screen and (min-width: 768px) {
  .container,
  .container--md,
  .container--sm,
  .container--xs,
  .container--xxs,
  .container--min {
    padding: 0 40px;
  }
}
.hidden {
  display: none !important;
}

.hide {
  display: none !important;
}

.pdt {
  padding-top: 120px;
}

.pdb {
  padding-bottom: 120px;
}

.hide-desktop {
  display: none !important;
}

.hide-mobile {
  display: block !important;
}

.hide-tablet {
  display: block !important;
}

@media screen and (max-width: 1024px) {
  .hide-tablet {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pdt {
    padding-top: 80px;
  }
  .pdb {
    padding-bottom: 80px;
  }
  .hide-desktop {
    display: block !important;
  }
  .hide-mobile {
    display: none !important;
  }
}
.link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.no-scroll {
  overflow: hidden !important;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  background-color: #fff;
  z-index: 100000000;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}
#loader .loader {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 300px;
}
#loader .loader img {
  width: 150px;
  max-width: 150px;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
  position: relative;
}

.h-full {
  height: 100% !important;
}

.w-full {
  width: 100% !important;
}

.h-auto {
  height: auto !important;
}

.w-auto {
  width: auto !important;
}

.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

input, textarea, select, button {
  font-family: "Montserrat", sans-serif;
}
input::placeholder, textarea::placeholder, select::placeholder, button::placeholder {
  font-family: "Montserrat", sans-serif;
}

.pointer {
  cursor: pointer;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
}

.text-primary {
  color: #000000 !important;
}

.text-secondary {
  color: #F15830 !important;
}

.text-dark {
  color: #000000 !important;
}

.text-light {
  color: #F3F6F7 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-info {
  color: #17a2b8 !important;
}

.text-success {
  color: #06A52B !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-disabled {
  color: #A5A5A5 !important;
}

.text-gray {
  color: #838382 !important;
}

.text-xs {
  font-size: 12px !important;
}

.text-sm {
  font-size: 14px !important;
}

.text-base {
  font-size: 16px !important;
}

.text-lg {
  font-size: 18px !important;
}

.line-through {
  text-decoration: line-through;
}

.text-decoration {
  text-decoration: underline;
}

.text-right {
  text-align: right;
}

.font-bold {
  font-weight: bold !important;
}

.text-sm {
  font-size: 14px !important;
}

.text-xs {
  font-size: 12px !important;
}

.text-md {
  font-size: 16px !important;
}

.text-lg {
  font-size: 18px !important;
}

.max-content {
  width: max-content !important;
  min-width: max-content !important;
}

body.is-modal-open {
  overflow: hidden !important;
}

/* ocultar*/
.grecaptcha-badge {
  visibility: hidden;
}

.bg-light {
  background-color: #F3F6F7 !important;
}

.bg-white {
  background-color: #fff;
}

.bg-dark {
  background-color: #000000 !important;
}

div:where(.swal2-container) {
  z-index: 1000000 !important;
}

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.section-label--light {
  color: #F3F6F7;
}
.section-label--dark {
  color: #000000;
}
.section-label--primary {
  color: #000000;
}
.section-label--secondary {
  color: #F15830;
}
.section-label--gray {
  color: #999;
}

.adw-top {
  margin-bottom: 80px;
}
.adw-top__label {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.adw-top__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 34px;
  height: 1px;
  background: #F15830;
}
.adw-top--secondary .adw-top__label {
  color: #F15830;
}
.adw-top--secondary .adw-top__label::after {
  background: #F15830;
}
.adw-top--gray .adw-top__label {
  color: #838382;
}
.adw-top--gray .adw-top__label::after {
  background: #838382;
}
.adw-top--dark .adw-top__label {
  color: #000000;
}
.adw-top--dark .adw-top__label::after {
  background: #000000;
}
.adw-top--white .adw-top__label {
  color: #fff;
}
.adw-top--white .adw-top__label::after {
  background: #fff;
}
.adw-top--secondary .adw-top__label {
  color: #F15830;
}
.adw-top--secondary .adw-top__label::after {
  background: #F15830;
}
@media (max-width: 767px) {
  .adw-top {
    margin-bottom: 50px;
  }
}

.z-index-2 {
  z-index: 2 !important;
}

.z-index-10 {
  z-index: 10 !important;
}

.relative {
  position: relative;
}

#js-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: visible;
  transform: translateY(0%);
}
#js-loader .loader-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
#js-loader .loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
#js-loader .js-loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 1;
  z-index: 3;
}
#js-loader .js-loader-logo svg, #js-loader .js-loader-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.page-html {
  position: relative;
  background-color: #ffffff;
}

.html p {
  color: #000000;
  font-size: 15px;
  line-height: 1.6;
}
.html p strong, .html p b {
  color: currentColor;
}
.html p + p {
  margin-top: 1rem;
}
.html h1, .html h2, .html h3, .html h4, .html h5, .html h6 {
  color: #000000;
  font-weight: normal;
  margin-bottom: 1.5rem;
}
.html.title-primary h1, .html.title-primary h2, .html.title-primary h3, .html.title-primary h4, .html.title-primary h5, .html.title-primary h6 {
  color: #000000;
}
.html h1 {
  font-size: 52.5px;
  font-weight: 700;
}
.html h2 {
  font-size: 37.5px;
  font-weight: 700;
}
.html h3 {
  font-size: 27px;
  font-weight: 600;
}
.html h4 {
  font-size: 21px;
  font-weight: 600;
}
.html h5 {
  font-size: 16.5px;
  font-weight: 600;
}
.html h6 {
  font-size: 13.5px;
  font-weight: 600;
}
.html ul,
.html ol {
  margin: 1em 0;
}
.html ul li,
.html ol li {
  margin-bottom: 1em;
  color: #000000;
  position: relative;
  padding-left: 1.8rem;
  font-size: 15px;
}
.html ul li strong, .html ul li b,
.html ol li strong,
.html ol li b {
  color: currentColor;
}
.html ul li::before,
.html ol li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 300;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 20px;
  color: #F15830;
}
.html ul li.icono-x::before,
.html ol li.icono-x::before {
  content: "\f057";
  font-family: "Font Awesome 6 Free";
  font-weight: 300;
}
.html ul li ul li::before, .html ul li ol li::before,
.html ol li ul li::before,
.html ol li ol li::before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 11px;
  top: 3px;
}
.html ul.text-secondary li,
.html ol.text-secondary li {
  color: #F15830;
}
.html ul.text-secondary li::before,
.html ol.text-secondary li::before {
  color: #F15830;
}
.html ul.text-primary li,
.html ol.text-primary li {
  color: #000000;
}
.html ul.text-primary li::before,
.html ol.text-primary li::before {
  color: #000000;
}
.html ul.text-dark li,
.html ol.text-dark li {
  color: #000000;
}
.html ul.text-dark li::before,
.html ol.text-dark li::before {
  color: #000000;
}
.html ul.list-note li::before,
.html ol.list-note li::before {
  content: "*";
  font-weight: 300;
}
.html ul.list-cross li::before,
.html ol.list-cross li::before {
  content: "\f057";
  font-weight: 300;
}
.html ul.list-check li::before,
.html ol.list-check li::before {
  content: "\f058";
  font-weight: 300;
}
.html ul.list-points li,
.html ol.list-points li {
  padding-left: 1.4rem;
}
.html ul.list-points li::before,
.html ol.list-points li::before {
  content: "\f111";
  font-size: 12px;
  font-weight: 600;
  top: 3px;
}
.html a {
  text-decoration: underline;
}
.html em {
  font-style: italic;
}
.html hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2em 0;
}
.html blockquote {
  border-left: 4px solid #000000;
  padding: 0.5rem;
  padding-left: 1rem;
  margin: 1em 0;
  color: #000000;
  background-color: #F3F6F7;
}
.html--white p, .html--white li {
  color: #ffffff;
}
.html--white ul li {
  color: #ffffff;
}
.html--white ul li::before {
  color: #ffffff;
}
.html--white h1, .html--white h2, .html--white h3, .html--white h4, .html--white h5, .html--white h6 {
  color: #ffffff;
}
.html--white strong, .html--white b {
  color: #ffffff !important;
}
.html--basic p, .html--basic li {
  color: #000000;
}
.html--basic ul li {
  color: #000000;
}
.html--basic ul li::before {
  color: #000000;
}
.html--basic h1, .html--basic h2, .html--basic h3, .html--basic h4, .html--basic h5, .html--basic h6 {
  color: #000000;
}
.html--basic a {
  color: #000000;
}
.html--basic strong, .html--basic b {
  color: #000000 !important;
}
.html--flex p, .html--flex li {
  color: #F15830;
}
.html--flex ul li {
  color: #F15830;
}
.html--flex ul li::before {
  color: #F15830;
}
.html--flex h1, .html--flex h2, .html--flex h3, .html--flex h4, .html--flex h5, .html--flex h6 {
  color: #F15830;
}
.html--flex a {
  color: #000000;
}
.html--flex strong, .html--flex b {
  color: #F15830 !important;
}

@media (max-width: 767px) {
  .html h1 {
    font-size: 37.5px;
  }
  .html h2 {
    font-size: 27px;
  }
  .html h3 {
    font-size: 21px;
  }
}
.page-columns {
  position: relative;
  background-color: #fff;
}

.columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
.columns--2 {
  gap: 100px;
  grid-template-columns: repeat(2, 1fr);
}
.columns--3 {
  gap: 80px;
  grid-template-columns: repeat(3, 1fr);
}
.columns--4 {
  gap: 60px;
  grid-template-columns: repeat(4, 1fr);
}
.columns--start {
  align-items: flex-start;
}
.columns--center {
  align-items: center;
}
.columns--end {
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .columns--2, .columns--3, .columns--4 {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
.columns--2 {
  gap: 100px;
  grid-template-columns: repeat(2, 1fr);
}
.columns--3 {
  gap: 80px;
  grid-template-columns: repeat(3, 1fr);
}
.columns--4 {
  gap: 60px;
  grid-template-columns: repeat(4, 1fr);
}
.columns--start {
  align-items: flex-start;
}
.columns--center {
  align-items: center;
}
.columns--end {
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .columns--2, .columns--3, .columns--4 {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
/* ===========================
   COMPONENTES
=========================== */
.link {
  display: inline-block;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
  position: relative;
  padding-bottom: 12px;
}
.link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: transparent;
  transition: all 0.3s ease;
}
.link:hover::after {
  background-color: currentColor;
}
.link--primary {
  color: #000000;
}
.link--primary::after {
  background-color: #000000;
}
.link--primary:hover {
  color: #F15830;
}
.link--primary:hover::after {
  background-color: #F15830;
  width: 50%;
}
.link--gray {
  color: #838382;
}
.link--gray::after {
  background-color: #838382;
}
.link--gray:hover {
  color: #F15830;
}
.link--gray:hover::after {
  background-color: #F15830;
  width: 50%;
}
.link--white {
  color: #fff;
}
.link--white::after {
  background-color: #fff;
}
.link--white:hover {
  color: rgba(255, 255, 255, 0.8);
}
.link--white:hover::after {
  background-color: rgba(255, 255, 255, 0.8);
  width: 50%;
}
.link--dark {
  color: #000000;
}
.link--dark::after {
  background-color: #000000;
}
.link--dark:hover {
  color: #F15830;
}
.link--dark:hover::after {
  background-color: #F15830;
  width: 50%;
}
.link--secondary {
  color: #F15830;
}
.link--secondary::after {
  background-color: #F15830;
}
.link--secondary:hover {
  color: #000000;
}
.link--secondary:hover::after {
  background-color: #000000;
  width: 50%;
}
.link--back::after {
  left: 0;
  transform: translateX(0);
  width: 20%;
}
.link--back:hover::after {
  width: 100%;
}

/* OVERLAY */
.adw-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

body.menu-open .adw-overlay {
  opacity: 1;
  visibility: visible;
}
body.menu-open .menu-toggle {
  opacity: 0;
  visibility: hidden;
}

/* HEADER */
.adw-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 80;
  padding: 30px 0;
  transition: 0.4s;
  background-color: #fff;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: 0.4s;
  min-width: 200px;
  height: 40px;
}

.logo-full,
.logo-short {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}

.logo-full {
  width: 150px;
  height: auto;
}

.logo-short {
  width: 150px;
  height: auto;
  opacity: 0;
  visibility: hidden;
}

/* HEADER SCROLL */
.adw-header.scrolled {
  padding: 18px 0;
  background: rgb(255, 255, 255);
}
.adw-header.scrolled .logo-full {
  opacity: 0;
  visibility: hidden;
}
.adw-header.scrolled .logo-short {
  opacity: 1;
  visibility: visible;
}

/* RIGHT */
.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-link {
  color: #F15830;
  font-size: 20px;
  position: relative;
  margin-top: -7px;
}
.header-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #F15830;
  transition: all 0.4s;
}
.header-link:hover::after {
  width: 20%;
}

/* MENU BUTTON */
.menu-toggle {
  width: 45px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  position: relative;
}
.menu-toggle span {
  width: 100%;
  height: 2px;
  background: #000;
  transition: 0.4s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .adw-header {
    padding: 20px 0;
  }
  .header-content {
    justify-content: space-between;
  }
  .logo {
    position: relative;
    left: auto;
    transform: none;
    min-width: 140px;
    justify-content: flex-start;
  }
  .logo-full,
  .logo-short {
    left: 0;
    transform: translateY(-50%);
  }
  .logo-full {
    width: 140px;
  }
  .logo-short {
    width: 140px;
  }
  .header-link {
    display: none;
  }
  .menu-panel {
    width: 100%;
  }
  .menu-close {
    top: 25px;
    right: 20px;
  }
}
footer {
  background-color: #000000;
  position: relative;
}

.footer-link {
  position: relative;
  background-color: #000000;
}
.footer-link a {
  display: inline-flex;
  flex-direction: column;
  font-size: clamp(38px, 4vw, 70px);
  color: #fff;
  position: relative;
  padding-bottom: 20px;
  font-weight: 700;
}
.footer-link a::after {
  content: "";
  left: 0;
  bottom: 0;
  position: absolute;
  width: 20%;
  height: 1px;
  background-color: #707070;
  transition: width 0.4s;
}
.footer-link a span {
  font-size: 18px;
  font-weight: 400;
  color: #818181;
}
.footer-link a:hover::after {
  width: 100%;
  background-color: #F15830;
}

.footer {
  position: relative;
  background-color: #000000;
}
.footer__wrap {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.footer__left, .footer__right {
  flex: 1;
}
.footer__left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__social a {
  display: inline-block;
  font-size: 16px;
  color: #9A9A9A;
  font-weight: 400;
  transition: color 0.3s;
}
.footer__social a:hover {
  color: #F15830;
}
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__contact ul li, .footer__contact ul a {
  font-size: 16px;
  color: #9A9A9A;
  font-weight: 400;
}
.footer__contact ul li a:hover {
  color: #F15830;
}
.footer__right {
  display: flex;
  justify-content: flex-end;
}
.footer__logo {
  max-width: 250px;
  width: 100%;
  height: auto;
}

.copy-right {
  background-color: #000000;
  padding: 20px 0;
  color: #fff;
  border-top: 1px solid #373737;
}
.copy-right .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.copy-right .text p {
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  color: #ddd;
}
.copy-right .text p + p {
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .footer__wrap {
    flex-direction: column;
  }
  .footer__left, .footer__right {
    flex: 1;
  }
  .footer__left {
    gap: 12px;
  }
  .footer__right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .footer-link a span {
    font-size: 16px;
  }
  .footer__logo {
    max-width: 100%;
  }
  .footer-link {
    padding-bottom: 0 !important;
  }
}
.side-panel {
  position: fixed;
  top: 0;
  width: 480px;
  height: 100vh;
  z-index: 300;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.8s ease;
}
.side-panel--right {
  right: 0;
  transform: translateX(100%);
}
.side-panel--left {
  left: 0;
  transform: translateX(-100%);
}
.side-panel--dark {
  background: #F15830;
  color: #fff;
}
.side-panel--dark .side-panel__close {
  color: #fff;
}
.side-panel--light {
  background: #fff;
  color: #F15830;
}
.side-panel.is-active {
  transform: translateX(0);
  visibility: visible;
}
.side-panel__content {
  height: 100%;
  padding: 45px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.side-panel__close {
  position: absolute;
  top: 35px;
  right: 40px;
  width: 45px;
  height: 45px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 20;
}
.side-panel__close span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}
.side-panel__close span:nth-child(1) {
  transform: rotate(45deg);
}
.side-panel__close span:nth-child(2) {
  transform: rotate(-45deg);
}

.adw-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  z-index: 250;
}

body.panel-open .adw-overlay {
  opacity: 1;
  visibility: visible;
}

.menu-logo {
  display: inline-flex;
  margin-bottom: 60px;
}
.menu-logo img {
  width: 40px;
  height: auto;
  display: block;
  object-fit: contain;
}

.menu-nav ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.menu-nav li {
  display: flex;
}
.menu-nav a {
  position: relative;
  width: max-content;
  color: inherit;
  font-size: 24px;
  transition: opacity 0.4s ease;
}
.menu-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 2px;
  background: currentColor;
  opacity: 0.5;
  transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.menu-nav a:hover::after {
  width: 100%;
}

.menu-contact span {
  display: block;
  margin-bottom: 5px;
  color: inherit;
  font-size: 15px;
}
.menu-contact a {
  position: relative;
  display: inline-flex;
  width: max-content;
  color: inherit;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
}
.menu-contact a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 80px;
  height: 2px;
  background: currentColor;
  transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.menu-contact a:hover::after {
  width: 100%;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  padding-right: 10px;
  max-height: calc(100vh - 220px);
}
.filter-list li {
  position: relative;
  padding-bottom: 10px;
  font-size: 17px;
  color: #8E8E8E;
  cursor: pointer;
  transition: color 0.4s ease, font-weight 0.4s ease;
  flex-shrink: 0;
}
.filter-list li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1), background 0.4s ease;
}
.filter-list li:hover {
  color: #F15830;
  font-weight: 600;
}
.filter-list li:hover::after {
  width: 60px;
  background: #F15830;
}
.filter-list li.selected {
  color: #F15830;
  font-weight: 600;
}
.filter-list li.selected::after {
  width: 40px;
  background: #F15830;
}

@media (max-width: 768px) {
  .side-panel {
    width: 100%;
  }
  .side-panel__content {
    padding: 30px 25px 40px;
  }
  .side-panel__close {
    top: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
  }
  .menu-logo {
    margin-bottom: 40px;
  }
  .menu-logo img {
    width: 34px;
  }
  .menu-nav ul {
    gap: 38px;
  }
  .menu-nav a {
    font-size: 24px;
  }
  .menu-contact a {
    font-size: 30px;
  }
  .filter-title {
    font-size: 34px;
  }
  .side-panel__content {
    gap: 80px;
  }
  .side-panel__content .menu-contact {
    margin-bottom: 100px;
  }
}
.swiper {
  width: 100%;
  height: auto;
}
.swiper-slide {
  height: auto;
  display: flex;
}
.swiper-slide .imagen img {
  width: 100%;
  height: auto;
  display: block;
}

.custom-swiper-arrow {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}
.custom-swiper-arrow svg {
  width: 22px;
  height: 22px;
}
.custom-swiper-arrow.secondary {
  background-color: #F15830;
  color: #fff;
}
.custom-swiper-arrow.secondary:hover {
  background-color: rgba(241, 88, 48, 0.6);
}
.custom-swiper-arrow.dark {
  background-color: transparent;
}
.custom-swiper-arrow.dark svg path {
  fill: #000000;
}
.custom-swiper-arrow.dark:hover svg path {
  fill: #F15830;
}
.custom-swiper-arrow.white {
  background-color: transparent;
  color: #F15830;
}
.custom-swiper-arrow.white:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.custom-swiper-arrow.primary {
  background-color: transparent;
}
.custom-swiper-arrow.primary svg path {
  fill: #000000;
}
.custom-swiper-arrow.primary:hover svg path {
  fill: #F15830;
}
.custom-swiper-arrow.light {
  background-color: transparent;
}
.custom-swiper-arrow.light svg path {
  fill: #F3F6F7;
}
.custom-swiper-arrow.light:hover svg path {
  fill: #F15830;
}
.custom-swiper-arrow.bg-light {
  background-color: rgba(243, 246, 247, 0.9);
}
.custom-swiper-arrow.bg-light svg {
  width: 20px;
  height: 20px;
}
.custom-swiper-arrow.bg-light svg path {
  fill: #000000;
}
.custom-swiper-arrow.bg-light:hover svg {
  width: 22px;
  height: 22px;
}
.custom-swiper-arrow.bg-light:hover svg path {
  fill: #F15830;
}
.custom-swiper-arrow.prev.left-20 {
  left: 20px;
}
.custom-swiper-arrow.next.right-20 {
  right: 20px;
}

.nav-outside-swiper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.nav-outside-swiper .custom-swiper-arrow {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  margin: 0;
}

/* HERO */
.adw-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 8% 0;
  position: relative;
  background-color: #fff;
}
.adw-hero--small {
  padding: 90px 0;
  min-height: 100%;
}
.adw-hero--dark {
  background-color: #000000;
}

.hero-content {
  max-width: 900px;
}

.hero-small-title {
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.hero-small-title--medium {
  font-size: 50px;
}
.hero-small-title--small {
  font-size: 40px;
}
.hero-small-title--white {
  color: #fff;
}
.hero-small-title--secondary {
  color: #F15830;
}
.hero-small-title--mb {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .hero-small-title--mb {
    margin-bottom: 40px !important;
  }
}

.hero-title {
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.hero-title--medium {
  font-size: 120px;
}
.hero-title--small {
  font-size: 90px;
}
.hero-title--secondary {
  color: #F15830;
}

.hero-description {
  margin-top: 18px;
  font-size: 32px;
  line-height: 1.3;
  max-width: 600px;
  font-weight: 300;
}
.hero-description--small {
  font-size: 18px;
}

.hero-arrow {
  position: absolute;
  right: 8%;
  bottom: 60px;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.hero-arrow svg {
  width: 50px;
  height: auto;
  animation: bounce 2s infinite;
}
.hero-arrow svg path, .hero-arrow svg circle, .hero-arrow svg rect {
  stroke: #F15830;
}
.hero-arrow:hover {
  transform: translateY(10px);
}

.js-writing-repetitive {
  position: relative;
  display: inline-block;
  min-height: 1.2em;
}

.js-writing-repetitive span {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  border-right: 2px solid currentColor;
  opacity: 0;
}

.js-writing-repetitive span.active {
  opacity: 1;
}

/* animacion */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .adw-hero {
    min-height: 0;
    padding: 20% 0;
  }
  .hero-small-title {
    font-size: clamp(28px, 9vw, 50px);
    margin-bottom: 10px;
    line-height: normal;
  }
  .hero-title {
    font-size: clamp(30px, 10vw, 72px);
    margin-bottom: 8px;
  }
  .hero-title--home {
    font-size: clamp(30px, 12vw, 72px);
    margin-bottom: 4px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-arrow {
    display: none;
  }
}
.hero-banner {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 520px;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-banner.swiper {
  overflow: hidden;
}
.hero-banner__slider {
  width: 100%;
  height: 100%;
}
.hero-banner__item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-banner__item.swiper-slide-active .hero-banner__image img {
  animation: hb-scale-in 8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-banner__item.swiper-slide-active .hero-banner__tag {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.hero-banner__item.swiper-slide-active .hero-banner__title {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.28s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.28s;
}
.hero-banner__item.swiper-slide-active .hero-banner__link {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}
.hero-banner__item.swiper-slide-active .hero-banner__desc {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}
.hero-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-banner__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  will-change: transform;
}
.hero-banner__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.42);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}
.hero-banner__content {
  position: absolute;
  bottom: clamp(72px, 9vw, 100px);
  left: clamp(28px, 5vw, 56px);
  right: clamp(28px, 5vw, 56px);
  z-index: 2;
  pointer-events: none;
}
.hero-banner__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  margin-bottom: 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-banner__title-row {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 16px;
  pointer-events: auto;
}
.hero-banner__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-banner__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  pointer-events: auto;
  transition: background 0.28s cubic-bezier(0.65, 0, 0.35, 1), border-color 0.28s cubic-bezier(0.65, 0, 0.35, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(18px);
}
.hero-banner__link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.28s cubic-bezier(0.65, 0, 0.35, 1);
}
.hero-banner__link:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #0a0a0a;
}
.hero-banner__link:hover svg {
  transform: translate(2px, -2px);
}
.hero-banner__desc {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  max-width: 400px;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-banner__footer {
  position: absolute;
  bottom: clamp(24px, 3.5vw, 38px);
  left: clamp(28px, 5vw, 56px);
  right: clamp(28px, 5vw, 56px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hero-banner__pagination {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex: 1;
}
.hero-banner__pagination .swiper-pagination-bullet {
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.22);
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
  transition: background 0.28s cubic-bezier(0.65, 0, 0.35, 1), width 0.28s cubic-bezier(0.65, 0, 0.35, 1);
}
.hero-banner__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ffffff;
  width: 56px;
}
.hero-banner__counter {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
.hero-banner__counter-current {
  color: #ffffff;
  font-size: 13px;
}
.hero-banner__counter-sep {
  opacity: 0.4;
}
.hero-banner__navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.hero-banner__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  transition: background 0.28s cubic-bezier(0.65, 0, 0.35, 1), border-color 0.28s cubic-bezier(0.65, 0, 0.35, 1), color 0.28s cubic-bezier(0.65, 0, 0.35, 1);
}
.hero-banner__arrow svg {
  width: 17px;
  height: 17px;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.65, 0, 0.35, 1);
}
.hero-banner__arrow:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #0a0a0a;
}
.hero-banner__arrow--prev:hover svg {
  transform: translateX(-2px);
}
.hero-banner__arrow--next:hover svg {
  transform: translateX(2px);
}
.hero-banner__arrow.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .hero-banner {
    height: 72vh;
  }
}
@media screen and (max-width: 768px) {
  .hero-banner {
    height: 70vh;
    border-radius: 8px;
  }
  .hero-banner__content {
    bottom: clamp(64px, 12vw, 90px);
    left: 24px;
    right: 24px;
  }
  .hero-banner__footer {
    bottom: 20px;
    left: 24px;
    right: 24px;
    gap: 16px;
  }
  .hero-banner__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .hero-banner__title-row {
    gap: 14px;
  }
  .hero-banner__link {
    width: 40px;
    height: 40px;
  }
  .hero-banner__link svg {
    width: 15px;
    height: 15px;
  }
  .hero-banner__desc {
    display: none;
  }
  .hero-banner__arrow {
    width: 38px;
    height: 38px;
  }
  .hero-banner__arrow svg {
    width: 15px;
    height: 15px;
  }
  .hero-banner__counter {
    font-size: 11px;
  }
}
@media screen and (max-width: 480px) {
  .hero-banner {
    height: 65vh;
    min-height: 400px;
  }
  .hero-banner__pagination .swiper-pagination-bullet {
    width: 22px;
  }
  .hero-banner__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px;
  }
}

@keyframes hb-scale-in {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}
.publication-item {
  padding: 40px;
  border-left: 1px solid rgba(244, 244, 244, 0.25);
  display: flex;
  flex-direction: column;
  gap: 60px;
  justify-content: space-between;
}
.publication-item__title {
  font-size: 26px;
  color: #fff;
  margin-bottom: 20px;
}
.publication-item__title:hover {
  opacity: 0.7;
}
.publication-item__text {
  font-size: 15px;
  color: #9A9A9A;
}
.publication-item__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.publication-item__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.publication-item__category {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.4s ease;
}
.publication-item:hover .publication-item__category {
  color: rgba(255, 255, 255, 0.55);
}

/* ===========================
   SECCIONES
=========================== */
/* DEMO */
.demo-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  background: #fff;
}
.demo-section.dark {
  background: #111;
  color: #fff;
}

.services {
  background: #000000;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.services__top {
  margin-bottom: 80px;
}
.services__label {
  position: relative;
  color: #F15830;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.services__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 34px;
  height: 1px;
  background: #F15830;
}
.services__item {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.services__item.active .services__title {
  color: var(--service-color);
}
.services__item.active .services__list {
  height: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.services__item.active .services__icon {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.services__link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
  padding: 60px 0;
}
.services__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 120px;
}
.services__title {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 0.9;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
  transition: 0.35s ease;
  flex: 1;
}
.services__right {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  flex: 1;
}
.services__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: auto;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: height 0.45s ease, opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}
.services__list-item {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.2;
}
.services__icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}
.services__icon::before, .services__icon::after {
  content: "";
  position: absolute;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.services__icon {
  /* HORIZONTAL */
}
.services__icon::before {
  width: 100%;
  height: 2px;
}
.services__icon {
  /* VERTICAL */
}
.services__icon::after {
  width: 2px;
  height: 100%;
}

/* =========================
   MOBILE
========================= */
@media screen and (max-width: 991px) {
  .services__container {
    width: calc(100% - 40px);
  }
  .services__top {
    margin-bottom: 50px;
  }
  .services__link {
    padding: 40px 0;
  }
  .services__content {
    flex-direction: column;
    gap: 30px;
    position: relative;
  }
  .services__right {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  .services__title {
    font-size: 52px;
  }
  .services__list {
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
  }
  .services__item.active .services__list {
    height: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .services__icon {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: absolute !important;
    top: 0;
    right: 0;
  }
  .services__cursor {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .services__title {
    font-size: 30px;
  }
  .services__list-item {
    font-size: 16px;
  }
}
/* 
* PAGES SERVICIOS
*/
.adw-services {
  position: relative;
  background-color: #fff;
}

.service-card {
  --service-bg: #FFFFFF;
  --service-color: #111111;
  --service-accent: #F15830;
  --service-text: rgba(17,17,17,.7);
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0;
  background: var(--service-bg);
  color: var(--service-color);
  z-index: 1;
}
.service-card:nth-child(1) {
  z-index: 1;
}
.service-card:nth-child(2) {
  z-index: 2;
}
.service-card:nth-child(3) {
  z-index: 3;
}
.service-card:nth-child(4) {
  z-index: 4;
}
.service-card--dark {
  --service-bg: #000000;
  --service-color: #FFFFFF;
  --service-accent: #FFFFFF;
  --service-text: rgba(255,255,255,.65);
}
.service-card--secondary {
  --service-bg: #F15830;
  --service-color: #FFFFFF;
  --service-accent: #FFFFFF;
  --service-text: rgba(255,255,255,.75);
}
.service-card__row {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  width: 100%;
  align-items: end;
}
.service-card__title {
  position: sticky;
  top: 120px;
  align-self: start;
}
.service-card__title h2 {
  font-size: clamp(30px, 4.3vw, 92px);
  font-weight: bold;
  letter-spacing: -0.05em;
  color: var(--service-color);
}
.service-card__content {
  width: 100%;
}
.service-card__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 70px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-card__item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0.9;
}
.service-card__subtitle {
  position: relative;
  color: var(--service-accent);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.service-card__text {
  max-width: 320px;
  color: var(--service-text);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
}
@media (max-width: 991px) {
  .service-card {
    min-height: auto;
    padding: 100px 0;
    position: relative;
  }
  .service-card__row {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .service-card__title {
    position: relative;
    top: initial;
  }
}
@media (max-width: 767px) {
  .service-card {
    padding: 100px 0;
  }
  .service-card:nth-child(1) {
    padding-top: 20px !important;
  }
  .service-card__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-card__subtitle {
    font-size: 18px;
  }
  .service-card__text {
    max-width: 100%;
    font-size: 15px;
  }
}

.latest-project {
  background-color: #000000;
  position: relative;
  color: #fff;
}
.latest-project__top {
  margin-bottom: 80px;
}
.latest-project__label {
  position: relative;
  color: #F15830;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.latest-project__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 34px;
  height: 1px;
  background: #F15830;
}

.project__top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: space-between;
}
.project__title {
  font-size: 40px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .project__title {
    font-size: 26px;
  }
}
.project__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 40px;
}

.block-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.block-video__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: none;
}
.block-video__embed,
.block-video iframe,
.block-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.block-video__embed {
  z-index: 2;
  overflow: hidden;
}
.block-video__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  transition: opacity 0.5s ease-in-out;
  object-fit: cover;
  pointer-events: none;
}
.block-video__video {
  z-index: 2;
  object-fit: cover;
}
.block-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 3;
  pointer-events: none;
}
.block-video.is-loaded .block-video__poster {
  opacity: 0;
  visibility: hidden;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.projects {
  /*
  |--------------------------------------------------------------------------
  | DESKTOP / MOBILE WRAPPERS
  |--------------------------------------------------------------------------
  */
}
.projects__desktop {
  display: block;
}
.projects__mobile {
  display: none;
}
.projects {
  /*
  |--------------------------------------------------------------------------
  | ITEM
  |--------------------------------------------------------------------------
  */
}
.projects__item {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 420px;
  text-decoration: none;
  background: #DDD;
}
.projects__item:hover .projects__image {
  transform: scale(1.06);
}
.projects__item:hover .projects__overlay {
  opacity: 1;
}
.projects__item:hover .projects__content {
  opacity: 1;
  transform: translateY(0);
}
.projects__item:hover .projects__plus {
  transform: rotate(90deg);
}
.projects {
  /*
  |--------------------------------------------------------------------------
  | SIZES
  |--------------------------------------------------------------------------
  */
}
.projects__item--large {
  grid-column: span 12;
  min-height: 600px;
}
.projects__item--wide {
  grid-column: span 8;
  min-height: 520px;
}
.projects__item--small {
  grid-column: span 4;
  min-height: 520px;
}
.projects {
  /*
  |--------------------------------------------------------------------------
  | IMAGE
  |--------------------------------------------------------------------------
  */
}
.projects__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.projects {
  /*
  |--------------------------------------------------------------------------
  | OVERLAY
  |--------------------------------------------------------------------------
  */
}
.projects__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.projects {
  /*
  |--------------------------------------------------------------------------
  | CONTENT
  |--------------------------------------------------------------------------
  */
}
.projects__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.projects__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.projects {
  /*
  |--------------------------------------------------------------------------
  | TAGS
  |--------------------------------------------------------------------------
  */
}
.projects__tags {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.projects__tag {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #000000;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.projects {
  /*
  |--------------------------------------------------------------------------
  | TITLE
  |--------------------------------------------------------------------------
  */
}
.projects__title {
  color: #FFF;
  font-size: clamp(24px, 2vw, 42px);
  font-weight: 500;
  line-height: 1;
}
.projects {
  /*
  |--------------------------------------------------------------------------
  | PLUS
  |--------------------------------------------------------------------------
  */
}
.projects__plus {
  transition: transform 0.5s ease;
}
.projects__plus svg {
  width: 30px;
  height: 30px;
}
.projects__plus svg path {
  fill: #fff;
}
.projects {
  /*
  |--------------------------------------------------------------------------
  | BOTTOM
  |--------------------------------------------------------------------------
  */
}
.projects__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 40px;
}
.projects {
  /*
  |--------------------------------------------------------------------------
  | TABLET
  |--------------------------------------------------------------------------
  */
}
@media (max-width: 991px) {
  .projects__item--large, .projects__item--wide, .projects__item--small {
    grid-column: span 12;
  }
  .projects__item--large {
    min-height: 520px;
  }
  .projects__item--wide, .projects__item--small {
    min-height: 420px;
  }
  .projects {
    /*
    |--------------------------------------------------------------------------
    | TOUCH
    |--------------------------------------------------------------------------
    */
  }
  .projects__overlay {
    opacity: 1;
  }
  .projects__content {
    opacity: 1;
    transform: translateY(0);
  }
}
.projects {
  /*
  |--------------------------------------------------------------------------
  | MOBILE
  |--------------------------------------------------------------------------
  */
}
@media (max-width: 767px) {
  .projects {
    padding-top: 0 !important;
    /*
    |--------------------------------------------------------------------------
    | SWITCH
    |--------------------------------------------------------------------------
    */
  }
  .projects__desktop {
    display: none;
  }
  .projects__mobile {
    display: block;
  }
  .projects {
    /*
    |--------------------------------------------------------------------------
    | ITEM
    |--------------------------------------------------------------------------
    */
  }
  .projects__item {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 0.75;
    overflow: hidden;
  }
  .projects__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  .projects__overlay {
    opacity: 1;
  }
  .projects__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 24px;
    opacity: 1;
    transform: translateY(0);
  }
  .projects__title {
    font-size: 24px;
  }
  .projects__plus svg {
    width: 22px;
    height: 22px;
  }
  .projects {
    /*
    |--------------------------------------------------------------------------
    | NAVIGATION
    |--------------------------------------------------------------------------
    */
  }
  .projects__navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
  }
  .projects .swiper-pagination {
    position: relative;
    inset: initial;
    width: auto;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .projects .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
  }
  .projects .swiper-pagination-bullet-active {
    background: #000;
  }
}

/* =========================================================
PROJECTS
========================================================= */
.adw-projects__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.4rem;
}
.adw-projects__filter {
  display: flex;
  margin-bottom: 40px;
  align-items: center;
  justify-content: space-between;
}
.adw-projects__filter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #F15830;
  font-weight: 500;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: 0;
}
.adw-projects__filter-btn svg {
  width: 22px;
  height: 22px;
}
.adw-projects__filter-btn svg path {
  fill: #F15830;
}
.adw-projects__filter-active {
  font-size: 14px;
  color: #838382;
  font-weight: 400;
  display: inline-block;
  position: relative;
  padding-left: 10px;
}
.adw-projects__filter-active::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #F15830;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.projects-card {
  grid-column: span 4;
  height: 100%;
}
.projects-card--large {
  grid-column: span 12;
  grid-row: span 1;
}
.projects-card--large .projects-card__media {
  min-height: 600px;
  max-height: 600px;
}
.projects-card--wide {
  grid-column: span 8;
}
.projects-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.projects-card__media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: 520px;
  flex: 1;
  overflow: hidden;
  background: #f3f3f3;
}
.projects-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.04);
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 1;
}
.projects-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* evita micro saltos */
  transform: scale(1.001);
  /* zoom premium */
  transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1), filter 0.8s ease;
  will-change: transform;
  backface-visibility: hidden;
}
.projects-card__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.4rem;
}
.projects-card__info {
  flex: 1;
}
.projects-card__categories {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 15px;
}
.projects-card__categories .category {
  display: block;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: #9A9A9A;
}
.projects-card__title {
  font-size: 1.5rem;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.projects-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}
.projects-card__icon svg {
  width: 30px;
  height: 30px;
}
.projects-card__icon {
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease;
}
.projects-card:hover .projects-card__media img {
  transform: scale(1.045);
}
.projects-card:hover .projects-card__media::after {
  opacity: 1;
}
.projects-card:hover .projects-card__icon {
  transform: rotate(90deg);
}
.projects-card:hover .projects-card__icon svg path {
  fill: #F15830;
}

@media (max-width: 991px) {
  .adw-projects__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 28rem;
  }
  .projects-card,
  .projects-card--large,
  .projects-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .projects-card__title {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .adw-projects__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 34rem;
    gap: 4rem;
  }
  .projects-card,
  .projects-card--large,
  .projects-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .projects-card__title {
    font-size: 1.6rem;
  }
  .projects-card__content {
    padding-top: 1.2rem;
  }
  .projects-card__icon {
    font-size: 1.8rem;
  }
  .projects-card__media {
    min-height: 480px !important;
    max-height: 480px !important;
  }
}
.projects-related {
  position: relative;
  background-color: #fff;
}

.clients {
  background-color: #000000;
  position: relative;
  color: #fff;
}
.clients__top {
  margin-bottom: 80px;
}
.clients__label {
  position: relative;
  color: #F15830;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.clients__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 34px;
  height: 1px;
  background: #F15830;
}
.clients {
  /* =========================================
     HEADER
  ========================================= */
}
.clients__header {
  max-width: 920px;
  margin-bottom: 100px;
}
.clients__title {
  color: #FFF;
  font-size: clamp(38px, 9vw, 54px);
  font-weight: 500;
  line-height: 1.05;
}
.clients__title span {
  color: #F15830;
}
@media (max-width: 767px) {
  .clients__title {
    line-height: normal;
  }
}
.clients {
  /* =========================================
     GRID
  ========================================= */
}
.clients__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px 50px;
}
.clients {
  /* =========================================
     ITEM
  ========================================= */
}
.clients__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  overflow: hidden;
}
.clients__item img {
  width: 100%;
  height: auto;
  max-width: 180px;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}
.clients__item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
  opacity: 1;
}
.clients {
  /* =========================================
     HIDDEN ITEMS
  ========================================= */
}
.clients__item.is-hidden {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
  visibility: hidden;
  position: absolute;
}
.clients {
  /*
  |--------------------------------------------------------------------------
  | MOBILE SWIPER
  |--------------------------------------------------------------------------
  */
}
.clients__slider {
  display: none;
}
.clients__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients__slide img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(100%);
}
.clients {
  /*
  |--------------------------------------------------------------------------
  | ITEM
  |--------------------------------------------------------------------------
  */
}
.clients__marquee-item {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients__marquee-item img {
  width: 100%;
  height: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(100%);
}
.clients {
  /* =========================================
     BOTTOM
  ========================================= */
}
.clients__bottom {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.clients____toggle {
  transition: opacity 0.3s ease;
}
.clients____toggle:hover {
  opacity: 0.7;
}
.clients {
  /* =========================================
     RESPONSIVE
  ========================================= */
}
@media (max-width: 1200px) {
  .clients__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991px) {
  .clients__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .clients__grid {
    display: none;
  }
  .clients__slider {
    display: block;
    overflow: hidden;
  }
  .clients .swiper-slide {
    width: auto;
  }
  .clients__header {
    margin-bottom: 50px;
  }
  .clients__slider .swiper-wrapper {
    transition-timing-function: linear !important;
  }
}

.publications {
  background-color: #000000;
  position: relative;
  color: #fff;
}
.publications__top {
  margin-bottom: 80px;
}
.publications__top--flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.publications__label {
  position: relative;
  color: #F15830;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.publications__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 34px;
  height: 1px;
  background: #F15830;
}
.publications__bottom {
  margin-top: 30px;
}

.adw-form {
  position: relative;
}
.adw-form__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}
@media (max-width: 767px) {
  .adw-form__wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.adw-form__text {
  font-size: 20px;
  color: #000000;
  line-height: 30px;
  margin-bottom: 50px;
  max-width: 500px;
}
@media (max-width: 767px) {
  .adw-form__text {
    font-size: 17px;
    line-height: 26px;
  }
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .contact-items {
    gap: 12px;
  }
}
.contact-items__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.contact-items__icon {
  width: 24px;
}
.contact-items__icon svg {
  width: 24px;
  height: 24px;
}
.contact-items__icon svg path {
  fill: #000000;
}
.contact-items__value {
  width: calc(100% - 24px - 14px);
}
.contact-items__value span {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}
@media (max-width: 767px) {
  .contact-items__value span {
    font-size: 15px;
  }
}
.contact-items__value a:hover span {
  color: #F15830;
}

.contact-form {
  width: 100%;
}
.contact-form__group {
  position: relative;
  margin-bottom: 40px;
}
.contact-form__input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  background: transparent;
  padding: 9px 0;
  color: #111;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  outline: none;
  transition: border-color 0.4s ease, color 0.4s ease;
  resize: none;
  appearance: none;
}
.contact-form__input:focus {
  border-color: #F15830;
}
.contact-form__input--textarea {
  min-height: 120px;
}
.contact-form__input::placeholder {
  opacity: 0;
}
.contact-form__input:focus ~ .contact-form__label, .contact-form__input:not(:placeholder-shown) ~ .contact-form__label {
  transform: translateY(-18px);
  font-size: 14px;
  color: #F15830;
  opacity: 1;
}
.contact-form__label {
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), font-size 0.45s cubic-bezier(0.19, 1, 0.22, 1), color 0.35s ease, opacity 0.35s ease;
  transform-origin: left top;
}
.contact-form__error {
  color: #F15830;
  font-size: 13px;
}
.contact-form__button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 0;
  padding: 14px 30px;
  border-radius: 999px;
  background: #F15830;
  color: #FFF;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), background 0.35s ease;
}
.contact-form__button.disabled {
  opacity: 0.7;
  pointer-events: none;
  cursor: not-allowed;
}
.contact-form__button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.contact-form__button svg path {
  fill: #fff;
}
.contact-form__button:hover {
  transform: translateY(-3px);
}
.contact-form__button:hover svg {
  transform: translateX(4px) translateY(-4px);
}
@media (max-width: 991px) {
  .contact-form__group {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .contact-form__group {
    margin-bottom: 50px;
  }
  .contact-form__input {
    padding-bottom: 18px;
    font-size: 15px;
  }
  .contact-form__input--textarea {
    min-height: 90px;
  }
  .contact-form__input:focus ~ .contact-form__label, .contact-form__input:not(:placeholder-shown) ~ .contact-form__label {
    transform: translateY(-30px);
    font-size: 13px;
  }
  .contact-form__label {
    font-size: 15px;
  }
  .contact-form__button {
    width: 100%;
    justify-content: center;
  }
}

.methodology {
  position: relative;
  background: #000;
  color: #fff;
  overflow: visible;
}
.methodology__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 520px;
  gap: 120px;
  align-items: flex-start;
}
.methodology__intro {
  position: sticky;
  top: 120px;
  align-self: start;
  height: fit-content;
  will-change: transform;
}
.methodology__title {
  max-width: 620px;
  font-size: clamp(33px, 3vw, 78px);
  font-weight: 400;
  text-wrap: balance;
}
.methodology__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 160px;
  padding-left: 90px;
}
.methodology__steps::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
}
.methodology__progress {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 2px;
  height: 220px;
  background: #F15830;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), height 0.3s ease;
  will-change: transform;
}
.methodology__progress::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 10px;
  height: 100%;
  background: rgba(241, 88, 48, 0.15);
  filter: blur(10px);
}

.methodology-card {
  position: relative;
  min-height: 240px;
  opacity: 0.15;
  transform: translateY(80px);
  transition: opacity 0.9s ease, transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.methodology-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.methodology-card__number {
  display: block;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(76px, 7vw, 140px);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.05em;
}
.methodology-card__title {
  margin-bottom: 14px;
  color: #F15830;
  font-size: clamp(30px, 2vw, 48px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.methodology-card__text {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .methodology__grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .methodology__intro {
    position: relative;
    top: initial;
  }
}
@media (max-width: 767px) {
  .methodology {
    padding: 90px 0;
  }
  .methodology__top {
    margin-bottom: 50px;
  }
  .methodology__grid {
    gap: 60px;
  }
  .methodology__steps {
    gap: 80px;
    padding-left: 40px;
  }
  .methodology__title {
    font-size: clamp(38px, 9vw, 54px);
  }
  .methodology-card {
    min-height: auto;
  }
  .methodology-card__number {
    margin-bottom: 20px;
    font-size: 72px;
  }
  .methodology-card__title {
    font-size: 30px;
  }
  .methodology-card__text {
    font-size: 15px;
  }
}
.adw-gallery {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.adw-gallery--full .adw-gallery__grid {
  padding: 0 40px;
}
.adw-gallery__top {
  margin-bottom: 50px;
}
.adw-gallery__title {
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 600;
  line-height: 1;
}
.adw-gallery__grid {
  display: grid;
  gap: var(--gap-gallery);
}
.adw-gallery {
  /* GRID */
}
.adw-gallery--grid-1 .adw-gallery__grid {
  grid-template-columns: 1fr;
}
.adw-gallery--grid-2 .adw-gallery__grid {
  grid-template-columns: repeat(2, 1fr);
}
.adw-gallery--grid-3 .adw-gallery__grid {
  grid-template-columns: repeat(3, 1fr);
}
.adw-gallery--grid-4 .adw-gallery__grid {
  grid-template-columns: repeat(4, 1fr);
}

/* =========================================================
CARD
========================================================= */
.adw-gallery-card {
  position: relative;
  overflow: hidden;
}
.adw-gallery-card:hover .adw-gallery-card__image {
  transform: scale(1.025);
}
.adw-gallery-card__media {
  position: relative;
  width: 100%;
}
.adw-gallery-card__image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  transition: transform 2.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

/* =========================================================
RESPONSIVE
========================================================= */
@media (max-width: 991px) {
  .adw-gallery--grid-4 .adw-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .adw-gallery--grid-3 .adw-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .adw-gallery {
    padding: 20px 0;
  }
  .adw-gallery__grid {
    gap: 16px;
  }
  .adw-gallery--grid-2 .adw-gallery__grid, .adw-gallery--grid-3 .adw-gallery__grid, .adw-gallery--grid-4 .adw-gallery__grid {
    grid-template-columns: 1fr;
  }
  .adw-gallery-card {
    aspect-ratio: auto;
  }
  .adw-gallery-card__image {
    height: auto;
    display: block;
  }
}
.adw-parallax {
  position: relative;
  height: 80vh;
}
.adw-parallax__bg {
  position: fixed;
  inset: -8%;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.adw-parallax__bg--visible {
  opacity: 1;
}
.adw-parallax__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 20%, rgba(5, 4, 2, 0.48) 100%), linear-gradient(to top, var(--clr-ov-bot) 0%, transparent 50%), linear-gradient(to bottom, var(--clr-ov-top) 0%, transparent 32%);
  z-index: 1;
  pointer-events: none;
}
.adw-parallax__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
}
.adw-parallax__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform;
}
.adw-parallax__bg-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.adw-parallax__overlay {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
.adw-parallax__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.88);
  animation: logoReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.adw-parallax__logo img {
  width: clamp(140px, 22vw, 280px);
  height: auto;
  filter: drop-shadow(0 4px 32px rgba(0, 0, 0, 0.5));
}

.adw-parallax--light .adw-parallax__logo svg {
  filter: drop-shadow(0 2px 12px rgba(255, 255, 255, 0.2));
}

@media (max-width: 767px) {
  .adw-parallax {
    height: 70vh;
  }
  .adw-parallax__bg {
    inset: 0;
  }
  .adw-parallax__bg-img img {
    object-position: center center;
  }
}
@keyframes logoReveal {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px) translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}
@keyframes arrowPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.3);
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* =========================================================
MASONRY
========================================================= */
.adw-gallery.masonry .adw-gallery__masonry {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap-gallery);
}
.adw-gallery.masonry .adw-gallery-card {
  position: relative;
  overflow: hidden;
  background: #EEE;
  height: 550px;
  /* 33% */
}
.adw-gallery.masonry .adw-gallery-card.span-2 {
  grid-column: span 2;
}
.adw-gallery.masonry .adw-gallery-card {
  /* 50% */
}
.adw-gallery.masonry .adw-gallery-card.span-3 {
  grid-column: span 3;
  height: auto;
}
.adw-gallery.masonry .adw-gallery-card {
  /* 66% */
}
.adw-gallery.masonry .adw-gallery-card.span-4 {
  grid-column: span 4;
}
.adw-gallery.masonry .adw-gallery-card {
  /* 100% */
}
.adw-gallery.masonry .adw-gallery-card.span-6 {
  grid-column: span 6;
  height: auto;
}
.adw-gallery.masonry .adw-gallery-card:hover .adw-gallery-card__image {
  transform: scale(1.025);
}
.adw-gallery.masonry .adw-gallery-card__image {
  width: 100%;
  height: 100%;
  display: block;
}
.adw-gallery.masonry .adw-gallery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 2.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

@media (max-width: 991px) {
  .adw-gallery.masonry .adw-gallery__masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .adw-gallery.masonry .adw-gallery-card {
    height: auto;
  }
  .adw-gallery.masonry .adw-gallery-card.span-2, .adw-gallery.masonry .adw-gallery-card.span-3, .adw-gallery.masonry .adw-gallery-card.span-4, .adw-gallery.masonry .adw-gallery-card.span-6 {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .adw-gallery.masonry .adw-gallery__masonry {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .adw-gallery.masonry .adw-gallery-card.span-2, .adw-gallery.masonry .adw-gallery-card.span-3, .adw-gallery.masonry .adw-gallery-card.span-4, .adw-gallery.masonry .adw-gallery-card.span-6 {
    grid-column: span 1;
  }
}
.single-intro__title {
  font-size: 100px;
  color: #000000;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}
.single-intro__title span {
  color: #F15830;
}
.single-intro__content {
  margin-top: 60px;
}
.single-intro__categories {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 14px;
}
.single-intro__categories span {
  display: block;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: #9A9A9A;
}
.single-intro__categories span.divisor {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #F15830;
}
.single-intro__description {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  max-width: 600px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .single-intro__title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .single-intro__title {
    font-size: 30px;
  }
  .single-intro__description {
    font-size: 15px;
  }
}
.video-block {
  width: 100%;
}

.video-block__grid {
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  gap: var(--gap);
}

.video-card {
  width: 100%;
}

.video-card__media {
  position: relative;
  overflow: hidden;
  background: #000;
}

.video-card.ratio-landscape .video-card__media {
  aspect-ratio: 16/9;
}

.video-card.ratio-portrait .video-card__media {
  aspect-ratio: 9/16;
}

.video-card.ratio-square .video-card__media {
  aspect-ratio: 1/1;
}

/* MEJOR RENDIMIENTO */
.video-card video,
.video-card iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
  pointer-events: none;
}

@media (max-width: 991px) {
  .video-block__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 767px) {
  .video-block__grid {
    grid-template-columns: 1fr !important;
  }
}
.posts-grid {
  background: #000000;
  overflow: hidden;
}

.posts-grid__wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: 42px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.5s ease, border-color 0.4s ease;
}

.post-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 0%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #F15830 0%, #D94720 50%, #9E2F12 100%);
  transition: height 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.post-card:hover::before {
  height: 100%;
}

.post-card:hover {
  transform: translateY(-6px);
  border-left-color: transparent;
}

.post-card__link {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.post-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.post-card__category {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.4s ease;
}

.post-card:hover .post-card__category {
  color: rgba(255, 255, 255, 0.55);
}

.post-card__title {
  max-width: 580px;
  font-size: clamp(28px, 2vw, 42px);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 28px;
}

.post-card__excerpt {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.post-card__button {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

.post-card:hover .link {
  color: #F15830;
}
.post-card:hover .link::after {
  background-color: #F15830;
  width: 50%;
}

.posts-grid__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.posts-grid__filter {
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  transition: border-color 0.4s ease, color 0.4s ease, background 0.4s ease;
}

.posts-grid__filter:hover,
.posts-grid__filter.active {
  border-color: rgba(241, 88, 48, 0.3);
  color: #F15830;
  background: rgba(241, 88, 48, 0.04);
}

@media (max-width: 991px) {
  .posts-grid__wrapper {
    grid-template-columns: 1fr;
  }
  .post-card {
    min-height: auto;
    padding: 30px;
  }
  .posts-grid__filters {
    margin-bottom: 30px;
  }
}
/* single */
.post-hero {
  background: #000000;
  overflow: hidden;
}

.post-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.post-hero__share {
  display: flex;
  align-items: center;
  gap: 20px;
}

.post-hero__share-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.post-hero__share-items {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-hero__share-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100%;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  transition: border-color 0.4s ease, color 0.4s ease, transform 0.4s ease, background 0.4s ease;
}

.post-hero__share-link i {
  font-size: 16px;
}

.post-hero__share-link:hover {
  color: #F15830;
  border-color: rgba(241, 88, 48, 0.28);
  background: rgba(241, 88, 48, 0.04);
  transform: translateY(-4px);
}

/* META */
.post-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.post-hero__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-hero__category {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.post-hero__date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

/* TITLE */
.post-hero__title {
  max-width: 100%;
  font-size: clamp(30px, 5vw, 100px);
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #fff;
}

@media (max-width: 991px) {
  .post-hero__top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 30px;
  }
  .post-hero__share {
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
