/* ===========================
   PIXEL A LA MEDIDA – styles.css
   =========================== */

/* ── VARIABLES ── */
:root {
  --blue: #2563eb;
  --blue-light: #dbeafe;
  --blue-dark: #1d4ed8;
  --orange: #f97316;
  --orange-light: #ffedd5;
  --orange-dark: #ea6300;
  --dark: #1e293b;
  --dark-mid: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --green: #22c55e;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(30,41,59,0.08);
  --shadow-lg: 0 16px 48px rgba(30,41,59,0.14);
  --transition: 0.25s ease;
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(249,115,22,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1ebe58;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.btn-whatsapp-large:hover {
  background: #1ebe58;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.5);
}

.w-full { width: 100%; justify-content: center; }

/* ── SECTION SHARED ── */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--white);
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin: 8px 0 14px;
  line-height: 1.2;
}
.section-head p {
  color: var(--muted);
  font-size: 1rem;
}
.section-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.highlight { color: var(--blue); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248,250,252,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(30,41,59,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-mid);
  transition: all var(--transition);
}
.nav-links a:hover {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-cta { margin-left: 8px; font-size: 0.85rem; padding: 9px 18px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 2px;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(30,41,59,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 10px 14px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ── HERO ── */
.hero {
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f7ff 0%, var(--bg) 55%);
}
.hero-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 110px 0 70px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(34,197,94,0.8);
  flex-shrink: 0;
}

.hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--muted);
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
}
.hero-card.main-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.card-header {
  background: #f1f5f9;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.card-dots { display: flex; gap: 5px; }
.card-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}
.card-dots span:nth-child(1) { background: #f87171; }
.card-dots span:nth-child(2) { background: #fbbf24; }
.card-dots span:nth-child(3) { background: #4ade80; }
.card-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: 4px;
}
.card-content { padding: 24px 20px; }

.mock-hero-bar {
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
  margin-bottom: 10px;
}
.mock-hero-bar.title { width: 70%; height: 14px; background: linear-gradient(90deg, var(--blue-light), #bfdbfe); }
.mock-hero-bar.subtitle { width: 90%; }
.mock-hero-bar.btn-bar { width: 40%; height: 28px; background: var(--orange); border-radius: 999px; margin-top: 14px; margin-bottom: 20px; }

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.mock-block {
  background: var(--bg);
  border-radius: 10px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--border);
}
.mock-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
}
.mock-icon.blue { background: var(--blue-light); }
.mock-icon.orange { background: var(--orange-light); }
.mock-lines { display: flex; flex-direction: column; gap: 4px; }
.mock-line {
  height: 6px;
  border-radius: 999px;
  background: #e2e8f0;
}
.mock-line.short { width: 60%; }

/* Float cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
}
.hero-float-card div { display: flex; flex-direction: column; line-height: 1.3; }
.hero-float-card strong { font-weight: 700; color: var(--dark); }
.hero-float-card span { color: var(--muted); font-size: 0.76rem; }

.float-top {
  top: -14px;
  right: -14px;
  animation: float-anim 3s ease-in-out infinite;
}
.float-bottom {
  bottom: -14px;
  left: -14px;
  animation: float-anim 3.5s ease-in-out infinite reverse;
}

@keyframes float-anim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── CLIENTS BAR ── */
.clients-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.clients-label {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 16px;
}
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.client-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--dark-mid);
}
.client-chip svg { color: var(--blue); }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.service-card:hover::before { background: linear-gradient(90deg, var(--blue), #38bdf8); }
.service-card.featured {
  background: linear-gradient(135deg, #eff6ff, #f0f7ff);
  border-color: #bfdbfe;
}
.service-card.featured::before { background: linear-gradient(90deg, var(--blue), #38bdf8); }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon.blue { background: var(--blue-light); color: var(--blue); }
.service-icon.orange { background: var(--orange-light); color: var(--orange); }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--dark-mid);
}
.service-list li::before {
  content: '✓ ';
  color: var(--blue);
  font-weight: 700;
}

/* CTA card inside services */
.service-card.cta-card {
  background: linear-gradient(135deg, var(--dark), #0f172a);
  color: var(--white);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 12px;
}
.cta-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white) !important;
}
.service-card.cta-card p { color: rgba(255,255,255,0.7); margin: 0; }

/* ── STEPS / HOW WE WORK ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .step-arrow { display: none; }
}

.step {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.step:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.step-number {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: var(--blue-light);
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--blue);
}
.step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.step p { font-size: 0.84rem; color: var(--muted); }

.step-arrow {
  font-size: 1.4rem;
  color: var(--border);
  display: flex;
  align-items: center;
  padding: 0 6px;
  margin-top: 60px;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--orange);
  background: linear-gradient(160deg, #fff7ed, var(--white));
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(249,115,22,0.18);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-header { margin-bottom: 24px; }
.plan-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 10px;
}
.price-currency { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.price-amount { font-size: 2.4rem; font-weight: 900; color: var(--dark); line-height: 1; }
.price-period { font-size: 0.9rem; color: var(--muted); margin-left: 4px; }
.plan-desc { font-size: 0.87rem; color: var(--muted); }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark-mid);
}
.plan-features li svg { flex-shrink: 0; margin-top: 2px; }

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--muted);
}
.pricing-note a { color: var(--blue); font-weight: 600; }
.pricing-note a:hover { text-decoration: underline; }

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.portfolio-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Portfolio visuals */
.portfolio-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.portfolio-visual.restaurant { background: linear-gradient(135deg, #f0f7ff, #dbeafe); }
.portfolio-visual.events { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.portfolio-visual.social { background: linear-gradient(135deg, #fdf2f8, #fce7f3); }
.portfolio-visual.brand { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }

.pv-browser {
  background: rgba(255,255,255,0.7);
  padding: 8px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pv-dots { display: flex; gap: 4px; }
.pv-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
}
.pv-dots span:nth-child(1) { background: #f87171; }
.pv-dots span:nth-child(2) { background: #fbbf24; }
.pv-dots span:nth-child(3) { background: #4ade80; }

.pv-content { padding: 12px; }
.pv-hero-block {
  background: var(--blue-light);
  height: 60px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.pv-hero-block.tall { height: 80px; }
.pv-text-block { display: flex; flex-direction: column; gap: 5px; }
.pv-line {
  height: 7px;
  border-radius: 999px;
  background: rgba(0,0,0,0.1);
}
.pv-line.short { width: 60%; }
.pv-cta-row { display: flex; gap: 8px; margin-bottom: 10px; }
.pv-btn {
  height: 22px;
  width: 70px;
  border-radius: 999px;
  background: var(--orange);
  opacity: 0.8;
}
.pv-btn.outline {
  background: transparent;
  border: 1.5px solid var(--blue);
  opacity: 0.6;
}
.pv-grid-blocks { display: flex; gap: 7px; margin-top: 10px; }
.pv-small-block {
  flex: 1;
  height: 36px;
  border-radius: 7px;
  background: rgba(37,99,235,0.12);
}
/* Social grid */
.pv-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 12px;
  height: 100%;
}
.pv-social-post {
  border-radius: 8px;
}
.pv-social-post.p1 { background: linear-gradient(135deg, #f9a8d4, #f0abfc); }
.pv-social-post.p2 { background: linear-gradient(135deg, #fcd34d, #f97316); }
.pv-social-post.p3 { background: linear-gradient(135deg, #6ee7b7, #34d399); }
.pv-social-post.p4 { background: linear-gradient(135deg, #93c5fd, #818cf8); }
/* Brand visual */
.pv-brand-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 10px;
}
.pv-logo-mark {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-palette { display: flex; gap: 5px; }
.pv-palette span {
  width: 20px; height: 20px;
  border-radius: 50%;
}
.pc1 { background: #22c55e; }
.pc2 { background: #1e293b; }
.pc3 { background: #f0fdf4; border: 1px solid var(--border); }
.pc4 { background: #fbbf24; }
.pv-brand-name-bar {
  height: 8px;
  width: 100px;
  border-radius: 999px;
  background: rgba(0,0,0,0.12);
}
.pv-brand-tag-bar {
  height: 5px;
  width: 70px;
  border-radius: 999px;
  background: rgba(0,0,0,0.07);
}

.portfolio-info { padding: 18px 20px; }
.portfolio-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.portfolio-info h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.portfolio-info p { font-size: 0.85rem; color: var(--muted); }

.portfolio-cta {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.portfolio-cta p { color: var(--muted); font-size: 0.95rem; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #1e3a8a, #1d4ed8, #2563eb);
  padding: 80px 0;
}
.cta-box {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-box p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; }

/* ── CONTACT ── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin: 10px 0 14px;
}
.contact-info p { color: var(--muted); margin-bottom: 28px; }

.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.contact-link:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateX(4px);
}
.contact-link-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whatsapp-icon { background: #dcfce7; color: #16a34a; }
.instagram-icon { background: #fdf2f8; color: #db2777; }
.facebook-icon { background: #eff6ff; color: #2563eb; }
.contact-link div { display: flex; flex-direction: column; line-height: 1.3; }
.contact-link strong { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
.contact-link span { font-size: 0.82rem; color: var(--muted); }

/* Contact form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--dark);
}
.form-group input,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.93rem;
  color: var(--dark);
  font-family: var(--font);
  background: var(--bg);
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-note {
  text-align: center;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 2fr;
  gap: 60px;
  padding: 60px 20px 40px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand .footer-logo span {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr 1fr; }
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 20px;
}
.footer-bottom p {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  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,0.45);
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}
.whatsapp-float:hover .wf-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.wf-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  pointer-events: none;
}
.wf-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
  border-right: none;
}

/* ── AOS-LIKE ANIMATIONS ── */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }

/* ── RESPONSIVE MISC ── */
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero { padding: 100px 0 60px; }
  .hero-text h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .pricing-card.featured { transform: none; }
}
