/* ==========================================================================
   Vinamar Nail Studio — Hoja de estilos principal
   ========================================================================== */

:root {
  --blush: #f8e3e6;
  --blush-light: #fdf6f2;
  --cream: #fdf9f4;
  --rose: #c67d90;
  --rose-dark: #a05a70;
  --green: #7c9473;
  --green-dark: #5c7355;
  --gold: #c8a165;
  --ink: #3a2e2b;
  --ink-soft: #6b5c57;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(58, 46, 43, 0.08);
  --shadow-strong: 0 16px 40px rgba(58, 46, 43, 0.14);
  --radius: 18px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--tight { padding: 56px 0; }

.section--alt {
  background: var(--blush-light);
}

.eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--rose-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn--primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.btn--outline {
  background: transparent;
  border-color: var(--rose);
  color: var(--rose-dark);
}

.btn--outline:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--rose-dark);
}

.btn--sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 249, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(58,46,43,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--rose-dark);
}

.logo .logo-leaf { color: var(--green); font-size: 1.2rem; }
.logo small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active { color: var(--rose-dark); }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-light) 55%, #eef2e8 100%);
  padding: 100px 0 90px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(2px);
}

.hero::before {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(124,148,115,0.35), transparent 70%);
  top: -120px; right: -80px;
}

.hero::after {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(198,125,144,0.3), transparent 70%);
  bottom: -100px; left: -60px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--rose-dark);
}

.hero-copy p {
  font-size: 1.08rem;
  max-width: 480px;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--rose-dark);
}

.hero-stats div span {
  font-size: 0.8rem;
  color: var(--ink-soft);
  letter-spacing: 0.5px;
}

/* Decorative visual block replacing a photo */
.hero-visual {
  position: relative;
  height: 420px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #e9d3cf, var(--blush) 45%, #dfe7d5 100%);
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-visual .hand-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-visual svg { width: 78%; max-width: 320px; }

/* ---------- Page banner (páginas internas) ---------- */
.page-banner {
  background: linear-gradient(120deg, var(--blush) 0%, var(--blush-light) 100%);
  padding: 70px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: "";
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,148,115,0.28), transparent 70%);
  top: -80px; right: -40px;
}

.page-banner .eyebrow { display: block; }

.breadcrumb {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

.breadcrumb a { color: var(--rose-dark); }

/* ---------- Cards de servicios ---------- */
.grid {
  display: grid;
  gap: 28px;
}

.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(58,46,43,0.05);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.card-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--rose-dark);
}

.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { font-size: 0.94rem; margin-bottom: 0; }

.card .price-tag {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Playfair Display', serif;
  color: var(--rose-dark);
  font-size: 1.1rem;
}

/* ---------- Listas con check ---------- */
.check-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 16px;
}

.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--ink-soft);
}

.check-list li .dot {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}

/* ---------- Timeline / forma de trabajar ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}

.timeline-step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 28px 18px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.timeline-step .step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  margin: 0 auto 14px;
}

.timeline-step h4 { font-size: 0.98rem; margin-bottom: 8px; }
.timeline-step p { font-size: 0.85rem; margin: 0; }

/* ---------- Historia / About split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-visual {
  height: 380px;
  border-radius: var(--radius);
  background: linear-gradient(150deg, #dfe7d5, var(--blush) 60%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.split-visual .quote-badge {
  position: absolute;
  bottom: 20px; right: 20px; left: 20px;
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--rose-dark);
}

/* ---------- Tabla de precios ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-table th, .price-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(58,46,43,0.06);
}

.price-table th {
  background: var(--blush);
  color: var(--rose-dark);
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.price-table td:last-child, .price-table th:last-child {
  text-align: right;
  font-family: 'Playfair Display', serif;
  color: var(--rose-dark);
  font-size: 1.05rem;
  white-space: nowrap;
}

.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--blush-light); }

.price-note {
  margin-top: 22px;
  padding: 18px 22px;
  background: var(--blush-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, var(--rose), var(--rose-dark));
  color: var(--white);
  padding: 26px 32px;
  border-radius: var(--radius);
  margin-bottom: 40px;
  box-shadow: var(--shadow-strong);
}

.promo-banner h3 { color: var(--white); margin-bottom: 4px; }
.promo-banner p { color: rgba(255,255,255,0.85); margin: 0; }

/* ---------- Galería ---------- */
.swatch {
  height: 220px;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.swatch span {
  background: rgba(255,255,255,0.88);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--ink);
}

.swatch--1 { background: linear-gradient(160deg, #f3d9dc, #fdf6f2); }
.swatch--2 { background: linear-gradient(160deg, #e7c7c0, #f3ded7); }
.swatch--3 { background: linear-gradient(160deg, #cfd9c2, #e9efdf); }
.swatch--4 { background: linear-gradient(160deg, #d9b98f, #f1e3cf); }
.swatch--5 { background: linear-gradient(160deg, #c9738a, #eccbd3); }
.swatch--6 { background: linear-gradient(160deg, #b7c4ae, #dfe7d5); }

.ig-cta {
  margin-top: 56px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 32px;
  box-shadow: var(--shadow);
}

/* ---------- Contacto ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.contact-info h3 { margin-bottom: 20px; }

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-item .ci-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item strong { display: block; margin-bottom: 2px; }
.contact-item span, .contact-item a { font-size: 0.92rem; color: var(--ink-soft); }

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
  transition: 0.25s;
  border: 1px solid rgba(58,46,43,0.08);
}

.social-row a:hover { background: var(--rose); color: var(--white); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 320px;
}

.map-embed iframe {
  width: 100%; height: 100%; min-height: 320px; border: 0; display: block;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-top: 32px;
}

.form-row { margin-bottom: 18px; }

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(58,46,43,0.15);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  background: var(--blush-light);
}

.form-row textarea { resize: vertical; min-height: 100px; }

/* ---------- CTA final ---------- */
.cta-final {
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  color: var(--white);
  text-align: center;
  padding: 64px 24px;
  border-radius: var(--radius);
  margin: 0 24px;
}

.cta-final h2 { color: var(--white); }
.cta-final p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #2f2523;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
  margin-top: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-grid .logo { color: var(--white); margin-bottom: 12px; }
.footer-grid .logo .logo-leaf { color: #a9c19d; }
.footer-grid .logo small { color: rgba(255,255,255,0.55); }

.footer-grid p, .footer-grid a { font-size: 0.88rem; color: rgba(255,255,255,0.68); }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 200;
  color: var(--white);
  transition: transform 0.25s ease;
}

.wa-float:hover { transform: scale(1.08); }

/* ---------- Utilidades ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 320px; order: -1; }
  .split { grid-template-columns: 1fr; }
  .split-visual { height: 280px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta .btn--outline { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    box-shadow: var(--shadow);
  }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .promo-banner { flex-direction: column; align-items: flex-start; }
  .section { padding: 56px 0; }
}
