@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,400&display=swap');
@font-face {
  font-family: acedigate;
  src: url('../fonts/acedigate.ttf');
}
@font-face {
  font-family: chapaza;
  src: url('../fonts/chapaza.ttf');
}
:root {
  --white: #ffffff;
  --off-white: #f8f7f4;
  --cream: #f3f1ec;
  --light: #ede9e1;
  --muted: #c8c2b6;
  --border: #e2ddd5;
  --text-light: #9b9589;
  --text-mid: #6b6460;
  --text: #2c2820;
  --text-dark: #1a1612;
  --ink: #0f0d0b;

  --accent: #1a6b5c;
  --accent-light: #e8f4f1;
  --accent-mid: #2d9b87;
  --accent-hover: #135447;
  --accent2: #c4622d;
  --accent2-light: #fdf0eb;

  --font: sans-serif;
  --font-serif: serif;
  --font-sign : acedigate;
  --r: 14px;
  --r-sm: 8px;
  --r-lg: 24px;
  --r-xl: 40px;
  --shadow: 0 2px 20px rgba(44,40,32,.08);
  --shadow-md: 0 8px 40px rgba(44,40,32,.12);
  --shadow-lg: 0 20px 60px rgba(44,40,32,.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.sign{
  font-family: acedigate;
}

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400;
  color: var(--ink); letter-spacing: -0.3px;
}
.nav-logo img { width: 50px; height: 50px; border-radius: 8px; filter: drop-shadow(0 1px 1px #000); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: .875rem; color: var(--text-mid); font-weight: 400;
  transition: color .2s; letter-spacing: .1px;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--accent); transform: scaleX(0);
  transition: transform .2s; transform-origin: left;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--ink); color: var(--white);
  padding: .55rem 1.35rem; border-radius: 100px;
  font-size: .875rem; font-weight: 500; letter-spacing: .1px;
  transition: all .2s; border: none;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

.burger { display: none; background: none; border: none; color: var(--ink); font-size: 1.25rem; padding: 4px; }

/* Mobile menu */
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(255,255,255,.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay a { font-size: 1.6rem; font-family: var(--font-serif); font-weight: 300; color: var(--text); }
.mobile-overlay .close-x { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; font-size: 1.5rem; color: var(--text-mid); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: .7rem 1.5rem; border-radius: 100px;
  font-size: .9rem; font-weight: 500; transition: all .2s;
  border: 1.5px solid transparent; cursor: pointer; font-family: inherit;
}
.btn-dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-dark:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,107,92,.25); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,107,92,.3); }
.btn-ghost { background: transparent; color: var(--accent); border-color: var(--accent-light); }
.btn-ghost:hover { background: var(--accent-light); }

/* ─── TYPOGRAPHY ─── */
.serif { font-family: var(--font-serif); }
.label-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); background: var(--accent-light);
  padding: .3rem .9rem; border-radius: 100px;
  margin-bottom: 1.25rem;
}
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.03em; }
.display-1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; font-family: var(--font-serif); }
.display-2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; font-family: var(--font-serif); }
.display-3 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 300; font-family: var(--font-serif); }
.lead { font-size: 1.1rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

/* ─── LAYOUT ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 5%; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ─── CHIP / BADGE ─── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; padding: .25rem .75rem; border-radius: 100px;
  font-weight: 500;
}
.chip-green { background: var(--accent-light); color: var(--accent); border: 1px solid rgba(26,107,92,.15); }
.chip-orange { background: var(--accent2-light); color: var(--accent2); border: 1px solid rgba(196,98,45,.15); }
.chip-gray { background: var(--cream); color: var(--text-mid); border: 1px solid var(--border); }

/* ─── CARDS ─── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
  transition: all .3s; position: relative; overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }

/* ─── DIVIDER ─── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ─── FOOTER ─── */
footer {
  background: var(--ink); color: rgba(255,255,255,.55);
  padding: 72px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand h3 { font-family: var(--font-serif); color: var(--white); font-size: 1.2rem; font-weight: 300; margin-bottom: .5rem; }
.footer-brand p { font-size: .85rem; line-height: 1.65; max-width: 240px; margin-top: .5rem; }
.footer-col h4 { font-size: .7rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.35); margin-bottom: 1.1rem; font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .8rem; flex-wrap: wrap; gap: 1rem; }
.social-row { display: flex; gap: 1.25rem; }
.social-row a { color: rgba(255,255,255,.4); font-size: 1rem; transition: color .2s; }
.social-row a:hover { color: var(--white); }

/* ─── WHATSAPP ─── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35); transition: all .25s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.45); }

/* ─── COOKIE ─── */
.cookie-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 1.1rem 5%; box-shadow: 0 -4px 30px rgba(44,40,32,.1);
}
.cookie-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cookie-bar p { font-size: .875rem; color: var(--text-mid); }
.cookie-bar a { color: var(--accent); }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-accept { background: var(--ink); color: #fff; border: none; padding: .5rem 1.25rem; border-radius: 100px; font-size: .8rem; font-weight: 500; }
.cookie-decline { background: transparent; color: var(--text-mid); border: 1px solid var(--border); padding: .5rem 1rem; border-radius: 100px; font-size: .8rem; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.anim-up { animation: fadeUp .7s ease both; }
.anim-up.d1 { animation-delay: .1s; }
.anim-up.d2 { animation-delay: .2s; }
.anim-up.d3 { animation-delay: .3s; }
.anim-up.d4 { animation-delay: .4s; }

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .section { padding: 70px 0; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

img{
     draggable:false;
     user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}