/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

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

  :root {
    --cream:    #F1E8F4;
    --cream-dk: #D6DAB5;
    --sage:     #4A573C;
    --sage-lt:  #D6DAB5;
    --sage-dk:  #4A573C;
    --terra:    #4A573C;
    --terra-lt: #D6DAB5;
    --terra-dk: #4A573C;
    --olive:     #49272F;
    --olive-lt:  #D6DAB5;
    --charcoal: #49272F;
    --warm-wh:  #FDFAF6;
    --serif: 'AESTHICA', Georgia, serif;
    --sans:  'Zalando Sans Expanded', sans-serif;
    --nav-h: 76px;
  }


@font-face {
    font-family: 'AESTHICA';
    src: url('https://51290022.fs1.hubspotusercontent-na1.net/hubfs/51290022/AESTHICA.woff2') format('woff2'),
        url('https://51290022.fs1.hubspotusercontent-na1.net/hubfs/51290022/AESTHICA.woff') format('woff'),
        url('https://51290022.fs1.hubspotusercontent-na1.net/hubfs/51290022/AESTHICA.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Zalando Sans Expanded';
    src: url('https://51290022.fs1.hubspotusercontent-na1.net/hubfs/51290022/ZalandoSansExpanded-Regular.woff2') format('woff2'),
        url('https://51290022.fs1.hubspotusercontent-na1.net/hubfs/51290022/ZalandoSansExpanded-Regular.woff') format('woff'),
        url('https://51290022.fs1.hubspotusercontent-na1.net/hubfs/51290022/ZalandoSansExpanded-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



  html { scroll-behavior: smooth; }
  body  { background: var(--cream); color: var(--charcoal); font-family: var(--sans); font-weight: 300; overflow-x: hidden; }

/*floating button*/

.float-container {
    position: fixed;
    top: 33%;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    width: auto;
  align-items: flex-end;
}

.float-container a {
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 200px;
    height: 30px;
    margin-right: -190px;
    margin-bottom: 10px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: white;
    border-color: #46b8da;
    border-radius: 5px 0 0 5px;
    background-color: #eb690b;
    box-shadow: 0 2px 4px #7d7d7d;
    align-items: center;
    justify-content: flex-start;
    font-family: sans-serif;
}

.float-container a:hover {
    margin-right: 0;
    background-color: #c45100;
    box-shadow: 0 2px 4px #7d7d7d;
}
/*End floating button*/
  /* ── CURSOR (desktop only) ── */
  .cursor-dot, .cursor-ring { display: none; }
  @media (pointer: fine) {
    .cursor-dot {
      display: block; position: fixed; width: 8px; height: 8px;
      background: var(--terra); border-radius: 50%; pointer-events: none;
      z-index: 9999; transform: translate(-50%,-50%);
    }
    .cursor-ring {
      display: block; position: fixed; width: 32px; height: 32px;
      border: 1px solid rgba(184,123,90,.5); border-radius: 50%;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%); transition: all .12s ease;
    }
  }

  /* ── NAV ── */
 .ctaytrad{
    display: flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:space-between;
   align-items:center;

  }

.traduccion{
  display:flex;
  list-style:none;
  align-items:center;
}

.traduccion li{
  padding: 0 10px;
}

.traduccion li a{display:block;}

.traduccion li a img{width:32px; height:32px;}
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 4rem;
    transition: background .4s, backdrop-filter .4s;
  }
  nav.scrolled {
   background: rgba(74,87,60,.92);
    backdrop-filter: blur(12px);
   
  }
  .nav-logo {
    font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
    letter-spacing: .08em; color: var(--warm-wh); text-decoration: none;
    transition: color .3s; white-space: nowrap; position: relative; z-index: 160;
  }
  nav.scrolled .nav-logo { color: var(--charcoal); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-family: var(--sans); font-size: .75rem; font-weight: 300;
    letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
    color: var(--cream); transition: color .3s;
  }
  /*nav.scrolled .nav-links a { color: var(--charcoal); }*/
  .nav-links a:hover { color: var(--terra-lt); !important; font-style:italic; }
  .nav-cta {
    font-family: var(--sans); font-size: .7rem; font-weight: 300;
    letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
    border: 1px solid rgba(255,255,255,.6); color: rgba(255,255,255,.9);
    padding: .55rem 1.4rem; transition: all .3s; white-space: nowrap;display: block;
  }
  nav.scrolled .nav-cta { border-color: var(--terra-lt); color: var(--terra-lt); }
  .nav-cta:hover { background: var(--terra-lt); border-color: var(--terra-lt); color: var(--olive) !important; }

  /* Hamburger */
  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px; z-index: 160; position: relative;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 1.5px;
    background: var(--warm-wh); transition: all .3s;
  }
  nav.scrolled .nav-hamburger span { background: var(--charcoal); }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--warm-wh) !important; }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--warm-wh) !important; }

  /* Mobile Drawer */
  .nav-drawer {
    position: fixed; inset: 0; z-index: 150;
    background: var(--charcoal);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 2.2rem;
    opacity: 0; pointer-events: none;
    transition: opacity .35s ease;
  }
  .nav-drawer.open { opacity: 1; pointer-events: all; }
  .nav-drawer a {
    font-family: var(--serif); font-size: 2.2rem; font-weight: 300;
    font-style: italic; color: var(--warm-wh); text-decoration: none;
    letter-spacing: .06em; transition: color .3s;
  }
  .nav-drawer a:hover { color: var(--terra-lt); }
  .nav-drawer .drawer-cta {
    margin-top: .8rem; font-family: var(--sans); font-size: .72rem;
    letter-spacing: .24em; text-transform: uppercase; font-style: normal;
    border: 1px solid rgba(255,255,255,.3); padding: .85rem 2.5rem;
    color: var(--warm-wh);
  }

 

  /* ── MARQUEE BAND ── */
  .band { background: var(--sage-dk); overflow: hidden; padding: .95rem 0; display: flex; }
  .band-track { display: flex; white-space: nowrap; animation: marquee 22s linear infinite; }
  .band-item {
    font-family: var(--serif); font-style: italic;
    font-size: .95rem; color: var(--sage-lt); padding: 0 2.8rem; letter-spacing: .06em;
  }
  .band-dot { color: var(--terra-lt); }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ── INTRO ── */
  .intro { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 640px; }
  .intro-img-wrap { position: relative; overflow: hidden; }
  .intro-img img { width: 100%; height: 100% !important; object-fit: cover; transition: transform .7s ease; }
  .intro-img-wrap:hover .intro-img { transform: scale(1.04); }
  .intro-img-accent {
    position: absolute; bottom: 2.5rem; right: -1.5rem;
    width: 140px; height: 140px;
    border: 1px solid var(--terra-lt); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream);
  }
  .intro-img-accent span {
    font-family: var(--serif); font-size: .75rem; font-weight: 400;
    letter-spacing: .12em; color: var(--terra-dk); text-align: center; line-height: 1.6;
  }
  .intro-text {
    background: var(--warm-wh);
    display: flex; flex-direction: column; justify-content: center;
    padding: 6rem 5rem;
  }
  .section-eyebrow {
    font-family: var(--sans); font-size: .65rem; font-weight: 300;
    letter-spacing: .28em; text-transform: uppercase;
    color: var(--terra); margin-bottom: 1.4rem;
    display: flex; align-items: center; gap: .8rem;
  }
  .section-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--terra); }
  .intro-text h2 {
    font-family: var(--serif); font-size: clamp(2.2rem,3.5vw,3.8rem);
    font-weight: 300; line-height: 1; margin-bottom: 1.8rem; color: var(--charcoal);
  }
  .intro-text h2 em { font-style: italic; color: var(--terra); }
  .intro-text p { font-size: .88rem; line-height: 1.95; color: var(--charcoal); margin-bottom: 1.2rem; max-width: 440px; }
  .text-link {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: var(--sans); font-size: .72rem; font-weight: 400;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--terra); text-decoration: none; margin-top: 1.2rem;
    border-bottom: 1px solid var(--terra-lt); padding-bottom: .25rem;
    transition: gap .3s, color .3s;
  }
  .text-link:hover { gap: 1rem; color: var(--terra); }

  /* ── SERVICES ── */
  .services { padding: 7rem 4rem; background: var(--cream); }
  .section-header { text-align: center; margin-bottom: 4.5rem; }
  .section-header h2 {
    font-family: var(--serif); font-size: clamp(2.2rem,3.5vw,3.8rem);
    font-weight: 300; color: var(--charcoal); line-height: 1.1;
  }
  .section-header h2 em { font-style: italic; color: var(--terra); }
  .section-header p {
    font-size: .82rem; color: var(--terra); margin-top: 1rem;
    letter-spacing: .04em; line-height: 1.8; max-width: 480px; margin-inline: auto;
  }
  .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1400px; margin: 0 auto; }
  .service-card { position: relative; overflow: hidden;  aspect-ratio: 3/4; }
  .service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
  .service-card:hover img { transform: scale(1.06); }
  .service-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgb(20 16 12 / 86%), #00000038);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; transition: background .4s;
  }
  .service-card:hover .service-card-overlay { background: linear-gradient(0deg, rgb(20 16 12) 0, rgba(20, 16, 12, .15)) }
  .service-tag { font-family: var(--sans); font-size: .6rem; font-weight: 300; letter-spacing: .22em; text-transform: uppercase; color: var(--terra-lt); margin-bottom: .5rem; }
  .service-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: var(--warm-wh); line-height: 1.15; }
  .service-arrow {
    position: absolute; top: 1.5rem; right: 1.5rem;
    width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.35);
    display: none; align-items: center; justify-content: center;
    color: var(--cream); font-size: .85rem; opacity: 0; transform: translateY(-6px); transition: opacity .3s, transform .3s;
  }
  .service-card:hover .service-arrow { opacity: 1; transform: translateY(0); }

/* Contenedor del texto principal */
.service-main {
  transform: translateY(0);
  transition: transform .5s ease;
}

/* Párrafo oculto inicialmente */
.service-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-top: 1rem;

  transform: translateY(100%);
  opacity: 0;

  transition: transform .5s ease, opacity .4s ease;
}

/* Animación en hover */
.service-card:hover .service-main {
  transform: translateY(-40px);
}

.service-card:hover .service-desc {
  transform: translateY(0);
  opacity: 1;
}

  /* ── FEATURE ── */
  .feature {position:relative; display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; background: var(--sage-dk); }
  .feature-text {position:relative; display: flex; flex-direction: column; justify-content: center; padding: 6rem 5rem; color: var(--warm-wh); }
  .feature-text .section-eyebrow { color: var(--sage-lt); }
  .feature-text .section-eyebrow::before { background: var(--sage-lt); }
  .feature-text h2 { color:var(--cream); font-family: var(--serif); font-size: clamp(2.2rem,3.5vw,3.8rem); font-weight: 300; line-height: 1; margin-bottom: 1.5rem; }
  .feature-text h2 em { font-style: italic; color: var(--terra-lt); }
  .feature-text p { font-size: .85rem; line-height: 1.9; color: var(--cream); max-width: 400px; margin-bottom: 2.5rem; }
  .btn-outline-light {
    display: inline-block; text-decoration: none;
    font-family: var(--sans); font-size: .7rem; font-weight: 300;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--cream); border: 1px solid var(--cream);
    padding: .85rem 2.2rem; transition: all .3s; align-self: flex-start;
  }
  .btn-outline-light:hover { background: var(--cream); border-color: var(--cream); color:var(--terra); }
  .feature-img { overflow: hidden; }
  .feature-img img { width: 100%; height: 100% !important; object-fit: cover; }

  /* ── GALLERY ── */
  .gallery { padding: 7rem 4rem; background: var(--warm-wh); }
  .gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: .8rem; max-width: 1200px; margin: 4rem auto 0;
  }
  .gallery-item { position: relative; overflow: hidden; cursor: pointer; background: var(--cream); }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; aspect-ratio: 1/1.1; }
  .gallery-item:nth-child(2) { aspect-ratio: 1/1; }
  .gallery-item:nth-child(3) { aspect-ratio: 1/1; }
  .gallery-item:nth-child(4) { grid-column: 3 / 5; grid-row: 2 / 4; aspect-ratio: 1/1.1; }
  .gallery-item:nth-child(5) { aspect-ratio: 1/1; }
  .gallery-item:nth-child(6) { aspect-ratio: 1/1; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; display: block; }
  .gallery-item:hover img { transform: scale(1.07); }
  .gallery-hover { position: absolute; inset: 0; background: rgba(78,99,71,0); display: flex; align-items: center; justify-content: center; transition: background .4s; }
  .gallery-item:hover .gallery-hover { background: rgba(78,99,71,.45); }
  .gallery-hover-icon {
    width: 52px; height: 52px; border: 1px solid rgba(253,250,246,.7);
    display: flex; align-items: center; justify-content: center;
    color: var(--cream); font-size: 1.3rem; opacity: 0; transform: scale(.8); transition: opacity .35s, transform .35s;
  }
  .gallery-item:hover .gallery-hover-icon { opacity: 1; transform: scale(1); }
  .gallery-tabs { display: flex; gap: 0; justify-content: center; border-bottom: 1px solid var(--cream-dk); margin-top: 2.5rem; flex-wrap: wrap; }
  .g-tab {
    font-family: var(--sans); font-size: .68rem; font-weight: 300;
    letter-spacing: .2em; 
    padding: .7rem 1rem; cursor: pointer;
    border-bottom: 2px solid transparent; color: #9a9188;
    transition: color .3s, border-color .3s;
    background: none; border-top: none; border-left: none; border-right: none;
  }
  .g-tab.active, .g-tab:hover { color: var(--terra-dk); border-bottom-color: var(--terra); }

  /* ── TESTIMONIALS ── */
  .testimonials { padding: 7rem 4rem; background: var(--cream); text-align: center; }
  .testi-track { overflow: hidden; position: relative; }
  .testi-slide { display: none; animation: fadeIn .6s ease; }
  .testi-slide.active { display: block; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
  blockquote {
    font-family: var(--serif); font-style: italic;
    font-size: clamp(1.3rem,2.5vw,2.5rem); font-weight: 300;
    line-height: 1.5; color: var(--charcoal); max-width: 760px; margin: 0 auto 2rem;
  }
  .testi-author { font-family: var(--sans); font-size: .7rem; font-weight: 300; letter-spacing: .22em; text-transform: uppercase; color: var(--terra); }
  .testi-dots { display: flex; gap: .5rem; justify-content: center; margin-top: 2.5rem; }
  .t-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--warm-wh); cursor: pointer; transition: background .3s; }
  .t-dot.active { background: var(--terra); }

  /* ── PROCESS ── */
  .process { padding: 6rem 4rem; background: var(--terra); position: relative; overflow: hidden}
.process h2{color:var(--terra-lt);}
.process h2 em{color:var(--cream);}
.process::before {
    content: 'PRIMESTEM\2122'; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-family: var(--serif); font-size: clamp(3rem, 9vw, 10rem);
    font-weight: 300; letter-spacing: .1em;
    color: rgba(9,10,7,.08); white-space: nowrap; pointer-events: none;
  }

  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1100px; margin: 4rem auto 0; }
  .step { text-align: center; padding: 2rem 1.5rem; }
  .step-num { font-family: var(--serif); font-size: 3.5rem; font-weight: 300; color: var(--cream); line-height: 1; display: block; margin-bottom: .8rem; }
  .step h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--terra-lt); margin-bottom: .8rem; }
  .step p { font-size: .8rem; line-height: 1.85; color: var(--terra-lt); }

  /* ── CTA BANNER ── */
  .cta-banner { position: relative; overflow: hidden; padding: 7rem 4rem; text-align: center; background: var(--charcoal); }
  .cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 120%, rgba(184,123,90,.18) 0%, transparent 65%); }
  .cta-banner h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 300; color: var(--cream); line-height: 1.1; margin-bottom: 1.5rem; position: relative; }
  .cta-banner h2 em { font-style: italic; color: var(--terra-lt); }
  .cta-banner p { font-size: .85rem; letter-spacing: .06em; color: var(--cream); margin-bottom: 2.8rem; position: relative; }
  .btn-solid {
    display: inline-block; text-decoration: none;
    font-family: var(--sans); font-size: .72rem; font-weight: 300;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--charcoal); background: var(--terra-lt);
    padding: 1rem 3.2rem; transition: all .3s; position: relative;
  }
  .btn-solid:hover { background: var(--terra); color: var(--cream); }


 /* ══════════════════════════════════════════
     SECTION 2 — CERTIFICATIONS
  ══════════════════════════════════════════ */
  .certifications {
    padding: 5.5rem 4rem;
    background: var(--warm-wh);
    position: relative; overflow: hidden;
  }
  /* Subtle diagonal line decoration */
  .certifications::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, rgba(214,218,181,.6), transparent);
  }
  .certifications::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, rgba(214,218,181,.6), transparent);
  }

  .cert-wm {
    position: absolute; pointer-events: none; user-select: none;
    font-family: var(--serif); font-weight: 300;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: clamp(4rem, 9vw, 9rem); font-style: italic; line-height: 1;
    color: rgba(74,87,60,.04); white-space: nowrap; letter-spacing: .1em;
  }

  .cert-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: 3.5rem;
    position: relative; z-index: 1;
  }
  .cert-header { text-align: center; }
  .section-eyebrow {
    font-family: var(--sans); font-size: .6rem; font-weight: 300;
    letter-spacing: .3em; text-transform: uppercase;
    color: var(--terra); margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: .8rem;
  }
  .section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--sage); }
  .section-eyebrow.center { justify-content: center; }
  .section-eyebrow.center::before { display: none; }

  .cert-header h2 {
    font-family: var(--serif); font-size: clamp(2rem,3.2vw,3rem);
    font-weight: 300; color: var(--charcoal); line-height: 1.1;
  }
  .cert-header h2 em { font-style: italic; color: var(--terra); }
  .cert-header p {
    font-size: .8rem; color: var(--terra); margin-top: .9rem;
    line-height: 1.85; max-width: 420px; margin-inline: auto; letter-spacing: .03em;
  }

  /* Logos row */
  .cert-logos {
    display: flex; align-items: center; justify-content: center;
    gap: 3rem; flex-wrap: wrap;
  }
  .cert-logo-item {
    display: flex; flex-direction: column; align-items: center; gap: .9rem;
    opacity: 1; transform: translateY(16px);
    transition: opacity .7s ease, transform .7s ease;
  }


.cert-logo-item img{width:100%; height: auto;}
  .cert-logo-item.visible { opacity: 1; transform: translateY(0); }
  .cert-logo-item:nth-child(2) { transition-delay: .1s; }
  .cert-logo-item:nth-child(3) { transition-delay: .2s; }
  .cert-logo-item:nth-child(4) { transition-delay: .3s; }
  .cert-logo-item:nth-child(5) { transition-delay: .4s; }

  .cert-logo-box {
    width: 88px; height: 88px;
    border: 1px solid rgba(74,87,60,.18); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream);
    transition: border-color .3s, transform .3s;
  }
  .cert-logo-item:hover .cert-logo-box {
    border-color: var(--sage); transform: translateY(-3px);
  }
  .cert-logo-box svg { width: 40px; height: 40px; }
  .cert-logo-name {
    font-family: var(--sans); font-size: .8rem; font-weight: 400;
    letter-spacing: .2em;
    color: var(--terra); text-align: center;
  }

  /* Divider line between cert logos */
  .cert-divider {
    width: 1px; height: 52px; background: rgba(74,87,60,.12);
    flex-shrink: 0;
  }

  /* ── FOOTER ── */
  footer { background: var(--charcoal); color: var(--cream); padding: 3.5rem 4rem 2rem; border-top: 1px solid rgba(255,255,255,.07); }
  .footer-inner { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom:2rem; gap: 4rem; flex-wrap: wrap; }
  .footer-brand { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; color: var(--warm-wh); letter-spacing: .08em; display: block; margin-bottom: 1rem; }
  .footer-tagline { font-family: var(--serif); font-style: italic; font-size: .85rem; color: rgba(253,250,246,.4); max-width: 240px; line-height: 1.7; }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: .6rem; }
  .footer-links a { font-size: .75rem; color: var(--cream); text-decoration: none; letter-spacing: .08em; transition: color .3s; }
  .footer-links a:hover { color: var(--terra-lt); font-style:italic;}
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.8rem; display: flex; justify-content: space-between; font-size: .68rem; color: var(--cream); letter-spacing: .1em; }
  .footer-bottom a{ font-size: .68rem; color: var(--cream); text-decoration: none; letter-spacing: .1em; transition: color .3s; }
  .footer-bottom a:hover { color: var(--terra-lt); }
  /* ── SCROLL REVEAL ── */
  .reveal { opacity: 1; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .22s; }
  .reveal-delay-3 { transition-delay: .34s; }
  .reveal-delay-4 { transition-delay: .46s; }


  /* ── DECORATIVE DETAILS ── */
 
.side-label {
    position: absolute; right: 4rem; bottom: 3.5rem; z-index: 2;
    writing-mode: vertical-rl; font-family: var(--sans); font-size: .7rem;
    font-weight: 300; letter-spacing: .28em; text-transform: uppercase;
    color: rgba(253,250,246,.3); display: flex; align-items: center; gap: .7rem;
  }

.side-label::after { content: ''; display: block; width: 1px; height: 52px; background: rgba(253,250,246,.18); }
/* Asegura que el contenido esté encima */
.section-with-watermark > * {
  position: relative;
  z-index: 1;
}

  /* ══════════════════════════════════════════════
     TABLET  768px – 1024px
  ══════════════════════════════════════════════ */
  @media (max-width: 1024px) {

    nav { padding: 0 2.5rem; }
    .nav-links { gap: 1.6rem; }
    .nav-links a { font-size: .68rem; }

    .intro { min-height: 480px; }
    .intro-text { padding: 4rem 3rem; }
    .intro-img-accent { right: -.8rem; width: 110px; height: 110px; }
    .intro-img-accent span { font-size: .68rem; }

    .services { padding: 5rem 2.5rem; }
    .services-grid { gap: 1rem; }
    
      .certifications { padding: 4.5rem 2.5rem; }
    .cert-logos { gap: 2rem; }
    .cert-divider { display: none; }

    .feature { min-height: auto; }
    .feature-text { padding: 4rem 3rem; }

    .gallery { padding: 5rem 2.5rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-column: auto; grid-row: auto; aspect-ratio: 1/1; }
    .gallery-item:nth-child(4) { grid-column: auto; grid-row: auto; aspect-ratio: 1/1; }
    .gallery-item { aspect-ratio: 1/1; }

    .process { padding: 5rem 2.5rem; }
    .process-steps { grid-template-columns: repeat(2, 1fr); margin-top: 3rem; }

    .testimonials { padding: 5rem 2.5rem; }
    .cta-banner { padding: 5rem 2.5rem; }

    /* Footer */
    footer { padding: 3rem 2.5rem 2rem; }
    .footer-inner { gap: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  }

  /* ══════════════════════════════════════════════
     MOBILE  ≤ 767px
  ══════════════════════════════════════════════ */
  @media (max-width: 767px) {
    :root { --nav-h: 64px; }

    /* Nav */
    nav { padding: 0 1.4rem; }
    .nav-links { display: none; }
    .nav-cta  { display: none; }
    .nav-hamburger { display: flex; }
    .nav-logo { font-size: 1.15rem; }

    /* Hero */
    .hero { height: 100svh; min-height: 600px; }
    .slide-eyebrow { font-size: .58rem; letter-spacing: .22em; }
    .slide-title { font-size: clamp(2.1rem, 8.5vw, 3rem); }
    .slide-sub { font-size: .76rem; margin-bottom: 2rem; max-width: 320px; }
    .hero-btn { padding: .72rem 1.8rem; font-size: .62rem; letter-spacing: .18em; }
    .carousel-arrows { bottom: 1.4rem; right: 1.4rem; gap: .5rem; }
    .arr-btn { width: 36px; height: 36px; font-size: .85rem; }
    .carousel-dots { bottom: 1.6rem; }
    .dot { width: 20px; }
    .dot.active { width: 34px; }

    /* Band */
    .band-item { font-size: .8rem; padding: 0 1.6rem; }

    /* Intro */
    .intro { grid-template-columns: 1fr; min-height: auto; }
    .intro-img-wrap { min-height: 280px; }
    .intro-img-accent { right: 1rem; bottom: 1rem; width: 86px; height: 86px; }
    .intro-img-accent span { font-size: .6rem; }
    .intro-text { padding: 3rem 1.6rem; }
    .intro-text p { max-width: 100%; }
    
     /* Certifications */
    .certifications { padding: 3.5rem 1.6rem; }
    .cert-logos { gap: 1.4rem; }
    .cert-logo-box { width: 72px; height: 72px; }
    .cert-logo-box svg { width: 32px; height: 32px; }
    .cert-divider { display: none; }

    /* Services */
    .services { padding: 4rem 1.4rem; }
    .section-header { margin-bottom: 2.5rem; }
    .services-grid { grid-template-columns: 1fr; gap: .9rem; }
    .service-card { aspect-ratio: 4/3; }

    /* Feature */
    .feature { grid-template-columns: 1fr; min-height: auto; }
    .feature-img { min-height: 260px; order: -1; }
    .feature-text { padding: 3rem 1.6rem; }
    .feature-text p { max-width: 100%; }
    .btn-outline-light { align-self: stretch; text-align: center; }

    /* Gallery */
    .gallery { padding: 4rem 1.4rem; }
    .g-tab { padding: .55rem .9rem; font-size: .58rem; letter-spacing: .12em; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: 2rem; }
    .gallery-item { aspect-ratio: 1/1 !important; grid-column: auto !important; grid-row: auto !important; }

    /* Testimonials */
    .testimonials { padding: 4rem 1.4rem; }
    blockquote { font-size: clamp(1.1rem, 4.5vw, 1.4rem); }

    /* Process */
    .process { padding: 4rem 1.4rem; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: .8rem; margin-top: 2rem; }
    .step { padding: 1.4rem .8rem; }
    .step-num { font-size: 2.6rem; }
    .step h3 { font-size: 1rem; }

    /* CTA */
    .cta-banner { padding: 4.5rem 1.6rem; }
    .cta-banner h2 br { display: none; }
    .btn-solid { padding: .9rem 2rem; }

    /* Footer */
    footer { padding: 3rem 1.6rem 1.8rem; }
    .footer-inner { flex-direction: column; gap: 2rem; }
    .footer-tagline { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; font-size: .6rem; }
  }

  /* Extra small ≤ 390px */
  @media (max-width: 390px) {
    .slide-title { font-size: 1.95rem; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { aspect-ratio: 4/3 !important; }
    .g-tab { padding: .5rem .7rem; font-size: .56rem; }
    .cert-logos { gap: 1rem; }
    .cert-logo-box { width: 62px; height: 62px; }
  }

/*preloader*/


#preloader {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background-color: #f1e7f3; /* o el color de fondo de tu marca */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-logo {
   width: 25%;
  animation: pulse 1.4s ease-in-out infinite;
}

/* Animación sutil del logo mientras se carga, opcional */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

/* Estado de salida */
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Evita el scroll mientras carga (opcional) */
body.loading {
  overflow: hidden;
}