/* ==============================
   TOKENS
================================ */
:root {
  --cream:        #FAF7F2;
  --cream-2:      #F4EDE2;
  --sage:         #7B9E8A;
  --sage-light:   #BDD3C4;
  --sage-soft:    #E8F0EB;
  --terra:        #C17F5A;
  --terra-light:  #E8C4A8;
  --terra-pale:   #F5E6D8;
  --rose:         #D4A5A5;
  --coal:         #1E1E1E;
  --mid:          #5A5A5A;
  --light:        #9A9A9A;
  --white:        #FFFFFF;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==============================
   RESET + BASE
================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--coal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.br-d { display: none; }
@media (min-width: 768px) { .br-d { display: inline; } }
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ==============================
   CUSTOM CURSOR (desktop only)
================================ */
@media (pointer: fine) {
  body { cursor: none; }
  a, button { cursor: none; }
}
.cursor {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--terra);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s var(--ease-out-expo), opacity 0.2s;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--terra);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s;
}
.cursor.active { transform: translate(-50%,-50%) scale(1.6); opacity: 0.5; }
@media (max-width: 768px) { .cursor, .cursor-dot { display: none; } }

/* ==============================
   SCROLL REVEAL
================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.revealed { opacity: 1 !important; transform: none !important; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ==============================
   NAV
================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(250,247,242,.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--coal);
  letter-spacing: 0.01em;
}
.nav-logo-img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  height: 72px;
  width: 72px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--mid);
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--terra);
  transition: width 0.3s var(--ease-out-expo);
}
.nav-link:hover { color: var(--coal); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--white);
  background: var(--terra);
  padding: 11px 24px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 16px rgba(193,127,90,.3);
  margin-left: 8px;
}
.nav-cta:hover { background: #aa6e4a; transform: translateY(-1px); box-shadow: 0 4px 24px rgba(193,127,90,.4); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--coal);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 20px 28px 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}
.mobile-menu.open { max-height: 400px; }
.mobile-link {
  font-size: 1rem;
  color: var(--mid);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--coal); }
.mobile-cta {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--terra);
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

/* ==============================
   BUTTONS
================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 500;
  color: var(--white);
  background: var(--terra);
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(193,127,90,.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(193,127,90,.45); }
.btn-primary:active { transform: translateY(0); }
.btn-primary.full { width: 100%; font-size: 1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--coal);
  padding: 16px 32px;
  border-radius: 100px;
  border: 1.5px solid rgba(30,30,30,.15);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: var(--terra); color: var(--terra); transform: translateY(-2px); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateY(3px); }

/* ==============================
   SECTION LABELS
================================ */
.section-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
  display: block;
}
.section-tag.center { text-align: center; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--coal);
  margin-bottom: 28px;
}
.section-title.center { text-align: center; }

/* ==============================
   HERO
================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--cream);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-actions { justify-content: center; }
}

/* blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: blob-float 8s ease-in-out infinite;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--terra-light) 0%, transparent 70%);
  top: -100px; right: -100px;
  opacity: .4;
  animation-delay: 0s;
}
.blob-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  opacity: .35;
  animation-delay: -3s;
}
.blob-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
  top: 40%; right: 30%;
  opacity: .2;
  animation-delay: -5s;
}
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -20px) scale(1.05); }
  66%       { transform: translate(-15px, 15px) scale(0.97); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
}
.tag-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terra);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: .6; }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--coal);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-title .line { display: block; }
.hero-title em { font-style: italic; color: var(--terra); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.8;
}
@media (max-width: 900px) { .hero-sub { margin: 0 auto 40px; } }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-3d {
  perspective: 1000px;
  width: 100%;
  max-width: 420px;
}
.hero-photo-wrap {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  border-radius: 24px;
}
.hero-photo-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--sage-light) 0%, var(--terra-light) 50%, var(--cream-2) 100%);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.photo-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
}
.hero-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  transform: translateZ(20px);
}
.hero-badge strong {
  font-size: 1.4rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--terra);
}
.hero-badge small { font-size: .75rem; color: var(--light); }
.hero-pill {
  position: absolute;
  top: 24px; left: -20px;
  background: var(--coal);
  color: var(--white);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 8px 18px;
  border-radius: 100px;
  transform: translateZ(30px);
}
.hero-float-ring {
  position: absolute;
  top: -30px; right: -30px;
  width: 180px; height: 180px;
  border: 1.5px solid rgba(193,127,90,.2);
  border-radius: 50%;
  animation: spin-ring 20s linear infinite;
  pointer-events: none;
}
@keyframes spin-ring { to { transform: rotate(360deg); } }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--light);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--terra), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: .6; }
  50%       { transform: scaleY(0.5); opacity: 1; }
}

/* ==============================
   TRUST BAR
================================ */
.trust-bar {
  background: var(--coal);
  padding: 32px 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 48px;
  text-align: center;
}
.trust-item strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
}
.trust-item span {
  font-size: .78rem;
  color: rgba(250,247,242,.4);
  letter-spacing: .05em;
}
.trust-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
}
@media (max-width: 640px) {
  .trust-sep { display: none; }
  .trust-item { padding: 10px 28px; }
}

/* ==============================
   SOBRE MÍ
================================ */
.sobre {
  padding: 120px 0;
  background: var(--white);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 60px; }
}

.sobre-visual { position: relative; }
.sobre-img-wrap {
  position: relative;
  perspective: 1000px;
}
.sobre-img-bg {
  position: absolute;
  top: 20px; left: 20px;
  right: -20px; bottom: -20px;
  background: var(--terra-pale);
  border-radius: 20px;
  z-index: 0;
}
.sobre-img-placeholder {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--sage-light) 0%, var(--terra-light) 70%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  letter-spacing: .06em;
  transition: transform 0.3s var(--ease-out-expo);
}
.sobre-quote-float {
  position: absolute;
  z-index: 2;
  bottom: -28px; right: -28px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .9rem;
  color: var(--coal);
  line-height: 1.5;
  max-width: 200px;
  transition: transform 0.4s var(--ease-out-expo);
}
.sobre-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.sobre-ring-1 {
  width: 120px; height: 120px;
  border: 1.5px solid rgba(193,127,90,.2);
  top: -30px; right: 20%;
  animation: spin-ring 25s linear infinite;
}
.sobre-ring-2 {
  width: 80px; height: 80px;
  border: 1px solid rgba(123,158,138,.25);
  bottom: 10%; left: -20px;
  animation: spin-ring 18s linear infinite reverse;
}

.sobre-body p {
  color: var(--mid);
  margin-bottom: 16px;
  font-size: 1rem;
}
.sobre-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.stag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--sage-soft);
  color: var(--sage);
}

/* ==============================
   SERVICIOS
================================ */
.servicios {
  padding: 120px 0;
  background: var(--cream);
}
.servicios-header { margin-bottom: 60px; }
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 640px) {
  .servicios-grid { grid-template-columns: 1fr; }
}

.servicio-card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 2px 20px rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.04);
  perspective: 800px;
}
.servicio-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
}
.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(193,127,90,.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}
.servicio-card:hover .card-glow { opacity: 1; }
.card-inner {
  position: relative;
  z-index: 1;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.servicio-num {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--terra);
  opacity: .5;
}
.servicio-icon-wrap {
  width: 52px; height: 52px;
  background: var(--terra-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out-expo);
}
.servicio-card:hover .servicio-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}
.servicio-icon { font-size: 1.4rem; line-height: 1; }
.servicio-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--coal);
  margin-top: 4px;
}
.servicio-card p {
  font-size: .9rem;
  color: var(--mid);
  flex: 1;
  line-height: 1.7;
}
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--terra);
  margin-top: 8px;
  width: fit-content;
  transition: gap 0.2s;
}
.card-cta:hover { gap: 10px; }

/* ==============================
   MARQUEE
================================ */
.marquee-section {
  background: var(--terra-pale);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track { overflow: hidden; }
.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--terra);
}
.marquee-section:hover .marquee-content { animation-play-state: paused; }
.marquee-content .sep { opacity: .4; font-size: 1.1rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==============================
   QUOTE
================================ */
.quote-section {
  background: var(--coal);
  padding: 120px 28px;
  text-align: center;
}
.quote-inner { max-width: 760px; margin: 0 auto; }
.quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: .6;
  color: var(--terra);
  opacity: .3;
  margin-bottom: 12px;
}
.quote-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 28px;
}
.quote-section cite {
  font-size: .85rem;
  color: var(--terra-light);
  font-style: normal;
  letter-spacing: .06em;
}

/* ==============================
   CONTACTO
================================ */
.contacto {
  padding: 120px 0;
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}
.contacto-bg-shape {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--terra-pale) 0%, transparent 60%);
  pointer-events: none;
}
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contacto-grid { grid-template-columns: 1fr; gap: 60px; }
}

.contacto-desc {
  color: var(--mid);
  margin-bottom: 40px;
  max-width: 360px;
}
.contacto-info { display: flex; flex-direction: column; gap: 16px; }
.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.info-item:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.info-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--terra-pale);
  color: var(--terra);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-item div:last-child { display: flex; flex-direction: column; gap: 2px; }
.info-item strong { font-size: .85rem; font-weight: 600; color: var(--coal); }
.info-item span { font-size: .8rem; color: var(--light); }

.form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(0,0,0,.04);
}
@media (max-width: 480px) { .form-card { padding: 28px 24px; } }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
}
.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--coal);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(123,158,138,.12);
}

/* ==============================
   FOOTER
================================ */
.footer {
  background: var(--coal);
  padding: 56px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .footer-links { justify-content: center; }
}
.footer-logo {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.footer-brand p { font-size: .8rem; color: rgba(250,247,242,.35); }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: .82rem;
  color: rgba(250,247,242,.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--terra-light); }
.footer-copy {
  font-size: .78rem;
  color: rgba(250,247,242,.2);
  text-align: right;
}
@media (max-width: 640px) { .footer-copy { text-align: center; } }

/* ==============================
   WA FLOAT
================================ */
.wa-float {
  position: fixed;
  bottom: 32px; right: 28px;
  z-index: 400;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.5); }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .4;
  animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .4; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ==============================
   TILT CARD
================================ */
.tilt-card { transform-style: preserve-3d; }

/* ==============================
   FORM SUCCESS
================================ */
.form-success {
  text-align: center;
  padding: 48px 20px;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--coal);
}
.form-success p { color: var(--mid); }

/* ==============================
   INSTAGRAM SECTION
================================ */
.insta-section {
  padding: 100px 0;
  background: var(--white);
}
.insta-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.insta-header .section-title { margin-bottom: 0; }
.insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--coal);
  border: 1.5px solid rgba(44,44,44,.15);
  padding: 10px 20px;
  border-radius: 100px;
  transition: border-color .2s, color .2s, background .2s;
  white-space: nowrap;
}
.insta-follow-btn:hover {
  border-color: var(--terra);
  color: var(--terra);
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 640px) {
  .insta-grid { grid-template-columns: 1fr; gap: 16px; }
  .insta-header { flex-direction: column; align-items: flex-start; }
}
.insta-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}
.insta-thumb {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream-2);
}
.insta-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease-out-expo);
}
.insta-card:hover .insta-thumb img { transform: scale(1.05); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.insta-card:hover .insta-overlay { background: rgba(0,0,0,.25); }
.insta-play {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity .3s, transform .3s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}
.insta-card:hover .insta-play { opacity: 1; transform: scale(1); }
.insta-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 100px;
}
.insta-caption {
  font-size: .875rem;
  color: var(--mid);
  line-height: 1.5;
  padding: 0 4px;
}

/* ==============================
   MOBILE POLISH
================================ */
@media (max-width: 480px) {
  .hero { padding: 110px 0 60px; }
  .hero-title { font-size: 2.4rem; }
  .blob-1 { width: 280px; height: 280px; }
  .blob-2 { width: 200px; height: 200px; }
  .blob-3 { display: none; }
  .hero-scroll-hint { display: none; }
  .sobre { padding: 80px 0; }
  .servicios { padding: 80px 0; }
  .quote-section { padding: 80px 20px; }
  .contacto { padding: 80px 0; }
}
