﻿:root {
  --color-primary: #c45c2e;
  --color-primary-deep: #8d3f1f;
  --color-bg: #fdf6ec;
  --color-gold: #d4a853;
  --color-cta: #2d4a3e;
  --color-text: #2c2416;
  --color-light: #f5ecd7;
  --color-paper: #fffdf9;
  --line: #e9d8bb;
  --radius-s: 12px;
  --radius-m: 20px;
  --radius-l: 30px;
  --shadow-s: 0 14px 34px rgba(44, 36, 22, 0.1);
  --shadow-l: 0 26px 54px rgba(44, 36, 22, 0.14);
}

* { box-sizing: border-box; }
html, body { overflow-x: hidden; }

body {
  margin: 0;
  color: var(--color-text);
  font-family: 'Source Sans 3', 'Trebuchet MS', 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #fff9ef, #fef6eb 40%, #fffdf7);
}

.page-content { position: relative; z-index: 2; }

.bg-orb {
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.orb-a {
  width: 440px;
  height: 440px;
  left: -160px;
  top: -90px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.34), rgba(212, 168, 83, 0));
}

.orb-b {
  width: 520px;
  height: 520px;
  right: -210px;
  top: 120px;
  background: radial-gradient(circle, rgba(196, 92, 46, 0.26), rgba(196, 92, 46, 0));
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image: linear-gradient(rgba(44,36,22,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(44,36,22,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 25%, #000, transparent 75%);
}

h1, h2, h3, h4 {
  margin-top: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: 'Merriweather', Georgia, serif;
}

a { color: inherit; text-decoration: none; }
p { line-height: 1.65; }

.container { width: min(1160px, 92%); margin: 0 auto; }
.section { padding: 3rem 0; }
.center { text-align: center; }
.lead { max-width: 66ch; color: #5d4b33; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(233, 216, 187, 0.8);
  background: rgba(255, 250, 241, 0.75);
  backdrop-filter: blur(14px) saturate(140%);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  font-size: 1.54rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  font-family: 'Merriweather', Georgia, serif;
}

.brand::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 58%;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-nav a {
  border-radius: 10px;
  padding: 0.45rem 0.62rem;
  color: #473721;
  font-weight: 600;
  transition: transform 0.18s ease, background 0.18s ease;
}

.site-nav a:hover {
  transform: translateY(-1px);
  background: rgba(212, 168, 83, 0.16);
}

.menu-toggle {
  display: none;
  border: 1px solid #dac8aa;
  background: #fffef9;
  border-radius: 10px;
  padding: 0.44rem 0.7rem;
  cursor: pointer;
  position: relative;
  z-index: 130;
  touch-action: manipulation;
}

.btn {
  border: 0;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.28rem;
  background: linear-gradient(135deg, var(--color-cta), #3d6758);
  box-shadow: 0 12px 24px rgba(45, 74, 62, 0.28);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn-small { padding: 0.58rem 1rem; font-size: 0.92rem; }
.btn-outline {
  color: var(--color-cta);
  background: transparent;
  border: 1px solid rgba(45, 74, 62, 0.35);
  box-shadow: none;
}

.nav-cta {
  color: #4a2d12;
  background: linear-gradient(135deg, #f2c980, #e8b360);
  box-shadow: 0 10px 20px rgba(196, 92, 46, 0.22);
}

.nav-cta:hover {
  filter: brightness(1.03);
  box-shadow: 0 14px 26px rgba(196, 92, 46, 0.28);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-s);
  padding: 1.12rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  overflow: hidden;
}

.section .card { margin-bottom: 0.9rem; }
.section .card:last-child { margin-bottom: 0; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 4rem;
  color: #2a1d11;
  background:
    radial-gradient(circle at 78% 0%, rgba(255, 255, 255, 0.35), transparent 40%),
    linear-gradient(130deg, rgba(196, 92, 46, 0.95), rgba(253, 246, 236, 0.94));
  border-bottom: 1px solid rgba(196, 92, 46, 0.2);
}

.hero::before {
  content: '';
  position: absolute;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  right: -90px;
  bottom: -110px;
  border: 26px solid rgba(45, 74, 62, 0.35);
  opacity: 0.25;
}

.hero-grid {
  display: grid;
  gap: 1.3rem;
  align-items: center;
  grid-template-columns: 1.55fr 1fr;
}

.hero h1 { font-size: clamp(2.2rem, 6vw, 3.7rem); margin-bottom: 0.8rem; }
.hero p { max-width: 55ch; }
.hero-cta { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: 0.76rem; }

.hero-card {
  border-radius: var(--radius-l);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 20px 38px rgba(55, 30, 17, 0.17);
  padding: 1.5rem;
}

.notice {
  border-left: 4px solid var(--color-primary);
  background: linear-gradient(90deg, var(--color-light), #fff8ec);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.steps-grid,
.pricing-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.steps-grid article {
  background: var(--color-paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(44, 36, 22, 0.08);
  transition: transform 0.2s ease;
}

.steps-grid article:hover { transform: translateY(-4px); }

.price-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1rem;
  background: linear-gradient(180deg, #fffefb, #fff8ee);
  box-shadow: var(--shadow-s);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-l);
}

.price {
  color: var(--color-primary);
  font-size: 1.7rem;
  margin: 0.2rem 0 1rem;
  font-weight: 800;
}

.popular {
  border: 2px solid rgba(212, 168, 83, 0.9);
  animation: cardPulse 2s ease-in-out infinite;
}

@keyframes cardPulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.5); }
  75% { box-shadow: 0 0 0 14px rgba(212, 168, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 168, 83, 0); }
}

.badge-pop {
  position: absolute;
  right: 12px;
  top: -11px;
  font-size: 0.76rem;
  color: #3f280a;
  font-weight: 700;
  border-radius: 99px;
  padding: 0.22rem 0.58rem;
  background: linear-gradient(180deg, #e9c16f, var(--color-gold));
}

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  background: #fffdf9;
  padding: 0.65rem;
  box-shadow: var(--shadow-s);
  height: 100%;
}

.gallery-frame {
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  max-height: 430px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #ead7ba;
  background: #f4ecde;
}

.compare-track {
  width: 200%;
  height: 100%;
  display: flex;
  animation: autoCompareSlide 5.4s ease-in-out infinite;
}

.compare-track img {
  width: 50%;
  height: 100%;
  flex: 0 0 50%;
  object-fit: cover;
}

.compare-meta {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.chip.before { background: #efe2ca; color: #5a4528; }
.chip.after { background: #dce9e3; color: #22453a; }

@keyframes autoCompareSlide {
  0%, 38% { transform: translateX(0%); }
  50%, 88% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

@media (prefers-reduced-motion: reduce) {
  .compare-track { animation: none; transform: translateX(0); }
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffdf8;
  padding: 0.78rem 0.9rem;
  margin-bottom: 0.6rem;
}

.faq summary { font-weight: 700; cursor: pointer; }
.timeline { line-height: 1.9; }

.auth { max-width: 560px; }
.form-grid { display: grid; gap: 0.75rem; }
.two-col { grid-template-columns: 1fr 1fr; }
.two-col .full { grid-column: 1 / -1; }

input, textarea, select, button { font: inherit; }

input, textarea, select {
  width: 100%;
  border: 1px solid #dcc8ad;
  border-radius: 12px;
  background: #fffcf6;
  padding: 0.68rem 0.85rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(196, 92, 46, 0.68);
  box-shadow: 0 0 0 3px rgba(196, 92, 46, 0.14);
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  padding: 0;
  border: 0;
  box-shadow: none;
  accent-color: var(--color-cta);
  transform: translateY(1px);
}

.upload-field {
  border: 1px dashed #d7b98d;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffdf9, #fff6e8);
  padding: 0.8rem;
}

.upload-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.upload-field input[type="file"] {
  background: #fff;
  border: 1px solid #dec9ab;
}

.file-name {
  display: block;
  margin-top: 0.4rem;
  font-weight: 600;
  color: #5b4a30;
}

.file-help {
  display: block;
  margin-top: 0.2rem;
  color: #7a6649;
}

.copy-inline { margin-left: 0.6rem; }
.check { display: flex; align-items: center; gap: 0.5rem; }
.hidden { display: none !important; }

.progress {
  margin: 1rem 0;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #f0e0c7;
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
}

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 0.62rem; border-bottom: 1px solid #efe0c9; }
table tr:last-child td { border-bottom: 0; }

.status {
  color: #fff;
  font-size: 0.82rem;
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
  font-weight: 700;
}
.status.pending{background:#7f7f7f}.status.confirmed{background:#2674ff}.status.designing{background:#7f3fbf}.status.printing{background:#ea8120}.status.shipped{background:#1b9e9b}.status.delivered{background:#2f9e44}.status.cancelled{background:#d7263d}

.site-footer {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #f8ecd8, #f1dfc3);
  padding: 1.4rem 0;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-grid a { display: block; margin: 0.25rem 0; }

.whatsapp-float {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #18a34f, #1cc460);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
  padding: 0.66rem 0.88rem;
}

.whatsapp-float svg { width: 18px; height: 18px; }

@media (max-width: 880px) {
  body { font-size: 16px; line-height: 1.6; }
  h1 { line-height: 1.18; }
  .hero-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 4%;
    min-width: 238px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.32rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fffaf0;
    box-shadow: var(--shadow-l);
    padding: 0.72rem;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a { padding: 0.58rem 0.64rem; }
  .section { padding: 2.2rem 0; }
  .two-col { grid-template-columns: 1fr; }
}
