:root {
  --bg: #FBF3E7;
  --bg-alt: #F6EEE2;
  --dark: #2B221C;
  --text: #4A4038;
  --text-light: #5C5145;
  --muted: #7a6f63;
  --red: #CD433B;
  --red-dark: #a03932;
  --gold: #ECB210;
  --green-dark: #20301F;
  --footer-bg: #241A12;
  --whatsapp: #25D366;
  --border: rgba(43,34,28,0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
}

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

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

.container {
  max-width: 1184px;
  margin: 0 auto;
  padding: 0 48px;
}

.mono-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(236,178,16,0.18);
  color: #8a5f06;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
}

.mono-tag.red { background: rgba(205,67,59,0.14); color: var(--red-dark); }

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(205,67,59,0.5);
}
.btn-primary:hover { background: var(--red-dark); color: #fff; }

.btn-outline {
  border: 1.5px solid rgba(43,34,28,0.18);
  color: var(--dark);
  background: transparent;
}
.btn-outline:hover { border-color: rgba(43,34,28,0.4); color: var(--dark); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 13px;
}
.btn-whatsapp:hover { color: #fff; opacity: 0.92; }

.dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; display: inline-block; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(251,243,231,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand img { width: 36px; height: 36px; }
.nav-brand span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.nav-link:hover { color: var(--red); }
.nav-link.active { color: var(--dark); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta {
  padding: 11px 22px;
  border-radius: 100px;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.nav-cta:hover { color: #fff; background: var(--red-dark); }

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid rgba(43,34,28,0.18);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.burger span { width: 16px; height: 2px; background: var(--dark); border-radius: 2px; }

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 24px 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 73px;
  z-index: 49;
}
.mobile-panel.open { display: flex; }
.mobile-panel a {
  padding: 12px 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid rgba(43,34,28,0.06);
}
.mobile-panel a:last-child { border-bottom: none; }

/* HERO */
.hero {
  position: relative;
  padding: 88px 48px 96px;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 56px;
}
.hero-blob-1 {
  position: absolute; width: 420px; height: 420px;
  border-radius: 58% 42% 65% 35% / 45% 55% 45% 55%;
  background: var(--gold); opacity: 0.16; top: -90px; right: -40px;
}
.hero-blob-2 {
  position: absolute; width: 260px; height: 260px;
  border-radius: 42% 58% 38% 62% / 55% 40% 60% 45%;
  background: var(--red); opacity: 0.14; bottom: -60px; right: 340px;
}
.hero-copy { position: relative; width: 46%; display: flex; flex-direction: column; gap: 26px; }
.hero-copy h1 { font-size: 48px; line-height: 1.08; }
.hero-copy p { margin: 0; font-size: 17px; line-height: 1.6; color: var(--text-light); max-width: 460px; }
.hero-ctas { display: flex; align-items: center; gap: 14px; margin-top: 6px; flex-wrap: wrap; }
.hero-ctas .btn-outline { display: flex; align-items: center; gap: 8px; }
.wa-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--whatsapp); display: inline-block; }

.hero-visual { position: relative; width: 54%; display: flex; justify-content: center; align-items: center; min-height: 420px; }
.hero-card-browser {
  position: absolute; left: 0; top: 40px; width: 380px; max-width: 100%;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 50px -16px rgba(43,34,28,0.3); background: #fff;
}
.hero-card-browser .shot-wrap { height: 220px; overflow: hidden; }
.hero-card-browser img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero-card-phone {
  position: relative; left: 60px; width: 190px; height: 390px;
  border-radius: 30px; background: var(--dark); padding: 9px;
  box-shadow: 0 24px 50px -16px rgba(43,34,28,0.35);
}
.hero-card-phone .shot-wrap { width: 100%; height: 100%; border-radius: 22px; overflow: hidden; }
.hero-card-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* SECTION HEADERS */
.section { position: relative; padding: 80px 48px 88px; overflow: hidden; border-top: 1px solid var(--border); }
.section-head {
  position: relative; max-width: 640px; margin: 0 auto 56px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.section-head h2 { font-size: 38px; line-height: 1.15; }
.section-head p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--text-light); max-width: 480px; }

/* SERVICIOS */
#servicios { background: var(--bg); }
.blob-gold-tl { position: absolute; width: 340px; height: 340px; border-radius: 55% 45% 60% 40% / 48% 52% 48% 52%; background: var(--gold); opacity: 0.14; top: -120px; left: -80px; }
.blob-red-br { position: absolute; width: 220px; height: 220px; border-radius: 42% 58% 38% 62% / 55% 40% 60% 45%; background: var(--red); opacity: 0.10; bottom: -60px; right: -40px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1184px; margin: 0 auto; position: relative; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1184px; margin: 0 auto; position: relative; }

.service-card {
  padding: 32px; border-radius: 18px; background: #fff; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
}
.service-icon { display: inline-flex; width: 52px; height: 52px; border-radius: 50% 45% 55% 48% / 48% 55% 45% 52%; }
.service-card h3 { font-size: 19px; }
.service-card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

.section-cta { position: relative; display: flex; justify-content: center; margin-top: 48px; }

/* PRODUCTOS */
#productos { background: var(--bg-alt); }

.roses-row {
  position: relative; border-radius: 22px; overflow: hidden; background: var(--green-dark);
  margin-bottom: 24px; box-shadow: 0 24px 50px -18px rgba(32,48,31,0.4);
  display: flex; align-items: stretch;
}
.roses-blob { position: absolute; width: 360px; height: 360px; border-radius: 55% 45% 60% 40% / 48% 52% 48% 52%; background: var(--gold); opacity: 0.10; top: -140px; right: -60px; }
.roses-copy { position: relative; width: 44%; padding: 44px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.pill-star { align-self: flex-start; display: flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 100px; background: rgba(236,178,16,0.18); }
.pill-star .dot-gold { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.pill-star span.label { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; font-weight: 500; color: var(--gold); }
.roses-copy h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 30px; color: var(--bg); letter-spacing: -0.01em; }

.product-title-row { display: flex; align-items: center; gap: 12px; }
.product-logo { width: 32px; height: 32px; object-fit: contain; border-radius: 8px; flex-shrink: 0; }
.roses-copy .product-title-row { gap: 14px; }
.roses-copy .product-logo { width: 40px; height: 40px; background: rgba(251,243,231,0.1); padding: 4px; }
.roses-copy p { font-size: 14.5px; line-height: 1.65; color: #C9D4C4; max-width: 340px; margin: 0; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.tag-outline { padding: 6px 12px; border-radius: 100px; border: 1px solid rgba(251,243,231,0.2); font-size: 12px; font-weight: 600; color: var(--bg); }
.roses-copy .link-more { margin-top: 10px; font-weight: 600; font-size: 14px; color: var(--gold); }
.roses-visual { position: relative; width: 56%; padding: 28px 28px 28px 0; display: flex; align-items: center; }
.roses-visual .shot-wrap { width: 100%; height: 280px; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 44px -14px rgba(0,0,0,0.4); }
.roses-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.product-card { border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; position: relative; }
.product-card.light { background: #fff; border: 1px solid var(--border); }
.product-card.dark { background: var(--dark); }
.product-card .shot-wrap { height: 170px; overflow: hidden; }
.product-card .shot-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.product-card-body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.product-card-body .pill { align-self: flex-start; display: flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 100px; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; }
.pill-fact { background: rgba(52,69,90,0.1); color: #34455A; }
.pill-fact .sq { width: 10px; height: 10px; border-radius: 3px; border: 1.5px solid #34455A; }
.pill-free { background: rgba(236,178,16,0.2); color: var(--gold); font-weight: 600; }
.pill-free .dot-red { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.product-card-body h3 { font-size: 19px; }
.product-card.light h3 { color: var(--dark); }
.product-card.dark h3 { color: var(--bg); font-weight: 700; }
.product-card-body p { margin: 0; font-size: 14px; line-height: 1.6; flex: 1; }
.product-card.light p { color: var(--muted); }
.product-card.dark p { color: #C9BEB0; }
.product-card-body .link-more { font-weight: 600; font-size: 14px; }
.product-card.light .link-more { color: #34455A; }
.product-card.dark .link-more { color: var(--gold); }

/* SOBRE */
#sobre { background: var(--bg); display: flex; align-items: center; gap: 56px; padding: 88px 48px; overflow: hidden; }
.blob-red-bl { position: absolute; width: 280px; height: 280px; border-radius: 48% 52% 45% 55% / 55% 45% 55% 45%; background: var(--red); opacity: 0.10; bottom: -100px; left: -60px; }
.sobre-copy { position: relative; width: 48%; display: flex; flex-direction: column; gap: 22px; }
.sobre-copy h2 { font-size: 36px; line-height: 1.15; }
.sobre-copy > p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--text-light); max-width: 480px; }
.value-pills { display: flex; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.value-pill { display: flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: 100px; background: #fff; border: 1px solid rgba(43,34,28,0.1); }
.value-pill span.txt { font-size: 13.5px; font-weight: 600; color: var(--dark); }
.value-pill .dot-sm { width: 9px; height: 9px; border-radius: 50%; }

.sobre-visual { position: relative; width: 52%; display: flex; justify-content: center; }
.work-collage {
  width: 100%; max-width: 460px; border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 50px -16px rgba(43,34,28,0.25); background: var(--dark);
  display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; padding: 4px;
  aspect-ratio: 4/5;
}
.work-collage .cell { overflow: hidden; border-radius: 16px; position: relative; }
.work-collage .cell:first-child { grid-row: 1 / 3; }
.work-collage img { width: 100%; height: 100%; object-fit: cover; }
.work-collage .cell-label {
  position: absolute; left: 10px; bottom: 10px; padding: 4px 10px; border-radius: 100px;
  background: rgba(0,0,0,0.55); color: #FBF3E7; font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
}

/* CONTACTO */
#contacto { background: var(--bg); display: flex; align-items: flex-start; gap: 56px; padding: 88px 48px 0; overflow: hidden; }
.blob-gold-tl2 { position: absolute; width: 320px; height: 320px; border-radius: 52% 48% 45% 55% / 55% 45% 55% 45%; background: var(--gold); opacity: 0.13; top: -110px; left: -60px; }
.blob-red-br2 { position: absolute; width: 220px; height: 220px; border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%; background: var(--red); opacity: 0.10; bottom: -60px; right: -40px; }
.contacto-copy { position: relative; width: 42%; display: flex; flex-direction: column; gap: 26px; }
.contacto-copy h2 { font-size: 38px; line-height: 1.15; }
.contacto-copy > p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--text-light); max-width: 400px; }

.wa-card {
  text-decoration: none; display: flex; align-items: center; gap: 14px; padding: 18px 22px;
  border-radius: 16px; background: var(--whatsapp); box-shadow: 0 14px 30px -10px rgba(37,211,102,0.5);
}
.wa-card .wa-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-card .wa-icon .dot { width: 16px; height: 16px; }
.wa-card .wa-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; color: #fff; }
.wa-card .wa-sub { font-size: 13px; color: rgba(255,255,255,0.85); }

.contact-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; padding-top: 20px; border-top: 1px solid rgba(43,34,28,0.1); }
.contact-list a, .contact-list .row { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.contact-list .ic { width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0; }
.contact-list span.txt { font-size: 14.5px; color: var(--dark); font-weight: 500; }

.contact-form {
  position: relative; width: 58%; padding: 36px; border-radius: 22px; background: #fff;
  border: 1px solid var(--border); box-shadow: 0 24px 50px -18px rgba(43,34,28,0.18);
  display: flex; flex-direction: column; gap: 18px; align-self: flex-start;
}
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--text-light); }
.field input, .field textarea {
  height: 46px; border-radius: 10px; border: 1.5px solid rgba(43,34,28,0.14);
  background: var(--bg); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14.5px;
  padding: 0 14px; color: var(--dark);
}
.field textarea { height: 130px; padding: 12px 14px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.form-submit {
  padding: 15px; border-radius: 12px; background: var(--red); color: #fff; font-weight: 600;
  font-size: 15px; text-align: center; box-shadow: 0 10px 24px -8px rgba(205,67,59,0.5);
  border: none; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; width: 100%;
}
.form-submit:hover { background: var(--red-dark); }

.map-section { position: relative; padding: 44px 48px 88px; background: var(--bg); }
.map-frame { border-radius: 20px; overflow: hidden; border: 1px solid rgba(43,34,28,0.1); height: 320px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* FOOTER */
.footer { position: relative; padding: 64px 48px 32px; background: var(--footer-bg); overflow: hidden; }
.footer-glow { position: absolute; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(236,178,16,0.14), rgba(236,178,16,0) 70%); top: -140px; right: 120px; }
.footer-top {
  position: relative; display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 1184px; margin: 0 auto; gap: 48px; flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 280px; }
.footer-brand .brand-row { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 34px; height: 34px; }
.footer-brand .brand-row span { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 19px; color: var(--bg); }
.footer-brand p { margin: 0; font-size: 13.5px; line-height: 1.6; color: #B0A392; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col .head { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: #8a7658; letter-spacing: 0.02em; }
.footer-col a, .footer-col span { text-decoration: none; font-size: 14px; color: #D9CDBB; }
.footer-bottom { position: relative; display: flex; justify-content: space-between; align-items: center; padding-top: 22px; max-width: 1184px; margin: 0 auto; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 12.5px; color: #8a7658; }

/* WhatsApp floating button */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,0.6);
}
.wa-float svg { width: 30px; height: 30px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none !important; }
  .burger { display: flex !important; }
}

@media (max-width: 860px) {
  .hero, #sobre, #contacto, .footer-top { flex-direction: column; }
  .hero-copy, .hero-visual, .sobre-copy, .sobre-visual, .contacto-copy, .contact-form { width: 100% !important; }
  .hero-visual { min-height: 360px; margin-top: 24px; }
  .roses-row { flex-direction: column; }
  .roses-copy, .roses-visual { width: 100% !important; }
  .roses-visual { padding: 0 28px 28px; }
}

@media (max-width: 760px) {
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .container, .nav, .hero, .section, #sobre, #contacto, .map-section, .footer { padding-left: 24px; padding-right: 24px; }
  .form-row2 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  h1 { font-size: 34px !important; }
  h2 { font-size: 28px !important; }
  .hero-card-browser { width: 100%; position: relative; left: 0; top: 0; }
  .hero-card-phone { display: none; }
  .footer-top { gap: 32px; }
}
