/* ===== ESTILOS FLORISTERIA ===== */
:root {
  --rosa: #b0607a;
  --rosa-fuerte: #a14d68;
  --rosa-suave: #f7d5e0;
  --verde: #4e8460;
  --verde-oscuro: #2f5237;
  --crema: #fff8fb;
  --tinta: #3a2a31;
  --suave: #8a7d84;
  --fondo: #fffafc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--fondo);
  color: var(--tinta);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.1; }

a { text-decoration: none; color: inherit; }
img, svg { max-width: 100%; display: block; }

.container { width: min(1100px, 92%); margin-inline: auto; }

/* Floating blobs */
.blob {
  position: fixed; z-index: -1; border-radius: 50%; filter: blur(70px); opacity: .5;
  pointer-events: none;
}
.blob-a { width: 420px; height: 420px; background: #f7c3d6; top: -100px; left: -120px; }
.blob-b { width: 380px; height: 380px; background: #cfe8d8; bottom: -80px; right: -100px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px clamp(18px, 5vw, 48px);
  background: rgba(255, 250, 252, 0.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid #f3dfe8;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 40px; height: 40px; }
.brand-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--rosa-fuerte); }
.menu { display: flex; gap: 28px; font-size: 15px; font-weight: 500; }
.menu a { color: var(--tinta); transition: color .2s; }
.menu a:hover { color: var(--rosa); }
.nav-cta {
  background: var(--rosa); color: #fff; padding: 10px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px; transition: background .2s;
}
.nav-cta:hover { background: var(--rosa-fuerte); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--tinta); }

/* ===== HERO ===== */
.hero {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center;
  min-height: 100vh; padding: 120px clamp(18px, 6vw, 72px) 60px; max-width: 1200px; margin-inline: auto;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 2px; font-size: 12.5px; font-weight: 600;
  color: var(--rosa); margin-bottom: 16px;
}
.hero h1 { font-size: clamp(38px, 6vw, 66px); margin-bottom: 18px; }
.hero h1 em { color: var(--rosa); font-style: italic; }
.hero-sub { color: var(--suave); font-size: 18px; max-width: 480px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px;
  border-radius: 999px; font-weight: 600; font-size: 15px; cursor: pointer;
  transition: transform .15s, box-shadow .2s; border: none;
}
.btn-primary { background: var(--rosa); color: #fff; }
.btn-primary:hover { background: var(--rosa-fuerte); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(176,96,122,.35); }
.btn-outline { border: 1.5px solid var(--rosa); color: var(--rosa); background: transparent; }
.btn-outline:hover { background: var(--rosa-suave); }
.btn i { width: 18px; height: 18px; }
.hero-features { display: flex; gap: 22px; flex-wrap: wrap; color: var(--suave); font-size: 14px; }
.hero-features span { display: inline-flex; align-items: center; gap: 6px; }
.hero-features i { width: 17px; height: 17px; color: var(--verde); }
.hero-art { position: relative; display: flex; justify-content: center; }
.flower-big { width: min(360px, 80vw); filter: drop-shadow(0 24px 40px rgba(176,96,122,.28)); }

/* ===== SECTION HEAD ===== */
section:not(.hero) { padding: 80px clamp(18px, 6vw, 72px); position: relative; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 8px; }
.section-head p { color: var(--suave); font-size: 16px; }

/* ===== PRODUCTS ===== */
.products { background: linear-gradient(180deg, #fff, #fdf1f6); }
.grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px; max-width: 1150px; margin-inline: auto;
}
.card {
  background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,.07);
  transition: transform .25s; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); }
.card .floral { width: 100%; height: 230px; object-fit: cover; background: #fff; }
.card-body { padding: 18px 20px 22px; }
.card-body h3 { font-size: 22px; margin-bottom: 4px; }
.card-body p { color: var(--suave); font-size: 14px; margin-bottom: 14px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; }
.price { font-size: 20px; font-weight: 700; color: var(--rosa-fuerte); }
.mini-btn {
  background: var(--crema); border: 1px solid #f0d6e1; color: var(--rosa);
  font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 999px; cursor: pointer; transition: background .2s;
}
.mini-btn:hover { background: var(--rosa-suave); }

/* ===== ABOUT ===== */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; max-width: 1100px; margin-inline: auto; }
.about-art { display: flex; justify-content: center; }
.about-art svg { width: min(360px, 80vw); filter: drop-shadow(0 20px 36px rgba(78,132,96,.3)); }
.about h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 16px; }
.about-text p { color: var(--suave); font-size: 16px; }
.about-stats { display: flex; gap: 30px; margin-top: 26px; flex-wrap: wrap; }
.stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--rosa-fuerte); }
.stat span { color: var(--suave); font-size: 14px; }

/* ===== GALLERY ===== */
.gallery { background: #fffafc; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; max-width: 1150px; margin-inline: auto; }
.gallery-grid .floral { width: 100%; height: 220px; object-fit: cover; border-radius: 14px; }

/* ===== CONTACT ===== */
.contact { background: linear-gradient(180deg, #fdf1f6, #fff8fb); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1000px; margin-inline: auto; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-item { display: flex; align-items: center; gap: 14px; }
.info-item i { width: 22px; height: 22px; color: var(--rosa); flex-shrink: 0; }
.info-item strong { display: block; font-size: 13px; color: var(--suave); text-transform: uppercase; letter-spacing: 1px; }
.info-item span { font-size: 16px; font-weight: 500; }
.socials { display: flex; gap: 12px; margin-top: 10px; }
.socials a {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1px solid #f0d6e1; color: var(--rosa); transition: all .2s;
}
.socials a:hover { background: var(--rosa); color: #fff; border-color: var(--rosa); transform: translateY(-3px); }
.socials i { width: 20px; height: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; background: #fff; padding: 28px; border-radius: 20px; box-shadow: 0 10px 34px rgba(0,0,0,.06); }
.contact-form input, .contact-form textarea {
  border: 1.5px solid #f0d6e1; border-radius: 12px; padding: 13px 16px; font-family: inherit; font-size: 15px; background: #fffafc; outline: none; transition: border .2s; resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--rosa); }
.contact-form .btn { justify-content: center; }
.form-note { font-size: 13px; text-align: center; color: var(--verde); min-height: 18px; }

/* ===== FOOTER ===== */
.footer { background: var(--verde-oscuro); color: #e9c3d3; padding: 40px 24px; text-align: center; }
.footer .brand { justify-content: center; }
.footer .brand-name { color: #fff; }
.footer-note { margin-top: 16px; font-size: 14px; opacity: .9; }
.footer-copy { margin-top: 6px; font-size: 12.5px; opacity: .6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .hero, .about, .contact-wrap { grid-template-columns: 1fr; }
  .hero { padding-top: 140px; text-align: center; }
  .hero-art { order: -1; }
  .hero-actions, .hero-features { justify-content: center; }
  .section-head { text-align: center; }
  .menu { position: fixed; inset: 0 0 auto 0; top: 64px; flex-direction: column; gap: 6px; background: #fff; padding: 18px; transform: translateY(-120%); transition: transform .3s; box-shadow: 0 10px 30px rgba(0,0,0,.1); }
  .menu.open { transform: translateY(0); }
  .menu a { font-size: 18px; padding: 10px; border-bottom: 1px solid #f3dfe8; }
  .menu-toggle { display: flex; }
  .nav-cta { display: none; }
}