/* === VARIABLES ================================= */
:root {
    --cream:       #FAF7F2;
    --nude:        #E8D5C4;
    --nude-dark:   #C9A98A;
    --blush:       #F2E4DA;
    --charcoal:    #1C1C1C;
    --warm-gray:   #6B6058;
    --white:       #FFFFFF;
    --border:      rgba(200, 170, 140, 0.3);
    --shadow:      rgba(28, 28, 28, 0.08);
}

/* === RESET & BASE ============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: clip;
}

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

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

/* === TIPOGRAFÍA ================================ */
.display-serif {
    font-family: 'Cormorant Garamond', serif;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.15;
    font-weight: 600;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #b8925c;
  margin-bottom: 1.5rem;
  font-family: 'DM Sans', sans-serif;
}

.section-tag::before {
  content: '◆';
  font-size: 1rem;
  color: #d4af7a;
}

.section-tag::after {
  content: '◆';
  font-size: 1rem;
  color: #d4af7a;
}

.btn-dark-solid {
    display: inline-block;
    background: var(--charcoal);
    color: var(--white) !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.95rem 2.4rem;
    border-radius: 50px;
    border: 2px solid var(--charcoal);
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}
.btn-dark-solid:hover {
    background: transparent;
    color: var(--charcoal) !important;
}

.btn-nude-outline {
    display: inline-block;
    background: transparent;
    color: var(--charcoal) !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.95rem 2.4rem;
    border-radius: 50px;
    border: 2px solid var(--nude-dark);
    transition: all 0.3s;
}
.btn-nude-outline:hover {
    background: var(--nude-dark);
    color: var(--white) !important;
}

/* === NAVBAR ==================================== */
.navbar-custom {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.navbar-custom.scrolled {
  padding: 5px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: 1040; /* extra */
}

.nav-blog-link {
  border: 1px solid rgba(201, 169, 138, 0.65);
  border-radius: 999px;
  padding: 0.35rem 0.8rem !important;
  color: #1c1c1c !important;
  font-weight: 500;
}

.nav-blog-link:hover {
  background: #1c1c1c;
  color: #ffffff !important;
  border-color: #1c1c1c;
}

/* Si encuentras que el contenido queda pegado al header, añade esto: */
.first-section {
  padding-top: 20px;
}
.logo-img {
  height: calc(68px - 1.8rem); /* 68px - (0.9rem * 2) = ~40px */
  width: auto;
}

@media (max-width: 991px) {
  .logo-img {
    height: 36px;
  }
}

/* Mobile nav */
@media (max-width: 991.98px) {
    .navbar > .container-fluid {
        position: relative;
        min-height: 68px;
        max-width: 100vw;
        overflow: hidden;
    }
    .navbar-brand {
        width: 110px !important;
        min-width: 110px !important;
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
    }
    .navbar-toggler {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 38px;
        z-index: 20;
        padding: 0.25rem;
        border: 2px solid var(--charcoal) !important;
        border-radius: 4px;
        background: none;
    }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2828,28,28,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
    .navbar-collapse {
        position: fixed !important;
        right: 0 !important;
        left: auto !important;
        top: 68px;
        width: 80% !important;
        max-width: 300px !important;
        height: calc(100vh - 68px);
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: var(--white);
        z-index: 1001;
        box-shadow: -4px 0 20px var(--shadow);
    }
    .navbar-collapse.show { transform: translateX(0); }
    .navbar-nav {
        display: block !important;
        padding: 2rem 1.5rem;
        height: 100%;
    }
    .nav-item {
        margin: 0.6rem 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-link {
        padding: 0.75rem 0 !important;
        display: block;
    }
}

@media (min-width: 992px) {
    .navbar-mobile-container,
    .navbar-collapse.d-lg-none { display: none !important; }
    .d-none.d-lg-flex { display: flex !important; }
    .navbar > .container-fluid { flex-wrap: nowrap; padding: 0 2rem; }
    .navbar-brand {
        width: auto !important;
        min-width: unset !important;
        position: static !important;
        transform: none !important;
        margin-right: 3rem !important;
    }
    .navbar-collapse:not(.d-lg-none) {
        display: flex !important;
        flex-basis: auto;
        flex-grow: 1;
    }
    .navbar-nav {
        flex-direction: row !important;
        gap: 2rem;
        width: auto;
        padding: 0;
        margin: 0 0 0 auto !important;
    }
    .hire-now-btn { padding: 0.6rem 1.8rem !important; font-size: 0.82rem !important; margin-left: 1.5rem !important; }
}

/* === HERO SECTION ============================== */
/* === HERO CAROUSEL ============================= */
.hero-carousel {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

/* Prev / Next arrow buttons */
.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(201, 169, 138, 0.5);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c1c1c;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.hero-carousel-btn:hover {
  background: #1c1c1c;
  color: #fff;
  border-color: #1c1c1c;
}

.hero-carousel-prev { left: 18px; }
.hero-carousel-next { right: 18px; }

/* Dot indicators */
.hero-carousel-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 169, 138, 0.8);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.2s;
}

.hero-dot.active {
  background: #c9a98a;
  transform: scale(1.25);
  border-color: #c9a98a;
}

@media (max-width: 768px) {
  .hero-carousel-btn { width: 36px; height: 36px; font-size: 1.3rem; }
  .hero-carousel-prev { left: 8px; }
  .hero-carousel-next { right: 8px; }
}

/* === HERO SECTION ============================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  padding: 100px 6vw 60px;
  gap: 40px;
  box-sizing: border-box;
}

/* ── Left column ── */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--caramel);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 32px;
  width: fit-content;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--caramel);
  flex-shrink: 0;
}

.hero-left h1 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 22px;
}

.hero-left h1 em {
  font-style: italic;
  color: var(--mocha);
}

.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mocha);
  margin-bottom: 40px;
  max-width: 400px;
}

/* Divider */
.hero .divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  width: 100%;
  background: none;
  border: none;
  height: auto;
}

.hero .divider-line {
  display: block;
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--caramel);
  opacity: 0.4;
}

.hero .divider-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mocha);
  white-space: nowrap;
  flex-shrink: 0;
}
/* Feature list */
.hero .features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  padding: 0;
}

.hero .features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--espresso);
  line-height: 1.5;
}

.feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--caramel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--mocha);
}

/* Chat link */
.chat-nudge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--mocha);
  margin-bottom: 24px;
  cursor: pointer;
  text-decoration: none;
}

.chat-nudge:hover { color: var(--ink); }

/* CTA buttons */
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
}

.hero .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.hero .btn:active { transform: scale(0.98); }

.hero .btn-dark {
  background: var(--ink);
  color: var(--warm-white);
  border: none;
}

.hero .btn-dark:hover { opacity: 0.85; }

.hero .btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--caramel);
}

.hero .btn-outline:hover { background: var(--sand); }

/* Social proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatars {
  display: flex;
}

.hero .avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  margin-left: -9px;
}

.hero .avatar:first-child { margin-left: 0; }

.av1 { background: #c5a882; }
.av2 { background: #a07b52; }
.av3 { background: #7a5a32; }
.av4 { background: #4d3618; }

.proof-text {
  font-size: 12.5px;
  color: var(--mocha);
  line-height: 1.45;
}

.proof-text strong {
  display: block;
  font-size: 13px;
  color: var(--espresso);
}

/* ── Right column ── */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 20px 20px;
}

.photo-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.photo-arch {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  background: var(--sand);
  position: relative;
}

.photo-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.deco-ring {
  position: absolute;
  top: -20px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--caramel);
  opacity: 0.35;
  pointer-events: none;
}

.float-stars {
  position: absolute;
  bottom: 36px;
  left: -28px;
  background: var(--warm-white);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.09);
  font-size: 13px;
  color: var(--espresso);
  white-space: nowrap;
  z-index: 2;
}

.star-icon {
  color: var(--gold);
  font-size: 15px;
}

.float-stat {
  position: absolute;
  top: 48px;
  right: -28px;
  background: var(--warm-white);
  border-radius: var(--radius-card);
  padding: 14px 18px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.09);
  text-align: center;
  min-width: 96px;
  z-index: 2;
}

.stat-number {
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mocha);
}

.deco-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--caramel);
  bottom: 90px;
  right: -12px;
  opacity: 0.4;
  pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 90px 24px 48px;
    gap: 48px;
  }

  .hero-right {
    order: -1;
    padding: 0;
  }

  .photo-wrap {
    max-width: 300px;
    margin: 0 auto;
  }

  .float-stars { left: -10px; font-size: 12px; padding: 8px 14px; }
  .float-stat  { right: -10px; }

  .hero-left h1 { font-size: 34px; }
}

/* ===== CARRUSEL DE FEATURES - VERSIÓN CORREGIDA ===== */
/* ====================================================
   FIX: #moresnap – Full width, centered on mobile
   ==================================================== */
.text-section {
  text-align: center;
}

.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.foreground {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-section {
  padding: 3.5rem 0 4rem;
}

#moresnap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

#moresnap .text-section {
  width: 100%;
  margin: 0 auto;
}

#moresnap .features-carousel-container {
  max-width: 1280px;
  margin: 2rem auto 0;
  padding: 0 1rem;
  overflow: hidden;
}

#moresnap .features-carousel {
  justify-content: center;
  align-items: stretch;
}

#moresnap .feature {
  margin: 0;
}

@media (max-width: 991px) {
  .testimonials-section {
    padding: 2.5rem 0 3rem;
  }

  #moresnap {
    padding: 0 0.75rem;
  }

  #moresnap .features-carousel-container {
    padding: 0 0.25rem;
  }
}


.features-carousel-container {
  position: relative;
  width: 100%;
  margin: 30px 0;
  overflow: hidden;
  border-radius: 12px;
  padding: 0;
}

.features-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.feature {
  flex: 0 0 calc(33.333% - 20px); /* 3 columnas con gap de 20px */
  padding: 0;
  background: #f9f9f9;
  border-radius: 12px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  aspect-ratio: 3 / 4;
  min-height: 460px;
  overflow: hidden;
}

/* Imagen dentro de la tarjeta */
.feature img {
  flex: 0 0 50%;
  height: 50%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: top center;
  aspect-ratio: 1 / 1;
  align-self: center;
  border-radius: 0;
  margin: 0;
  padding: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature b {
  display: block;
  font-size: 1.25rem;
  margin: 12px 14px 8px;
  color: #333;
}

.feature p {
  margin: 0 14px 14px;
  flex: 1 1 auto;
  line-height: 1.4;
  color: #666;
  font-size: 0.85rem;
  overflow-y: auto;
}

/* Puntos indicadores */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ffb347;
  width: 25px;
  border-radius: 5px;
}

/* Botones de navegación */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.prev { left: 10px; }
.next { right: 10px; }

@media (max-width: 767px) {
  .feature {
    flex: 0 0 calc(100% - 20px);
    min-height: 520px;
  }
}

/* === SECCIÓN SERVICIOS ========================= */
#hire {
    padding: 6rem 0 5rem;
    background: var(--charcoal);
    position: relative;
}

.HireMain { position: relative; }

.wave-top, .wave-bottom {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.wave-top svg, .wave-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}
.shape-fill { fill: var(--cream); }

.services-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.8rem;
    color: var(--white);
    font-weight: 600;
    font-style: italic;
}
.services-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.05em;
}

.services-showcase {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0 2rem;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: nowrap;
    scrollbar-width: none;
}
.services-showcase::-webkit-scrollbar { display: none; }

/* Service card nuevo estilo */
.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 260px;
    max-width: 100%;
    cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.18);
}

.service-icon {
    background: var(--blush);
  padding: 0;
    text-align: center;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin: 1.2rem 1.2rem 0.6rem;
    color: var(--charcoal) !important;
    text-decoration: none !important;
  min-height: 3.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-link {
    display: block;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nude-dark) !important;
    text-decoration: none !important;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}
.card-link:hover { color: var(--charcoal) !important; }
.card-link h3 {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    color: var(--nude-dark) !important;
    letter-spacing: 0.1em;
    margin: 0 !important;
}

.service-details {
    padding: 0 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  margin-top: auto;
}
.service-details p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--warm-gray) !important;
    text-align: center;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

/* === TESTIMONIAL CAROUSEL ====================== */
#moresnap {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 3rem;
}

#moresnap .image-section,
#moresnap .text-section {
  min-width: 0;
  width: 100%;
}

#moresnap .image-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

#moresnap .image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

#moresnap .features-carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding-bottom: 4.5rem;
}

#moresnap .features-carousel {
  display: flex;
  gap: 0;
  align-items: stretch;
  will-change: transform;
  transition: transform 0.45s ease;
}

#moresnap .feature {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  padding: 0 0.75rem;
}

#moresnap .feature img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

#moresnap .feature b,
#moresnap .feature p {
  display: block;
  text-align: center;
}

#moresnap .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

#moresnap .carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--nude);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

#moresnap .carousel-dots .dot.active {
  background: var(--charcoal);
  transform: scale(1.15);
}

#moresnap .carousel-nav {
  position: absolute;
  top: calc(50% - 1.5rem);
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(28, 28, 28, 0.72);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  z-index: 2;
}

#moresnap .carousel-nav.prev {
  left: 0.5rem;
}

#moresnap .carousel-nav.next {
  right: 0.5rem;
}

@media (max-width: 991px) {
  #moresnap {
    gap: 2rem;
  }

  #moresnap .image-section {
    display: flex;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  #moresnap .feature {
    flex-basis: 50%;
  }
}

@media (min-width: 1024px) {
  #moresnap .feature {
    flex-basis: 33.3333%;
  }
}

@media (max-width: 767px) {
  #moresnap .features-carousel-container {
    padding-bottom: 4rem;
  }

  #moresnap .feature {
    padding: 0 0.25rem;
  }

  #moresnap .carousel-nav {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* Botón dentro del card */
.service-card .hire-now-btn {
    background: var(--charcoal) !important;
    color: var(--white) !important;
    border: 2px solid var(--charcoal);
    font-size: 0.75rem !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
}
.service-card .hire-now-btn:hover {
    background: transparent !important;
    color: var(--charcoal) !important;
}

/* Carousel indicators */
.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.35);
    border: none;
}
.carousel-indicators .active { background-color: var(--nude-dark) !important; }
.carousel-control-prev-icon, .carousel-control-next-icon { filter: invert(0); }

/* Desktop services controls: larger, always visible, and easier to hit */
#servicesCarouselDesktop {
  position: relative;
}

#servicesCarouselDesktop .carousel-control-prev,
#servicesCarouselDesktop .carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
  z-index: 6;
}

#servicesCarouselDesktop .carousel-control-prev {
  left: -12px;
}

#servicesCarouselDesktop .carousel-control-next {
  right: -12px;
}

#servicesCarouselDesktop .carousel-control-prev-icon,
#servicesCarouselDesktop .carousel-control-next-icon {
  filter: invert(1);
}

#servicesCarouselDesktop .carousel-control-prev:hover,
#servicesCarouselDesktop .carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.28);
}

@media (max-width: 1024px) {
    .service-card { flex: 1 1 calc(50% - 1rem); }
}
@media (max-width: 768px) {
    .services-showcase {
        flex-direction: column;
        align-items: center;
        width: 95%;
        padding: 0 1rem;
    }
  .service-icon {
    height: 180px;
  }
    .service-card {
        flex: 1 1 100%;
        min-width: 100% !important;
        max-width: 100% !important;
    }
    .services-title { font-size: 2rem; }
    #servicesCarouselMobile .carousel-indicators { bottom: -30px; }
    #servicesCarouselMobile { padding-bottom: 40px; }
}

/* === SECCIÓN 4 PASOS ============================ */
        .snaps-section {
            text-align: center;
            padding: 6rem 2rem 0;
            background: var(--cream);
        }
        .snaps-section h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.8rem;
            font-weight: 600;
            margin-bottom: 4rem;
            color: var(--charcoal);
        }
        .highlight {
            color: var(--nude-dark);
            font-style: italic;
        }
        .highlight-black {
            color: var(--charcoal);
            font-style: italic;
        }
        .bold-purple {
            color: var(--charcoal);
            font-weight: 700;
        }
        .section-tag {
            display: inline-block;
            padding: 0.2rem 1rem;
            border: 1px solid var(--nude);
            border-radius: 30px;
            font-size: 0.8rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        /* ----- Carousel wrapper (full width) ----- */
        .carousel-wrapper {
            position: relative;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            overflow: hidden;
        }

        /* ----- Snaps container (the track) ----- */
        .snaps-container {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 0;
            flex-wrap: nowrap;
            width: 100%;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
            margin: 0;
        }

        /* ----- Each snap card ----- */
        .snap-card {
            flex: 1 1 0;           /* equal width on desktop */
            min-width: 0;
            text-align: center;
            padding: 1.5rem 0.75rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: var(--cream);  /* match background */
        }
        .snap-card p {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.92rem;
            margin-bottom: 1.2rem;
            color: var(--warm-gray);
            line-height: 1.6;
        }
        .snap-card p strong {
            font-weight: 700;
            color: var(--charcoal);
        }
        .snap-card img {
            width: 220px;
            height: 220px;
            object-fit: contain;
            margin: 0 auto;
            opacity: 0.85;
        }
        .snap-card .step-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--nude-dark);
            margin-bottom: 0.5rem;
        }

        /* ----- Dividers (visible on desktop) ----- */
        .divider {
            width: 1px;
            height: 180px;
            background: var(--nude);
            margin: 0;
            flex-shrink: 0;
            align-self: center;
        }

        /* ----- Carousel controls (hidden on desktop) ----- */
        .carousel-btn {
            display: none;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(47, 46, 43, 0.6);
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            font-size: 1.6rem;
            cursor: pointer;
            z-index: 10;
            transition: background 0.2s;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }
        .carousel-btn:hover {
            background: rgba(47, 46, 43, 0.85);
        }
        .carousel-btn.prev {
            left: 10px;
        }
        .carousel-btn.next {
            right: 10px;
        }

        /* ----- Dots (hidden on desktop) ----- */
        .carousel-dots {
            display: none;
            justify-content: center;
            gap: 0.6rem;
            margin-top: 1.8rem;
            padding-bottom: 0.5rem;
        }
        .carousel-dots .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--nude);
            border: none;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            padding: 0;
        }
        .carousel-dots .dot.active {
            background: var(--charcoal);
            transform: scale(1.2);
        }

        /* ----- CTA (your original) ----- */
        .cta-container {
            background: var(--white);
            padding: 5rem 2rem 5rem;
            margin-top: 4rem;
            border-top: 1px solid var(--border);
        }
        .cta-container h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            color: var(--charcoal);
        }
        .cta-container p {
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            max-width: 650px;
            margin: 0 auto 2.5rem;
            color: var(--warm-gray);
            line-height: 1.7;
        }
        .cta-button {
            display: inline-block;
            background: var(--charcoal);
            color: #fff;
            padding: 0.9rem 2.8rem;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            font-size: 1rem;
            transition: background 0.25s;
        }
        .cta-button:hover {
            background: #3d3c38;
        }

        /* ----- Responsive: Mobile Carousel (≤768px) ----- */
        @media (max-width: 768px) {
            .snaps-section {
                padding: 3rem 1rem 0;
            }
            .snaps-section h2 {
                font-size: 2.2rem;
                margin-bottom: 2.5rem;
            }

            .carousel-wrapper {
                max-width: 100%;
            }

            .snaps-container {
                justify-content: flex-start;
                margin: 0;
            }

            .snap-card {
                flex: 0 0 100%;
                max-width: 100%;
                padding: 1rem 1.5rem;
                background: var(--cream);
            }
            .snap-card img {
                width: 180px;
                height: 180px;
            }

            /* hide dividers on mobile */
            .divider {
                display: none;
            }

            /* show buttons & dots */
            .carousel-btn {
                display: flex;
            }
            .carousel-dots {
                display: flex;
            }
        }

        /* extra small screens */
        @media (max-width: 480px) {
            .snap-card img {
                width: 150px;
                height: 150px;
            }
            .carousel-btn {
                width: 36px;
                height: 36px;
                font-size: 1.3rem;
            }
        }
/* === SNAP SECTION HERO TAG ===================== */
.main-container.HireMain {
    width: 100%;
}

/* === JOB OFFERS ================================ */
.job-offer-container {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
}
.job-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--charcoal);
}
.job-meta {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: var(--warm-gray);
    font-size: 0.9rem;
}
.job-description h2, .job-description h3 {
    color: var(--charcoal);
    margin-top: 1.5rem;
}
.job-description ul { margin-left: 1.5rem; line-height: 1.8; }

.job-application {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--blush);
    border-radius: 12px;
}
.application-form { display: flex; flex-direction: column; gap: 1rem; }
.application-form input, .application-form textarea {
    padding: 0.9rem 1rem;
    border: 1px solid var(--nude);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--charcoal);
    width: 100%;
}
.apply-btn {
    background: var(--charcoal);
    color: var(--white);
    border: none;
    padding: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
}
.apply-btn:hover { background: var(--nude-dark); }

/* === CHATBOT =================================== */
#fastbots-widget-container {
    position: fixed !important;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}
@media screen and (max-width: 768px) {
    #fastbots-widget-container {
        position: fixed !important;
        bottom: 15px !important;
        right: 15px !important;
        width: 90vw !important;
        max-width: 350px !important;
        height: 60vh !important;
        z-index: 999999 !important;
    }
}

/* === SECCIÓN SNAP / PASO NÚMERO ================ */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--nude);
    color: var(--charcoal);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* === FOOTER ==================================== */
.footer-custom {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    padding: 4rem 0 3rem;
}
.footer-custom h6 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.2rem;
}
.footer-custom a { color: rgba(255,255,255,0.6) !important; transition: color 0.2s; }
.footer-custom a:hover { color: var(--nude) !important; }
.footer-custom ul { padding-left: 0; list-style: none; }
.footer-custom ul li { margin-bottom: 0.6rem; }
.footer-custom ul li:hover { color: var(--nude); }

.contact-info { margin-top: 1rem; color: rgba(255,255,255,0.5); line-height: 1.9; }
.contact-info p { margin-bottom: 0.3rem; }

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    color: var(--white) !important;
    border-radius: 50%;
    font-size: 15px;
    transition: background 0.3s, transform 0.2s;
}
.social-icon:hover { background: var(--nude-dark); transform: scale(1.1); }

.btn-get-hired {
    display: inline-block;
    background: transparent;
    color: var(--white) !important;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    transition: all 0.3s;
    text-decoration: none;
    margin-top: 0.8rem;
}
.btn-get-hired:hover { background: var(--nude-dark); border-color: var(--nude-dark); }

@media (max-width: 768px) {
    .footer-custom .row > div { margin-bottom: 1.8rem; }
    .footer-custom .col-md-4, .footer-custom .col-sm-6 { text-align: center; }
    .btn-get-hired { width: 100%; text-align: center; }
}
@media (max-width: 576px) {
    .footer-custom .col-6 { margin-bottom: 1.5rem; }
    .footer-custom .row > div { flex: 0 0 50%; max-width: 50%; }
    .footer-custom .col-12 { flex: 0 0 100%; max-width: 100%; }
}

/* === WHATSAPP / CALL BUTTONS =================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 50px;
    padding: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-btn:hover { transform: scale(1.1); background: #25D366; }

.call-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 99;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 50px;
    padding: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.call-btn:hover { transform: scale(1.1); background: var(--nude-dark); }

/* === POPUP ===================================== */
.service-popup {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(28,28,28,0.7);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
}
.popup-content {
    background: var(--white);
    border-radius: 12px;
    width: 90%; height: 85%;
    padding: 2rem;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: fadeIn 0.3s ease-in-out;
}
.close-btn {
    position: absolute;
    top: 1.2rem; right: 1.5rem;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--warm-gray);
    background: none;
    border: none;
    line-height: 1;
}
.popup-inner { margin-top: 2.5rem; }
.popup-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-bottom: 1rem; color: var(--charcoal); }
.popup-inner p { font-size: 1rem; line-height: 1.7; color: var(--warm-gray); }

@media (max-width: 768px) {
    .popup-content { width: 95%; height: 90%; padding: 1.2rem; }
    .popup-inner h2 { font-size: 1.5rem; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

#popup-img {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 1.5rem auto;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 6px 20px var(--shadow);
    animation: zoomPulse 6s infinite;
}
@keyframes zoomPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.04); }
    100% { transform: scale(1); }
}