/* ═══════════════════════════════════════════════════════════
   VISUALA STUDIO — Component Styles
   All page styles. Tokens live in colors_and_type.css.
   — Secciones se agregan sesión por sesión en Bloque 5 —
═══════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-dark);
  background: var(--color-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

/* ══════════════════════════════════════════
   CORE TOKENS (local overrides)
══════════════════════════════════════════ */
:root {
  --gutter: clamp(20px, 2.5vw, 120px);
}

/* Shared container — same axis as navbar logo and footer */
.v-container {
  width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.005em;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease,
    transform var(--dur-fast) ease, box-shadow var(--dur-base) ease,
    filter var(--dur-fast) ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

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

.btn-lime {
  background: var(--color-accent);
  color: #121212;
  padding: 11px 20px;
  font-size: 13px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), 0 14px 40px -14px rgba(236, 255, 138, 0.55);
}

.btn-lime:hover {
  transform: scale(1.05);
}

.btn-lime-lg {
  background: var(--color-accent);
  color: #121212;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), 0 18px 48px -12px rgba(236, 255, 138, 0.5);
}

.btn-lime-lg:hover {
  transform: scale(1.05);
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-cream);
  padding: 11px 20px;
  font-size: 13px;
}

.btn-dark:hover {
  transform: scale(1.05);
  filter: brightness(0.92);
}

.btn-sm {
  padding: 11px 20px;
  font-size: 13px;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--color-dark);
  padding: 11px 20px;
  font-size: 13px;
  border: 1px solid var(--color-border-strong);
}

.btn-ghost-dark:hover {
  transform: scale(1.03);
  background: rgba(11, 35, 30, 0.04);
}

.btn-ghost-light {
  background: transparent;
  color: var(--color-cream);
  padding: 11px 20px;
  font-size: 13px;
  border: 1px solid rgba(245, 242, 237, 0.25);
}

.btn-ghost-light:hover {
  transform: scale(1.03);
  background: rgba(245, 242, 237, 0.06);
  border-color: rgba(245, 242, 237, 0.45);
}

.btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.clip-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s var(--ease-reveal);
}

.clip-reveal.is-revealed {
  clip-path: inset(0 0% 0 0);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }

  .clip-reveal {
    clip-path: none !important;
  }
}

/* ══════════════════════════════════════════
   SECCIONES — se agregan abajo, sesión por sesión
   Orden: 12-header · 01-hero · 03-trust-bar · 04-statement
          05-services · 06-differ · 07-testimonials · 08-cases
          09-process · 10-faq · 02-contact · 11-footer · 13-mobile-cta
══════════════════════════════════════════ */