/* =====================================================
        GLOBAL VARIABLES
      ===================================================== */
:root {
  --color-text: #1a1a1a;
  --color-bg: #f7f6f4;
  --color-white: #ffffff;
  --color-accent: #9b7671;
  --color-accent-soft: #f2e5d7;
  --color-text-primary: #4a3b33;
  --color-dark: #222222;
  --color-black: #000000;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 100px;

  --header-height-desktop: 145px;
  --header-height-desktop-active: 85px;
  --header-height-mobile: 120px;
  --header-height-mobile-active: 70px;

  --radius-sm: 6px;
  --radius-md: 12px;
}

/* =====================================================
        GLOBAL RESET
      ===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

*:focus {
  outline: none !important;
}

*:focus:not(:focus-visible) {
  outline: none;
}

/* =====================================================
        GLOBAL STYLES
      ===================================================== */
body,
a,
.btn,
p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--color-text);
}

body {
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  background-color: var(--color-white);

  overflow: visible;
  margin: 0;
  padding: 0;
  min-height: 100%;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;

  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
  background-color: var(--color-black);
}

a,
.button {
  letter-spacing: 0.3px;
  font-weight: 500;
}

li {
  line-height: 1.6;
  letter-spacing: 0.2px;
}

/* =====================================================
        GLOBAL TYPOGRAPHY
      ===================================================== */
h1,
h2,
h3,
span,
.faq-question {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.5px;
  color: var(--color-text);
}

h1,
h2 {
  font-weight: 700;
}

span,
.faq-question {
  font-size: 1rem;
  font-weight: 500;
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2px !important;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0.8px;
  margin-bottom: var(--space-sm);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.5px;

  margin-bottom: var(--space-xs);
}

p {
  margin-bottom: var(--space-sm);
}

/* =====================================================
        GLOBAL SPACING
      ===================================================== */
section {
  padding: var(--space-xl) var(--space-md);
}

/* =====================================================
        GLOBAL BTN - MOVER A GALERIA AS BTN
      ===================================================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

/* =====================================================
        GLOBAL MEDIA QUERIE HANDLER FOR SCREENS >= QHD & 4K
      ===================================================== */
@media (min-width: 1600px) {
  header {
    padding: 0 calc((100% - 1400px) / 2) !important;
    display: flex;
    justify-content: space-between;
  }

  .process,
  .process-header,
  .form-section,
  .services-section,
  .testimonios-header {
    max-width: 1400px;
    margin: 0 auto !important;
  }

  .faq-section {
    max-width: 1800px !important;
    margin: 0 auto !important;
  }

  .gallery-grid {
    grid-auto-rows: 25vh !important;
    max-width: 1650px !important;
  }
}

/* =====================================================
       UTILIDADES (OPCIONAL) - TESTIMONIOS USA ESTE CLASs????
    ===================================================== */
.text-center {
  text-align: center;
}

/* =====================================================
        HEADER STYLES
      ===================================================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 8%;

  transition:
    height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.4s ease,
    box-shadow 0.4s ease,
    padding 0.4s ease;
  will-change: height, background-color;

  background-color: transparent;

  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  height: var(--header-height-desktop);
}

header.header-active {
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

  height: var(--header-height-desktop-active);
}

header.header-active .desktop-menu a {
  color: var(--color-text-primary) !important;
  transition: all 0.3s ease;
}

header.header-active .desktop-menu {
  padding-right: 4%;
}

header.header-active .social-icons svg {
  fill: var(--color-text-primary);
}

header.header-active .desktop-menu a:hover,
header.header-active .social-icons a:hover {
  color: var(--color-accent) !important;
  opacity: 1;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;

  padding: 10px;
}

.logo img {
  height: 65px;
  width: auto;
  object-fit: contain;
  display: block;
  transition:
    filter 0.5s ease,
    opacity 0.5s ease,
    transform 0.4s ease;

  filter: brightness(0) invert(1);
  opacity: 0.8;
}

header.header-active .logo img {
  filter: none;
  opacity: 1;

  filter: brightness(0) invert(0);
}

.desktop-menu {
  display: flex;
  align-items: center;
  justify-content: center;

  padding-right: 7%;

  width: 100%;
  list-style: none;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin: 0 15px;
}

.navbar ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2px;
  transition: 0.3s;
  text-transform: uppercase;

  display: inline-block;

  transition: all 0.4s ease;
}

.navbar ul li a:hover {
  color: var(--color-white);

  letter-spacing: 3px;
}

.desktop-menu .link-home {
  max-width: 0;
  opacity: 0;
  visibility: hidden;
  margin-right: 0;
  transition:
    max-width 0.4s ease,
    opacity 0.3s ease,
    margin-right 0.4s ease;
  white-space: nowrap;
  display: inline-block;
}

.desktop-menu li {
  flex-shrink: 0;
}

header.header-active .desktop-menu .link-home {
  max-width: 100px;
  opacity: 1;
  visibility: visible;
}

.desktop-menu .link-footer {
  max-width: 120px;
  opacity: 1;
  visibility: visible;
  transition:
    max-width 0.4s ease,
    opacity 0.3s ease,
    visibility 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}

.desktop-menu .link-footer.is-at-footer {
  max-width: 0;
  opacity: 0;
  visibility: hidden;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.social-icons a {
  color: var(--color-white);
  text-decoration: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  display: flex;
  align-items: center;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

.social-icons a:hover .link-icon {
  opacity: 1;
}

.social-icons svg {
  display: block;
}

/* MOBILE STYLES */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  color: var(--color-white);
  transition:
    color 0.4s ease,
    transform 0.3s ease;
  opacity: 0.8;

  z-index: 1050;
}

.no-scroll {
  overflow: hidden !important;
  height: 100% !important;
  touch-action: none;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle .icon-menu {
  fill: var(--color-white);
  stroke: var(--color-white);

  opacity: 0.8;
}

.nav-open .menu-toggle .icon-menu {
  display: none;
}

.nav-open .menu-toggle .icon-close {
  display: block;
}

header.header-active .icon-menu {
  fill: rgba(74, 59, 51, 0.9);
  stroke: rgba(74, 59, 51, 0.9);

  color: rgba(74, 59, 51, 0.9);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--header-height-mobile-active) - 1px);
  padding-top: 1px;
  left: -80%;
  width: 80%;
  height: 100dvh;
  background-color: var(--color-white);
  z-index: 1050;
  transition: left 0.3s ease;
  overflow: hidden;
}

.mobile-menu ul {
  list-style: none;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
}

.mobile-menu li {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(74, 59, 51, 0.1);
}

.mobile-menu li:last-child {
  border-bottom: none;
}

.mobile-menu a {
  display: block;
  padding: 1.2rem 0;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--color-text-primary) !important;

  font-size: 20px !important;
  font-weight: 300 !important;
  letter-spacing: 5px !important;
  line-height: 1.2 !important;

  transition: all 0.3s ease;
}

.mobile-menu-overlay {
  display: block;
  position: fixed;
  top: var(--header-height-mobile-active);
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}

.mobile-menu.open {
  left: 0;
  display: block;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-social {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  margin-top: auto;
  margin-bottom: var(--header-height-mobile-active);
}

.mobile-social p {
  margin: 0;
}

.social-container {
  display: flex;
  gap: 3rem;
}

.link-icon {
  fill: var(--color-white);
  stroke: transparent;

  opacity: 0.75;

  width: 20px;
  height: 20px;
}

.link-icon .icon-smaller {
  width: 22px;
  height: 22px;
}

.link-icon .icon-facebook {
  width: 24px;
  height: 24px;
}

.menu-toggle .icon-close {
  fill: rgba(74, 59, 51, 0.9);
  stroke: rgba(74, 59, 51, 0.9);

  color: rgba(74, 59, 51, 0.9);
}

.mobile-menu.open ~ .header-container .menu-toggle .icon-menu,
header.nav-open .menu-toggle .icon-menu {
  display: none;
}

.mobile-menu.open ~ .header-container .menu-toggle .icon-close,
header.nav-open .menu-toggle .icon-close {
  display: block;
}

.menu-toggle svg {
  transition: transform 0.3s ease;
}

header.nav-open .menu-toggle .icon-close {
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  header {
    height: var(--header-height-mobile);

    padding: 0;
  }

  header.header-active {
    height: var(--header-height-mobile-active);
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle,
  .logo,
  .social-icons {
    flex: 1;
    display: flex;
  }

  .mobile-menu {
    height: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
  }

  .menu-toggle {
    justify-content: flex-start;

    margin-left: 8%;
  }

  .logo {
    justify-content: center;
  }

  .logo img {
    opacity: 1;
    height: 45px;
    width: auto;
  }

  .link-icon {
    width: 24px;
    height: 24px;

    fill: rgba(74, 59, 51, 1);
  }

  .social-icons {
    justify-content: flex-end;
  }

  .social-icons a {
    display: none;
  }
}

/* =====================================================
        HERO SECTION STYLES
      ===================================================== */
.hero-bg {
  height: 100vh;
  background-size: cover;
  background-position: 50% 35%;
  position: relative;
  display: flex;
  padding: 0;
  align-items: center;

  image-rendering: -webkit-optimize-contrast;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-content {
  max-width: 820px;
  z-index: 2;

  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.subtext {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

#dynamic-text {
  color: var(--color-accent-soft);
  font-size: 1.15rem;

  line-height: 1.6;
  letter-spacing: 1px;
  font-weight: 500;
  font-style: italic;
}

#dynamic-text::after {
  content: "|";
  margin-left: 5px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.btn-contact {
  background-color: transparent;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid var(--color-accent-soft);
  padding: 12px 0 !important;
  transition: all 0.4s ease;
}

.btn-contact:hover {
  border-color: var(--color-white);
  letter-spacing: 5px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .subtext {
    font-size: 1.1rem;
  }

  .hero-overlay {
    padding: 0 5%;
    text-align: center;
    justify-content: center;
  }

  .logo img {
    height: 50px;
  }
}

/* =====================================================
        PROCESS STEPPER SECTION STYLES
      ===================================================== */
.process {
  background-color: var(--color-white);
}

.process-header {
  margin-bottom: var(--space-lg);
  border-left: 2px solid var(--color-accent);
  padding-left: 22px;
}

.process-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.process-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.process-subtitle {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--color-text-primary);
  opacity: 0.8;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 40px 0;

  max-width: 1100px;
  margin: 0 auto;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 10%;
  right: 10%;
  height: 1px;
  background-color: var(--color-accent-soft);
  z-index: 0;
}

.process,
.process-steps {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.step {
  position: relative;
  text-align: center;
  max-width: 250px;
  margin: 0 auto;

  z-index: 1;
  flex: 1;
}

.step-number {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  opacity: 0.7;
  margin-top: 20px;
  margin-bottom: 8px;
  display: block;
}

.step h3,
.step p {
  margin: 0;
}

.step h3 {
  font-size: 1.2rem;
  color: var(--color-text-primary);
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: 0;
}

.step p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  max-width: 220px;
  margin: 0 auto;
}

.step img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 0;
  object-fit: cover;
  border: 1px solid var(--color-accent-soft);
  background-color: #f8f5f2;
  transform: scale(1.2);

  box-shadow: 0 10px 20px rgba(74, 59, 51, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step:hover img {
  transform: translateX(8px) scale(1.1);
  box-shadow: 0 20px 40px rgba(155, 118, 113, 0.15);
}

.step:first-child img {
  object-position: 45% 50%;
}

.step:nth-child(2) img {
  object-position: 55% 40%;
}

.step:nth-child(3) img {
  object-position: 38% 35%;
}

.step:nth-child(4) img {
  object-position: 35% 25%;
}

@media (min-width: 600px) and (max-width: 1000px) {
  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
    padding: 40px 5%;
  }

  .process-steps::before,
  .process-steps::after {
    display: none;
  }

  .step {
    max-width: 100%;
    padding: 0 15px;
  }
}

@media (max-width: 599px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 100%;
    padding: 40px 20px;
  }

  .process-steps::before,
  .process-steps::after {
    display: none;
  }

  .process-header {
    padding-left: 15px;
    margin-bottom: 40px;
    text-align: left;
  }

  .process-title {
    font-size: 28px;
  }

  .step {
    width: 100%;
    max-width: 280px;
  }

  .step img {
    width: 140px;
    height: 140px;
    transform: scale(1) !important;
    box-shadow: 0 15px 30px rgba(74, 59, 51, 0.1);
  }

  .step:hover img {
    transform: translateY(-5px) scale(1.05) !important;
  }

  .step-number {
    margin-top: 10px;
    margin-bottom: 5px;
  }
}

/* =====================================================
        SECTION DIVIDER STYLES (STEPPER__FORM)
      ===================================================== */
.section-divider {
  width: 1px;
  height: 80px;
  margin: 40px auto !important;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    rgba(155, 118, 113, 0) 0%,
    rgba(155, 118, 113, 0.6) 50%,
    rgba(155, 118, 113, 0) 100%
  );
}

.section-divider::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: scroll-line 6s infinite ease-in-out;
}

@keyframes scroll-line {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

/* =====================================================
        FORM SECTION STYLES
      ===================================================== */
.form-section {
  display: flex;
  align-items: center;
  justify-content: space-evenly;

  background-color: var(--color-white);

  margin-top: 0 !important;
  padding-top: 0 !important;
}

.profile-card-container {
  width: 375px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-card {
  background-color: var(--color-white);
  width: 300px;
  height: 450px;

  padding: 15px 12px 0 12px;

  border: 1.5px solid var(--color-accent-soft);

  display: flex;
  flex-direction: column;

  position: relative;
}

.profile-image {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  background-color: #f8f5f2;
}

.profile-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 12px;

  display: block;

  opacity: 0;
  position: absolute;
  inset: 0;

  transition:
    opacity 0.6s ease,
    transform 0.8s ease;

  transform: scale(1.05);
}

.profile-image img.active {
  opacity: 1;
  position: relative;
}

.profile-card:hover {
  border-color: rgba(155, 118, 113, 0.6);
}

.profile-card:hover .profile-image img.active {
  transform: scale(1.05);
}

.profile-card:hover .profile-image::after {
  opacity: 1;
}

.profile-card:hover .profile-name::after {
  opacity: 1;
  transform: translateY(0);
}

.profile-card:hover .profile-role {
  opacity: 0.9;
  transform: translateY(-20px);
  color: transparent;
}

.profile-role::after {
  content: attr(data-hover);
  position: absolute;
  inset: 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--color-accent);
}

.profile-card:hover .profile-role::after {
  opacity: 1;
}

.profile-card:hover .profile-name {
  color: transparent;
}

.profile-name::after {
  content: attr(data-hover);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  font-size: clamp(15px, 1rem + 0.5vw, 16.2px);

  color: var(--color-text);
}

.profile-info {
  width: 335px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-role {
  width: 100%;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-accent);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  transform: translateY(-6px);
  z-index: 10;

  position: relative;
  opacity: 1;
}

.profile-name,
.profile-role {
  text-transform: uppercase;
}

.profile-name {
  width: 100%;
  height: 50px;
  font-size: clamp(18px, 1.4rem + 1.2vw, 21px);
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--color-text);

  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

  white-space: nowrap;

  background-color: var(--color-white);
}

.text-box {
  height: 100%;
  max-width: 720px;

  padding: 25px;
  position: relative;
}

.form-title {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 10px;
  text-align: center;
}

.form-subtitle {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--color-text);
  text-align: center;
}

.form-description {
  max-width: 600px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #666666;
  text-align: center;

  margin-bottom: 30px;
}

.cta-form {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.cta-form .full {
  grid-column: 1 / -1;
}

.cta-form input,
.flatpickr-input {
  font-size: 14px;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding: 12px 0;
  margin-bottom: 20px;

  outline: none;

  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
  transition: border-color 0.3s ease;
}

.cta-form input::placeholder {
  color: rgba(74, 59, 51, 0.5);
  font-weight: 300;
}

.flatpickr-input {
  cursor: pointer;

  width: 100%;
}

.cta-form input:focus,
.flatpickr-input:focus {
  border-bottom-color: var(--color-accent);
}

.flatpickr-day.selected {
  background-color: var(--color-dark);
  border-color: var(--color-text);
  color: var(--color-white);
}

.flatpickr-day.selected:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent-soft);
}

.flatpickr-time .flatpickr-hour:hover,
.flatpickr-time .flatpickr-minute:hover,
.flatpickr-time .flatpickr-am-pm:hover {
  background: var(--color-white) !important;
  cursor: pointer !important;
}

.flatpickr-time input:focus {
  background: var(--color-white) !important;
}

.flatpickr-time input.flatpickr-hour::selection,
.flatpickr-time input.flatpickr-minute::selection,
.flatpickr-time input.flatpickr-am-pm::selection {
  background: var(--color-accent-soft) !important;
}

.cta-form .cta-btn {
  padding: 18px;
  width: fit-content;

  margin-top: var(--space-xs);

  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;

  background-color: var(--color-accent);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border: none;
  cursor: pointer;
}

.cta-form .cta-btn:hover {
  background-color: #8a6863;

  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(74, 59, 51, 0.35);
}

@media (min-width: 600px) and (max-width: 1000px) {
  .form-section {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px !important;
    padding: 60px 5%;
  }

  .profile-card-container {
    flex: 1;
    max-width: 320px;
  }

  .text-box {
    flex: 1.2;
    padding: 0 !important;
    text-align: left;
  }

  .cta-form {
    max-width: 100%;
  }
}

@media (max-width: 599px) {
  .section-divider {
    height: 60px;
    margin: 30px auto !important;
  }

  .form-section {
    flex-direction: column;
    padding-bottom: var(--space-lg);
    padding-top: 10px !important;
    gap: 20px !important;
  }

  .profile-card-container {
    width: 100%;
    padding: 20px 0;
  }

  .profile-card {
    width: 280px;
    height: 420px;
    padding: 12px 10px 0 10px;
  }

  .profile-image {
    max-height: 310px;
  }

  .profile-info {
    width: 105%;
    bottom: 10px;
  }

  .profile-name {
    font-size: clamp(16px, 1.2rem + 1vw, 21px);
    height: 45px;
    letter-spacing: 0.05em;

    background-color: var(--color-white);
  }

  .profile-role {
    font-size: 9px;
    letter-spacing: 0.25em;
  }

  .profile-card:active .profile-image img.active {
    transform: scale(1.03);
  }

  .profile-name::after {
    font-size: clamp(14px, 0.9rem + 0.5vw, 17px);
  }

  .profile-role::after {
    transform: translateY(4px);
  }

  .text-box {
    padding: 30px 0 !important;
    width: 100%;
  }

  .form-subtitle {
    font-size: clamp(24px, 5vw, 28px);
    margin-bottom: 12px;
  }

  .cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
  }

  .cta-form .cta-btn {
    margin-top: 15px;
    font-size: 12px;
    letter-spacing: 0.15em;
    padding: 14px 0;

    width: auto;
    min-width: 200px;
    max-width: 250px;

    text-align: center;
  }
}

@media (max-width: 350px) {
  .flatpickr-wrapper {
    justify-content: center;
    display: flex !important;
    width: 100%;
  }
}

/* =====================================================
        SCROLL GUIDE STYLES (FORM__DOMICILIO)
      ===================================================== */
.scroll-guide {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: var(--space-xl);
  margin-bottom: 15px;
}

.scroll-guide p {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5em;
  line-height: 1.2;
  color: #4a4a4a;
  text-transform: uppercase;
}

.scroll-line {
  width: 1.6px;
  height: 90px;
  background-color: #4a4a4a;
  position: relative;
  overflow: hidden;
  opacity: 0.6;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--color-white),
    transparent
  );

  animation: luxury-scan 3.5s infinite ease-in-out;
}

@keyframes luxury-scan {
  0% {
    top: -100%;
  }
  30% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}

@media (max-width: 768px) {
  .scroll-line {
    height: 60px;
  }

  .scroll-guide p {
    font-size: 9px;
    letter-spacing: 0.4em;
  }

  .scroll-guide {
    margin-top: var(--space-md);

    margin-bottom: var(--space-xs);
  }

  .scroll-line::after {
    background: linear-gradient(
      to bottom,
      transparent,
      rgba(255, 255, 255, 0.8),
      transparent
    );

    height: 50%;
  }
}

/* =====================================================
        LOCATION SECTION STYLES
      ===================================================== */
.domicilio-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #2b2826;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("images/domicilio55.jpg");

  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.overlay-box {
  background-color: rgba(68, 68, 68, 0.5);
  padding: 60px 40px;
  text-align: center;
  color: var(--color-white);
  border-radius: 4px;
  max-width: 620px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}

.overlay-box h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--color-white);
  opacity: 0.8;
}

.overlay-box h2 {
  font-family: "Playfair Display", serif;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 35px;
  color: var(--color-white);
}

.location-btn {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  padding: 14px 35px;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
}

.location-btn:hover {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}

/* BOTTOM INFO HORIZONTAL SCROLL */
.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-dark);
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}

.ticker-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  color: var(--color-accent-soft);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0 60px;

  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
}

.ticker-item svg {
  width: 14px;
  height: 14px;
  margin-right: 15px;
  stroke: var(--color-accent);
  fill: none;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .domicilio-section {
    height: auto;
    min-height: 85vh;
    padding: 60px 0;

    background-attachment: scroll;
  }

  .overlay-box {
    width: 85%;
    padding: 35px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .overlay-box h1 {
    font-size: 10px;
    letter-spacing: 0.3em;
    margin-bottom: 15px;
  }

  .overlay-box h2 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 30px;
  }

  .location-btn {
    padding: 12px 20px;
    font-size: 11px;
    letter-spacing: 0.15em;
    display: inline-block;
    min-width: 160px;
  }

  .ticker-wrapper {
    padding: 10px 0;
  }

  .ticker-track {
    animation: marquee 50s linear infinite;
  }

  .ticker-item {
    padding: 0 35px;
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  .ticker-item svg {
    width: 12px;
    height: 12px;
    margin-right: 8px;
  }
}

/* =====================================================
        SERVICES SECTION STYLES
      ===================================================== */
.services-section {
  scroll-margin-top: 30px;
  background-color: var(--color-white);
}

.services-title {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 12px;
  text-align: center;
}

.services-secondary-title {
  margin-top: -20px;
}

.services-subtitle {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 15px;
  color: var(--color-text-primary);
  text-align: center;
}

.services-description {
  max-width: 800px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-primary);
  opacity: 0.8;
  text-align: center;

  margin: 0 auto var(--space-lg);
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
}

.card-luxury {
  width: 100%;
  max-width: 380px;
  height: 520px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  background-color: var(--color-bg);
  box-shadow:
    0 20px 48px rgba(155, 118, 113, 0.12),
    0 8px 20px rgba(242, 229, 215, 0.5);
  transition:
    transform 0.3s ease-out,
    box-shadow 0.3s ease-out;
}

.card-luxury:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
  z-index: 2;
}

.card-luxury:hover:not(.no-hover) {
  transform: translateY(-8px);

  box-shadow: 0 15px 35px rgba(74, 59, 51, 0.15);

  border-color: rgba(155, 118, 113, 0.5);

  cursor: pointer;
}

.card-main-view {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 40px;
  cursor: pointer;
}

.services-divisor {
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0)
  );
  margin: 80px auto;
  width: 60%;
}

.card-img-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.card-luxury:hover:not(.no-hover) .card-img-base {
  transform: scale(1.1);
}

.card-brand {
  color: var(--color-white);
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;

  transform: translateZ(0);
  will-change: transform;
}

.service-line-0 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
  text-transform: uppercase;
  line-height: 1.2;

  padding: 0 10px;
}

.service-line-1 {
  color: var(--color-white);
  font-size: 15px;
  font-style: italic;
  text-transform: lowercase;
  margin-bottom: 12px;
}

.service-line-2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-white);

  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-white);
  margin-top: 15px;
}

.typing-card-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  height: 100%;
  z-index: 3;

  transform: translateZ(0);
  will-change: transform;

  transition: opacity 1s ease-in-out;
}

.service-ready {
  animation: gentlePulse 2s infinite;
}

@keyframes gentlePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
    filter: brightness(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.service-cursor {
  color: var(--color-white);
  font-weight: 100;
  margin-left: 2px;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.glass-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--color-black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.glass-modal.show {
  transform: translateY(0);
}

.details {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 40px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--color-white);

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.service-eyebrow {
  display: block;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 5px;
  opacity: 0.9;
  font-weight: 500;
}

.details h3 {
  font-size: 1.6rem;
  color: var(--color-accent-soft);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0 !important;
  line-height: 1.1;
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.services-note {
  display: block;
  font-size: 14px;
  color: #888;
  font-style: italic;
  margin-top: 10px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.service-benefits li {
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  color: var(--color-white);
  align-items: center;

  display: flex;
  align-items: center;
  gap: 12px;
}

.service-benefits li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;

  box-shadow: 0 0 2px var(--color-accent);
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.8));
}

.service-benefits li,
.details h3,
.service-eyebrow {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.btn-add {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1.2px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-add:hover {
  background-color: rgba(155, 118, 113, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(155, 118, 113, 0.3);
}

.btn-icon {
  width: 20px;
  filter: brightness(0) invert(1);
}

.close-x {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-x:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

/* Tablet Query (iPad Air, iPad Pro, etc.) */
@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 40px;
  }

  .services-subtitle {
    font-size: 34px;
    padding: 0 50px;
  }

  .card-luxury {
    max-width: 100%;
    height: 600px;
  }

  .details {
    padding: 40px;
  }

  .details h3 {
    font-size: 1.8rem;
  }

  .service-benefits li {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .btn-add {
    width: fit-content;
    padding: 18px;
    margin: 0 auto;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 20px;

    scroll-margin-top: 40px;
  }

  .services-subtitle {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .services-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
  }

  .card-luxury {
    width: 100%;
    max-width: 340px;
    height: 460px;
    margin: 0 auto;
    border-radius: 20px;
  }

  .card-brand {
    font-size: 22px;
    letter-spacing: 0.15em;
  }

  .service-line-0 {
    font-size: 18px;
  }

  .service-line-1 {
    font-size: 14px;
  }

  .glass-modal {
    border-radius: 20px;
  }

  .details {
    padding: 35px 20px 20px 20px;
  }

  .service-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 2px;
    margin-bottom: 2px;
  }

  .details h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .service-benefits {
    margin-bottom: 20px;
  }

  .service-benefits li {
    font-size: 0.85rem;
    margin-bottom: 10px;
    gap: 10px;
  }

  .btn-add {
    padding: 14px;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .close-x {
    top: 15px;
    right: 15px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.25);
  }
}

/* Query for small devices */
@media (max-width: 380px) {
  .details h3 {
    font-size: 1.2rem;
  }

  .service-benefits li {
    font-size: 0.8rem;
  }

  .btn-add {
    padding: 12px;
    font-size: 0.8rem;
  }
}

/* =====================================================
        GALLERY SECTION STYLES
      ===================================================== */
#galeria {
  overflow: hidden;
  text-align: center;
  scroll-margin-top: 60px;
  padding-top: var(--space-lg);

  background-color: var(--color-white);
}

.gallery-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.gallery-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
  text-align: center;
}

.gallery-grid {
  display: grid;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;

  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 40vh;
  gap: 16px;
  grid-template-areas:
    "item1 item2 item4 item5"
    "item3 item3 item4 item6";
}

.item1 {
  grid-area: item1;
  position: relative;
}

.item2 {
  grid-area: item2;
  position: relative;
}

.item3 {
  grid-area: item3;
  position: relative;
}

.item3 img {
  object-position: center 30%;
}

.item4 {
  grid-area: item4;
  position: relative;
}

.item5 {
  grid-area: item5;
  position: relative;
}

.item6 {
  grid-area: item6;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: attr(width) / attr(height);
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition:
    filter 0.5s ease,
    transform 0.5s ease;

  background-color: #2b2826;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover video {
  filter: brightness(1.05);
  transform: scale(1.02);
}

.instagram-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  z-index: 2;
  pointer-events: none;

  filter: invert(1);
}

.gallery-item a:hover .instagram-icon {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

.collage-cta {
  margin-top: var(--space-lg);
}

.collage-btn {
  background: transparent;
  border: 1px solid var(--color-black);
  color: var(--color-text);
  border-radius: 0;

  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 15px 35px;

  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.collage-btn:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-5px);
}

@media (min-width: 769px) and (max-width: 1024px) {
  .gallery-grid {
    display: grid;
    grid-template-areas:
      "item1 item4"
      "item3 item3" !important;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 15px;
    padding: 0 40px;
  }

  .gallery-item {
    grid-area: auto;
    aspect-ratio: 1 / 1;
  }

  .item1 {
    grid-area: item1;
  }

  .item4 {
    grid-area: item4;
  }

  .item4 img {
    object-position: center 30%;
  }

  .item3 {
    grid-area: item3;
    aspect-ratio: 16 / 9;
  }

  .item2,
  .item5,
  .item6 {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .gallery-title {
    font-size: 28px;
    margin-bottom: var(--space-md);
  }

  .gallery-grid {
    grid-template-areas: none;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 8px;
    padding: 0 15px;
  }

  .gallery-item {
    grid-area: auto !important;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  .gallery-item video {
    filter: brightness(1);
  }

  .item2,
  .item6 {
    display: none;
  }

  .item3 {
    grid-column: span 1;
  }

  .item4 img {
    object-position: center 30%;
  }

  .instagram-icon {
    width: 12px;
    height: 12px;
    bottom: 6px;
    right: 6px;
  }

  .collage-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 35px;
  }

  .collage-btn {
    width: auto;
    min-width: 200px;
    padding: 14px 30px;
    font-size: 11px;
    letter-spacing: 2px;
    display: inline-block;
    text-align: center;
  }
}

/* =====================================================
        OPINIONS SECTION STYLES
      ===================================================== */
#testimonios {
  background: linear-gradient(
    to bottom,
    var(--color-white) 0%,
    var(--color-accent-soft) 100%
  );

  position: relative;
  overflow: hidden;
}

.testimonios::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(var(--color-accent) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.15;
  pointer-events: none;
}

.testimonios-header {
  margin-bottom: var(--space-lg);
  border-left: 2px solid var(--color-accent);
  padding-left: 22px;
}

.testimonios-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.testimonios-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.testimonios-subtitle {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--color-text-primary);
  opacity: 0.8;
}

.testimonios-subtitle a {
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: inherit;
  border-bottom: 1.5px solid var(--color-accent-soft);
  transition: all 0.3s ease;
}

.testimonios-subtitle a:hover {
  border-bottom-color: var(--color-accent);
  color: var(--color-accent);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.testimonial-card-text {
  height: auto;
  min-height: 100px;
  padding: 0 20px;

  display: flex;
  justify-content: center;
  align-items: center;

  color: var(--color-text-primary);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  opacity: 0.9;
}

.testimonial-card-name,
.user-name {
  color: var(--color-text-primary);
  font-weight: 600;
  letter-spacing: 1px;
}

.testimonials-slider {
  position: relative;
  max-width: 620px;
  width: 100%;
  margin: 40px auto 0;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-card {
  background: transparent;
  border-radius: 16px;
  position: relative;
}

.testimonial-card a {
  text-decoration: none;
}

.testimonial-card a .user-name {
  transition: text-decoration-color 0.2s ease;
}

.testimonial-card a:hover .user-name {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--color-accent);
}

.testimonial-card a:hover .testimonial-card-name::after,
.testimonial-card a:hover .testimonial-card-name-instagram::after {
  opacity: 1;
  filter: invert(53%) sepia(13%) saturate(832%) hue-rotate(315deg)
    brightness(92%) contrast(88%);
}

.testimonial-card-name::after {
  content: url("images/icons/facebook.svg");
}

.testimonial-card-name-instagram::after {
  content: url("images/icons/instagram.svg");
}

.testimonial-card-name::after,
.testimonial-card-name-instagram::after {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) invert(24%) sepia(8%) saturate(1054%)
    hue-rotate(336deg) brightness(97%) contrast(89%);
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
  margin-bottom: clamp(60px, 8vh, 160px);
}

.testimonial-dots .dot {
  width: 12px;
  height: 4px;
  border-radius: 4px;
  background-color: rgba(74, 59, 51, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-dots .dot.active {
  width: 28px;
  background-color: var(--color-accent);
}

.bottom-background {
  position: absolute;
  left: -2%;
  bottom: -1px;
  width: 105%;
  height: auto;
  display: block;
  pointer-events: none;
  z-index: 10;

  fill: var(--color-white);
}

@media (max-width: 768px) {
  #testimonios {
    padding-bottom: var(--space-md);
  }

  .testimonios-header {
    padding-left: 15px;
    margin-bottom: 30px;
    border-left-width: 3px;
  }

  .testimonios-title {
    font-size: 28px;
  }

  .testimonios-subtitle {
    font-size: 14px;
    max-width: 90%;
  }

  .testimonials-slider {
    margin-top: 20px;
    padding: 0 10px;
  }

  .testimonial-card-text {
    height: auto;
    min-height: 140px;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 10px;

    user-select: none;
    -webkit-user-select: none;
  }

  .testimonial-card-name,
  .user-name {
    font-size: 0.9rem;
    margin-top: 15px;
  }

  .testimonial-card-name::after,
  .testimonial-card-name-instagram::after {
    width: 18px;
    height: 18px;
    opacity: 0.8;
  }

  .testimonial-dots {
    margin-top: 1.5rem;
    gap: 6px;
  }

  .testimonial-dots .dot {
    width: 10px;
    height: 4px;
  }

  .testimonial-dots .dot.active {
    width: 22px;
  }
}

/* =====================================================
        FAQS SECTION STYLES
      ===================================================== */
.faq-section {
  width: 100%;
  background-color: var(--color-white);
  display: flex;
  justify-content: center;

  position: relative;
}

.faq-container {
  width: 100%;
}

.faq-header {
  margin-bottom: var(--space-lg);
  border-left: 2px solid var(--color-accent);
  padding-left: 22px;
}

.faq-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.faq-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.faq-subtitle {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--color-text-primary);
  opacity: 0.8;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.faq-column {
  display: flex;
  flex-direction: column;
}

.faq-item {
  width: 100%;
  box-sizing: border-box;
}

.faq-question {
  border: none;
  background-color: transparent;
  width: 100%;
  text-align: left;
  padding: 20px 0;
  color: var(--color-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;

  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question:hover .faq-toggle-icon {
  color: var(--color-black);
}

.faq-toggle-icon {
  transition: transform 0.3s;
  font-size: 1.2rem;

  color: var(--color-accent);
}

.faq-divider {
  border: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

.faq-answer-container {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s ease;
  padding: 0;
  will-change: max-height;
}

.faq-item.active .faq-answer-container {
  max-height: 350px;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s ease;
  padding: 10px 0 15px 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  margin: 0;

  text-align: left;

  display: block;
  width: 100%;

  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.7);

  padding-bottom: var(--space-md);
}

.faq-answer strong,
.faq-ul-answer strong {
  color: var(--color-black);
  font-weight: 600;
}

.faq-ul-answer {
  list-style-type: disc;
  margin-left: 20px;
  text-align: left;

  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.7);

  padding-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .faq-section {
    padding-top: 60px;
    padding-bottom: var(--space-2xl);
  }

  .faq-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .faq-header {
    padding-left: 15px;
    margin-bottom: 40px;
  }

  .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .faq-question {
    padding: 18px 0;
    font-size: 15px;
    gap: 10px;
  }

  .faq-toggle-icon {
    flex-shrink: 0;
    margin-left: auto;
  }

  .faq-answer {
    font-size: 14px;
    padding-right: 10px;
  }
}

/* =====================================================
        FOOTER STYLES
      ===================================================== */
#footer {
  scroll-margin-top: 70px;
}

.main-footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 80px 0 10px 0;
  font-family: "Montserrat", sans-serif;

  margin-bottom: -2px; /* Empuja el footer un poco más allá del borde */
  padding-bottom: 12px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand {
  text-align: center;
  margin-bottom: 50px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-hashtag {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 2px;

  color: var(--color-accent);
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-bottom: 60px;
  text-align: center;
}

.footer-column {
  width: 110px;
}

.footer-column h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-white);
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;

  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--color-accent);
  letter-spacing: 2.5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  text-align: center;
}

.footer-copyright {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.footer-copyright span {
  font-size: 0.8rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-credits {
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.3);
}

.dev-link {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.dev-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .main-footer {
    padding: 60px 0 20px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-column {
    width: 100%;
  }

  .footer-hashtag {
    font-size: 1rem;
    padding: 0 10px;
  }

  .footer-column h3 {
    margin-bottom: 15px;
  }

  .footer-bottom {
    padding: 30px 15px;
  }

  .footer-copyright {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .footer-copyright span {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .footer-credits {
    font-size: 0.65rem;
    margin-top: 10px;
  }
}

/* =====================================================
        WHATSAPP STICKY BTN STYLES
      ===================================================== */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

.whatsapp-sticky {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 56px;
  height: 56px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  z-index: 950;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

  animation: float 3s ease-in-out infinite;
  transition:
    opacity 0.5s ease,
    filter 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;

  opacity: 0;
  pointer-events: none;
}

.whatsapp-icon {
  width: 26px;
  height: 26px;

  filter: invert(1);
}

.whatsapp-sticky:hover {
  animation-play-state: paused;
  filter: brightness(1.15);
}

.whatsapp-hidden {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;

  background-color: rgba(74, 59, 51, 1) !important;

  animation: none !important;
  transform: scale(0.6) !important;
}

@media (max-width: 768px) {
  .whatsapp-sticky {
    width: 46px;
    height: 46px;
    bottom: 15px;
    right: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }

  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-4px);
    }
  }
}
