/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}


.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
  .dnd-section {
      padding: 62px 1rem;
  }
}

@media (max-width: 572px) {
  .dnd-section {
      padding: 48px 1rem;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

/* Typography Polishing */

h1, .h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1e293b;
}

h2, .h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #334155;
}

h3, .h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.4;
  color: #475569;
}

p, .p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #fff;
}

a {
  color: #4f46e5;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #6366f1;
  text-decoration: underline;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

/* Polished Button Styles */

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #4f46e5;
  color: #ffffff;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background-color: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
/* BODY */

body {
    background-color: #1c1c1c;
}

/* GENERAL */

.padding-global {
  padding: 0 2.5rem;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.padding-section-large {
  padding-top: 8rem;
padding-bottom: 8rem;
}

.holding-page-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* HEADER */
.header-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 2rem;
  /* background: rgba(0, 0, 0, 0.5); color de fondo semitransparente 
  backdrop-filter: blur(10px);  efecto de blur detrás del header 
  -webkit-backdrop-filter: blur(10px); compatibilidad con Safari */
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start; /*cambiar a space-between al sacar holding-page*/
  align-items: center;
}

svg#creamos-logo {
    margin-top: 12px;
    width: 150px;
}

.lang_switcher_class {
    position: relative !important;
    display: flex !important;
    gap: 0.5rem !important;
    align-items: center !important;
}

.lang_switcher_class:after {
    content: 'Language';
}

.globe_class {
  background-color: #fff;
}

.lang_list_class li {
    position: relative !important;
    line-height: 1 !important;
    font-size: 13px !important;
    padding: 0 15px 10px !important;
    color: #fff !important;
    background-color: #000 !important;
}

.lang_list_class li a {
    text-decoration: none !important;
    color: #fff !important;
    cursor: pointer !important;
    word-break: normal !important;
}

.lang_list_class li:first-child {
    padding-top: 15px !important;
    border-top: 1px solid #000 !important;
}

.lang_list_class:after, .lang_list_class:before {
    content: none !important;
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    width: 0 !important;
    height: 0 !important;
    margin-left: -12px !important;
}

.header-logo img {
  height: 64px;
}

/* Estructura general del nav */
.header-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem; /* Espaciado entre items */
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Estilos generales de los ítems */
.header-nav .hs-menu-item a {
  color: white;
  text-decoration: none;
  font-family: inherit;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  padding: 0.5rem 1rem;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Separadores entre ítems (agregamos con pseudoelemento) */
.header-nav .hs-menu-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: white;
  margin-left: 1.5rem;
}

/* Último ítem como botón delineado */
.header-nav .hs-menu-item:last-child a {
  border: 1px solid white;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
}

/* Hover opcional */
.header-nav .hs-menu-item a:hover {
  opacity: 0.8;
}

/* Hamburguesa oculta en desktop */
.header-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
}

.header-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: white;
}



/* Ocultar el menú en mobile inicialmente */
@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: absolute;
    justify-content: center;
    top: 98%;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    z-index: 40;
  }

  .header-nav.open {
    display: flex;
    background-color: black;
  }

  .header-wrapper.open {
    background-color: black;
  }

  .header-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem; /* Espaciado entre items */
  list-style: none;
  padding: 0;
  margin: 0;
  }

  .header-toggle {
    display: flex;
  }

  .header-container {
   justify-content: center;
    align-items: center;
  }

  /* Separadores entre ítems (agregamos con pseudoelemento) */
  .header-nav .hs-menu-item:not(:last-child)::after {
    content: "";
    display:none;
    width: 1px;
    height: 16px;
    background-color: white;
    margin-left: 1.5rem;
  }
  svg#creamos-logo {
    margin-top: 12px;
    width: 130px;
  }
}
    

/* Holding page styles */
.hp-header-wrapper {
  width: 100%;
  position: fixed;
  top: 10%;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 2rem;
}

.hp-header-container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}






/* Logo scroll animation */
#tagline,
    #wordmark {
      transition: opacity 1s ease;
      opacity: 1;
    }

    .isHidden #tagline,
    .isHidden #wordmark {
      opacity: 0;
    }

    /* Overlay animation with sweeping shadow effect */
    #tagline::after,
    #wordmark::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
      pointer-events: none;
      opacity: 0;
      transition: opacity 1s ease, transform 1s ease;
      transform: translateX(100%);
    }

    .shadow-sweep #tagline::after,
    .shadow-sweep #wordmark::after {
      opacity: 1;
      transform: translateX(0);
    }

    /* For correct positioning */
    #tagline,
    #wordmark {
      position: relative;
    }



@media (max-width: 572px) {
    .header-wrapper {
      background: linear-gradient(to bottom, rgba(28, 28, 28, 0.9), /* #1c1c1c with 80% opacity */ rgba(28, 28, 28, 0));
  }
  #sticky-header {
    will-change: transform;
      z-index: 1000;
  }
  svg#creamos-logo {
    margin-top: 12px;
    width: 115px;
  }
}
/* ───────────────────────────────────────────
   Estructura general del footer
──────────────────────────────────────────── */
.footer-sections-wrapper {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}

.intersection-observer .footer-content {
  z-index: 200;
  background: #1c1c1c;
  border-radius: 1rem 1rem 0 0;
  transition: box-shadow .3s;
}

.onview .footer-content {
  //box-shadow: inset -1px 0px 0px 0px #5565ff, inset 1px 0px 0px #b5b5b5, 0 0 20px #fff, -10px 0 80px #5565ff, 10px 0 80px #5565ff;
  //transition: box-shadow .3s;
}

.footer-row-content {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-bottom: 4rem;
  align-items: stretch;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* ───────────────────────────────────────────
   Logo
──────────────────────────────────────────── */

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  width: 14.5rem;
}

.footer-logo {
  max-height: 100%;
  width: 100%;
}

@media (max-width: 1300px) {
  .footer-logo-wrapper {
    display: none;
  }
}

/* ───────────────────────────────────────────
   Sección de oficinas
──────────────────────────────────────────── */

.footer-contact-heading {
  font-size: 3rem;
}

.footer-contact-column {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
}

/* Offices grid */
.footer-contact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 1rem;
  justify-content: center;
  align-items: center;
  align-content: center;
}

/* Single office card */
.office {
  display: flex;
  flex-direction: column;
}

.office-title {
  margin-bottom: auto;
}

/* Contact links */
.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 0; /* Eliminamos padding-left porque el ícono está inline */
  padding-top: 6px;
  color: #c0c0c0;
  text-decoration: none;
  position: relative;
}

.contact-item:hover {
  text-decoration: none;
}

/* Hover underline only on the text */
.hover-underline-animation span {
  position: relative;
}

.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.hover-underline-animation:hover {
  text-decoration: none;
  color: #fff;
}

/* Icon images */
.contact-icon {
  height: 16px;
  width: auto;
  vertical-align: middle;
}


/* Responsive */
@media (max-width: 500px) {
  .footer-contact-list {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 1rem;
  }

  .office {
    padding-bottom: 1rem;
  }
}


/* ───────────────────────────────────────────
   Formulario
──────────────────────────────────────────── */
.footer_form-component {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 33%;
  min-width: 15rem;
  min-height: 100%;
}

.footer_form-component h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 4.9rem;
}

@media (max-width: 1000px) {
  .footer_form-component h2 {
    margin-top: 2rem;
  }
}

.footer_form-component p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #dcdcdc;
}

.footer-form {
  width: 100%;
}

/* Ajustes del formulario HubSpot */
.hsfc-FormWrapper .hsfc-Step {
  background: transparent;
}

#hs_form_target_widget_1753214758746-22 {
  margin: 0;
}

#hs_form_target_widget_1753214758746-22-a {
  margin: 0;
}

.hsfc-Step__Content {
  padding: 0 !important;
  display: flex;
  gap: 1rem;
}

.hsfc-EmailField input {
  background: transparent;
  border: none;
  border-bottom: 4px solid white;
}

#hs_form_target_widget_1753214758746-3-label {
  display: none;
}

#hs_form_target_widget_1753214758746-15 {
  border: solid 1px #c0c0c0;
  font-weight: 400;
  min-width: 6.5rem;
}

#hs_form_target_widget_1753214758746-15:hover {
  border: solid 1px #fff;
  background-color: #fff;
  color: #1c1c1c;
}


/* ───────────────────────────────────────────
   Ajuste para ocultar el glow que se ve a los costados
──────────────────────────────────────────── */


#footer-col1, #footer-col2 {
    z-index: 201;
    background: #1c1c1c;
    border-radius: 1rem 1rem 0 0;
    height: 100%;
    width: 30px;
    position: absolute;
    top: 0;
    
}
#footer-col1 {left: 0;}
#footer-col2 {right: 0;}

/* ───────────────────────────────────────────
   Footer legal y redes sociales
──────────────────────────────────────────── */
.footer-last-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 1rem;
}

.footer-social-links,
.footer-legal-pages {
  list-style: none;
  padding: 0;
}

.footer-legal-page {
  font-size: 0.8rem;
  font-weight: 400;
}

.legal {
  font-size: 0.8rem;
  margin-right: 2rem;
  text-align: center;
  color: #c0c0c0;
}

 .footer-legal-pages {
      display: flex;
      flex-direction: column;
  }

/* ───────────────────────────────────────────
   Hover subrayado animado
──────────────────────────────────────────── */
.hover-underline-animation {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #c0c0c0;
}

.hover-underline-animation:hover {
  color: #fff;
  text-decoration: none;
}

.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.contact-icon {
      opacity: 0.6;
}



/* ───────────────────────────────────────────
   Media queries
──────────────────────────────────────────── */




@media (min-width: 990px) {
  .footer-legal-pages li {
    margin-right: 10px;
  }
}


@media (max-width: 830px) {
  .footer_form-component {
    width: 100%;
  }
  .footer-last-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem 0.5rem;
    align-items: start;
  }
  
  .footer-legal-pages {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  
  .footer-social-links {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  
  .legal {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: center;
    margin: 0;
  }

}

@media (max-width: 1200px) {
  
  .footer-row-content {
    justify-content: left;
  }
  
}

@media (max-width: 500px) {
  .footer-contact-list {
    display: flex;
    flex-direction: column;
  }

  .office {
    padding-bottom: 1rem;
  }

  .footer-row-content {
    gap: 1rem;
  }

  
  .legal {
        text-align: center;
        margin: 0;
        line-height: 1rem;
        font-size: 0.6rem;
  }
  .footer-content {
      padding: 1.2rem;
       z-index: 300;
  }
  .footer-legal-pages {
      flex-direction: column;
  }
  .footer_form-component p {
    font-size: 0.8rem;
  }
  .hsfc-Step__Content {
    flex-direction: column;
  }
  .contact-icon {
      height: 11px;
  }
  .office a {
    font-size: 0.8rem;
  }
  .hsfc-FormWrapper .hsfc-Row { 
    margin-bottom: 0px;
  }

  #footer-col1, #footer-col2 {
    z-index: -1;
  }
}
/* Case Study Template - Webflow Style */

/* Page Background */
body.blog-post-template {
  background-color: #1a1a1a;
  color: #f7f7f7;
  min-height: 100vh;
}

article {
  background-color: #1a1a1a;
  min-height: 100vh;
}

/* Layout Structure */
.w-layout-layout {
  display: grid;
}

.quick-stack-23 {
  grid-template-columns: 1fr minmax(0, 1200px) 1fr;
  grid-template-rows: auto;
}

.w-layout-cell {
  display: flex;
  flex-direction: column;
}

.case-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.case-content {
  padding: 60px 40px;
}

/* Back Link */
.projects-link {
  display: inline-block;
  color: #f7f7f7;
  text-decoration: underline;
  font-size: 16px;
  margin-bottom: 40px;
  transition: opacity 0.3s ease;
}

.projects-link:hover {
  opacity: 0.8;
  text-shadow: 0 0 1px #ffffff94, 0 0 11px #ffffff8f;
}

/* Portfolio Detail Name Section */
.portfolio-detail-name {
  margin-bottom: 40px;
}

.heading-4 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #f7f7f7;
}

.project-detail-logo {
  max-width: 200px;
  height: auto;
  margin: 20px 0;
}

.summary-p {
  font-size: 18px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 30px;
}

/* Project Icons */
.project-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
}

.project-type {
  width: 63px;
  height: 63px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}

.project-type:hover {
  transform: scale(1.1);
}

/* Project Type Backgrounds */
.project-type.branding {
  background-image: url("../images/icon-branding.svg");
}

.project-type.ads {
  background-image: url("../images/icon-ads.svg");
}

.project-type.animation {
  background-image: url("../images/icon-animation.svg");
}

.project-type.apps {
  background-image: url("../images/icon-apps.svg");
}

.project-type.commerce {
  background-image: url("../images/icon-commerce.svg");
}

.project-type.film {
  background-image: url("../images/icon-film.svg");
}

.project-type.games {
  background-image: url("../images/icon-games.svg");
}

.project-type.nfts {
  background-image: url("../images/icon-nfts.svg");
}

.project-type.vr {
  background-image: url("../images/icon-vr.svg");
}

.project-type.web {
  background-image: url("../images/icon-web.svg");
}

/* Tabs */
.tabs.project-detail-tabs {
  margin-top: 40px;
}

.tabs-menu {
  display: flex;
  gap: 0;
  margin-bottom: 0;
}

.tab-link {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  background: #333;
  color: #f7f7f7;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  border: none;
  font-size: 16px;
  font-weight: 500;
}

.tab-link:first-child {
  border-radius: 12px 0 0 0;
}

.tab-link:last-child {
  border-radius: 0 12px 0 0;
}

.tab-link.w--current {
  background: linear-gradient(135deg, #fc2560 0%, #5565ff 100%);
  color: #fff;
}

.tab-link:hover:not(.w--current) {
  background: #444;
}

.objective-icon,
.creative-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.text-block-2,
.text-block-3 {
  font-size: 16px;
  font-weight: 500;
}

/* Tab Content */
.tabs-content {
  background: #1a1a1a;
  border-radius: 0 0 12px 12px;
  padding: 40px;
  min-height: 300px;
}

.w-tab-pane {
  display: none;
}

.w-tab-pane.w--tab-active {
  display: block;
}

.w-richtext {
  color: #e0e0e0;
  line-height: 1.8;
}

.w-richtext h3 {
  color: #f7f7f7;
  font-size: 24px;
  margin-bottom: 20px;
}

.w-richtext p {
  margin-bottom: 16px;
}

/* Main Content Area */
.div-block-9 {
  margin-top: 60px;
  color: #e0e0e0;
  line-height: 1.8;
}

.div-block-9 h2,
.div-block-9 h3,
.div-block-9 h4 {
  color: #f7f7f7;
  margin: 30px 0 20px;
}

.div-block-9 p {
  margin-bottom: 20px;
}

.div-block-9 img {
  max-width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .case-content {
    padding: 40px 20px;
  }
  
  .heading-4 {
    font-size: 32px;
  }
  
  .project-type {
    width: 46px;
    height: 46px;
  }
  
  .tab-link {
    padding: 15px 20px;
    font-size: 14px;
  }
  
  .tabs-content {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .tab-link {
    flex-direction: column;
    padding: 15px;
  }
  
  .objective-icon,
  .creative-icon {
    margin-right: 0;
    margin-bottom: 5px;
  }
  
  .text-block-2,
  .text-block-3 {
    font-size: 12px;
  }
} 

/* Meta section */
.case-meta {
  margin-bottom: 40px;
}

/* Header wrapper no extra styles but keep clear */
.case-header::after,
.case-meta::after {
  content: "";
  display: table;
  clear: both;
}

/* Body wrapper */
.case-body {
  margin-top: 60px;
  color: #e0e0e0;
  line-height: 1.8;
} 

.clearfix::after { content:"";display:table;clear:both; } 

/* Case Header stylistic line */
.case-header {
  border-left: 4px solid #fc2560;
  padding-left: 24px;
  margin-bottom: 40px;
}

.case-header .project-detail-logo {
  margin: 16px 0;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}