/* ==========================================================================
   Meu Evento Perfeito — Homepage Styles
   ========================================================================== */

/* ── VARIABLES ──────────────────────────────────────────────────────────── */
:root {
  --green-dark:  #0d4a43;
  --green-mid:   #1a6b5e;
  --green-light: #2d8b7a;
  --green-btn:   #005a51;
  --green-hover: #004840;
  --accent:      #c8956b;
  --text-dark:   #1a1a1a;
  --text-mid:    #444;
  --text-light:  #777;
  --white:       #ffffff;
  --off-white:   #f9f7f4;
  --border:      #e4e0da;
}

/* ── BASE & RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

/* ── NAVBAR ────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 80px;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
  display: flex;
  align-items: center;
}
nav.scrolled {
  background: var(--green-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  width: 100%;
  padding: 0 60px 0 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s;
}
.nav-logo img:hover { opacity: 0.85; }

nav.scrolled .nav-links a { color: rgba(255,255,255,0.92); }
nav.scrolled .nav-links a:hover { color: white; }
nav.scrolled .nav-social a { color: rgba(255,255,255,0.9); }
nav.scrolled .nav-social a:hover {
  color: white;
  background: rgba(255,255,255,0.15);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  transition: color 0.2s;
  letter-spacing: 0.1px;
}
.nav-links a:hover { color: white; }

.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-social a:hover {
  color: white;
  background: rgba(255,255,255,0.15);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}
nav.scrolled .nav-toggle span { background: var(--text-dark); }

/* ── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,36,32,0.75) 0%, rgba(13,74,67,0.55) 50%, rgba(0,0,0,0.25) 100%);
}
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 60px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.hero-dot.active {
  background: white;
  width: 24px;
  border-radius: 4px;
}

.hero-content {
  width: 100%;
  padding: 80px 60px 80px 120px;
  animation: fadeUp 0.9s ease both;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  opacity: 0.9;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
  max-width: 640px;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}

/* Hero feature pills */
.hero-features {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-feat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.18);
}
.hero-feat i {
  color: var(--accent);
  font-size: 14px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

/* Hero search bar (kept for suppliers page) */
.hero-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.97);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  margin-bottom: 22px;
  max-width: 900px;
  width: 100%;
}
.hero-search .search-icon {
  padding: 0 10px 0 28px;
  color: #aaa;
  font-size: 16px;
  flex-shrink: 0;
}
.hero-search input {
  flex: 2.5;
  border: none;
  outline: none;
  padding: 20px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: transparent;
  min-width: 0;
}
.hero-search input.city-input {
  flex: 1.5;
  padding: 20px 18px;
}
.hero-search input::placeholder { color: #aaa; }
.hero-search .divider {
  width: 1px;
  background: var(--border);
  height: 30px;
  flex-shrink: 0;
}
.hero-search select {
  border: none;
  outline: none;
  padding: 20px 24px 20px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-mid);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  min-width: 130px;
  -webkit-appearance: none;
}
.hero-search button {
  background: var(--green-btn);
  color: white;
  border: none;
  padding: 20px 44px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.5px;
  border-radius: 0 12px 12px 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-search button:hover { background: var(--green-hover); }

/* Hero CTA buttons */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 520px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  flex: 1;
  min-width: 220px;
}
.btn-primary:hover {
  background: #b5804f;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,149,107,0.45);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 17px 36px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  flex: 1;
  min-width: 220px;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-2px);
}
.hero-supplier-link {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.hero-supplier-link span {
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.hero-supplier-link:hover span { border-color: white; }

/* ── SECTION BASE ──────────────────────────────────────────────────────── */
section { padding: 100px 60px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.section-title em {
  font-style: italic;
  color: var(--green-dark);
}
.section-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 14px;
}

/* ── PLATFORM TABS ─────────────────────────────────────────────────────── */
.platform-new {
  background: var(--off-white);
  padding: 100px 60px;
}
.platform-new .container { max-width: 1200px; margin: 0 auto; }
.platform-new .head {
  text-align: center;
  margin-bottom: 64px;
}
.platform-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.tab-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  background: rgba(0,0,0,0.05);
  padding: 4px;
  border-radius: 50px;
  width: fit-content;
}
.tab-pill {
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  background: transparent;
  color: var(--text-light);
}
.tab-pill.active {
  background: var(--green-dark);
  color: white;
  box-shadow: 0 4px 12px rgba(13,74,67,0.3);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.tab-panel > p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}
.tab-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tab-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: white;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.tab-feat:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateX(4px);
}
.tab-feat-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: var(--green-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 16px;
}
.tab-feat h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 3px;
}
.tab-feat p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}
.tab-cta { margin-top: 28px; }

/* Mockup side */
.platform-mockup-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mockup-phone-new {
  width: 300px;
  border-radius: 36px;
  box-shadow: 0 40px 100px rgba(13,74,67,0.22), 0 0 0 2px rgba(13,74,67,0.08);
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.mockup-phone-new:hover { transform: translateY(-8px) rotate(-1deg); }
.mockup-blur-bg {
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(13,74,67,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.mockup-badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.mockup-badge.badge-top { top: 60px; right: -10px; }
.mockup-badge.badge-bottom { bottom: 60px; left: -10px; }
.badge-icon {
  width: 36px; height: 36px;
  background: var(--green-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 14px;
}
.badge-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}
.badge-text span {
  font-size: 11px;
  color: var(--text-light);
}

/* ── CATEGORIES ────────────────────────────────────────────────────────── */
.categories {
  background: var(--white);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.categories::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,149,107,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.categories::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(13,74,67,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.categories-head {
  text-align: center;
  margin-bottom: 60px;
}
.categories-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 24px;
  margin-bottom: 52px;
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  cursor: pointer;
  width: 120px;
}
.cat-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--green-light), var(--accent)) border-box;
  box-shadow: 0 8px 28px rgba(13,74,67,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.cat-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cat-item:hover .cat-circle {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,74,67,0.2);
}
.cat-item:hover .cat-circle img { transform: scale(1.08); }
.cat-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.3;
  transition: color 0.2s;
}
.cat-item:hover span { color: var(--green-dark); }
.categories-cta { text-align: center; }

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.2px;
}
.btn-green:hover {
  background: var(--green-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,74,67,0.25);
}

/* ── WHY US ────────────────────────────────────────────────────────────── */
.why-us { padding: 0; position: relative; }
.why-us-bg {
  min-height: 560px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 0;
}
.why-cards-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 0;
  transform: translateY(60px);
}
.why-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.why-card-icon {
  width: 64px; height: 64px;
  background: var(--green-dark);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 26px;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.why-card .sub {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}
.why-spacer { padding-top: 120px; background: var(--off-white); }

/* ── WEDDING SITE ──────────────────────────────────────────────────────── */
.wedding-site {
  background: var(--green-dark);
  color: white;
  padding: 100px 60px;
}
.wedding-site .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.wedding-mockups {
  position: relative;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.mockup-laptop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 20px;
}
.wedding-site .section-title { color: white; }
.wedding-site .section-title em { color: var(--accent); }
.wedding-site .section-desc { color: rgba(255,255,255,0.7); max-width: none; }

.wedding-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.wedding-feat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: background 0.2s;
}
.wedding-feat:hover { background: rgba(255,255,255,0.13); }
.wedding-feat-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}
.wedding-feat h4 {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}
.wedding-feat p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ── SUPPLIERS ─────────────────────────────────────────────────────────── */
.suppliers { background: var(--off-white); }
.suppliers .container > .head {
  text-align: center;
  margin-bottom: 56px;
}
.suppliers .container > .head .section-desc {
  margin: 14px auto 0;
}
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.supplier-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.supplier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.supplier-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.supplier-body { padding: 28px 28px 32px; }
.supplier-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.supplier-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── NEWSLETTER ────────────────────────────────────────────────────────── */
.newsletter {
  background: var(--white);
  padding: 80px 60px;
  text-align: center;
}
.newsletter .section-desc {
  margin: 14px auto 0;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 620px;
  margin: 36px auto 0;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  color: var(--text-dark);
  transition: border-color 0.2s;
  background: var(--off-white);
}
.newsletter-form input:focus { border-color: var(--green-light); }
.newsletter-form input::placeholder { color: #aaa; }
.newsletter-form button {
  background: var(--green-btn);
  color: white;
  border: none;
  padding: 15px 32px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.newsletter-form button:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,90,81,0.3);
}

/* ── FOOTER ────────────────────────────────────────────────────────────── */
footer {
  background: var(--green-dark);
  color: white;
  padding: 70px 60px 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 22px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--accent); color: white; }
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: white;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.footer-whatsapp:hover { background: var(--green-mid); }

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.footer-bottom a:hover { color: white; }

/* ── WHATSAPP FLOATING BUTTON ──────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: white;
  font-size: 28px;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* ── ANIMATIONS ────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE: TABLET ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 30px; }
  .hero-content { padding: 80px 30px; }
  section, .platform-new { padding: 80px 30px; }
  footer { padding: 60px 30px 28px; }
  .platform-tabs,
  .wedding-site .container { grid-template-columns: 1fr; gap: 48px; }
  .platform-mockup-side { order: -1; }
  .why-us-bg { padding: 0 30px; }
  .why-cards-row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-dots { left: 30px; }
  .hero-search { max-width: 100%; }
  .newsletter { padding: 60px 30px; }
}

/* ── RESPONSIVE: MOBILE ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-inner { padding: 0 20px; }
  .nav-logo { margin-left: 0; }
  .nav-toggle { display: flex; flex-direction: column; }

  /* Mobile nav overlay */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(13,74,67,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 105;
    animation: fadeUp 0.3s ease;
  }
  .nav-links.mobile-open a {
    font-size: 22px;
    color: white;
  }

  /* Hero */
  .hero-content { padding: 60px 20px 80px 20px; }
  .hero h1 { font-size: 32px; letter-spacing: -0.5px; }
  .hero-sub { font-size: 15px; }
  .hero-dots { left: 20px; }

  /* Hero features */
  .hero-features { gap: 10px; margin-bottom: 24px; }
  .hero-feat { font-size: 12px; padding: 8px 14px; }

  /* Search — stack vertically on mobile */
  .hero-search {
    flex-direction: column;
    border-radius: 20px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    gap: 10px;
    margin-bottom: 20px;
  }
  .hero-search .search-icon { display: none; }
  .hero-search .divider { display: none; }
  .hero-search input,
  .hero-search select {
    width: 100%;
    border-radius: 10px;
    background: rgba(255,255,255,0.95);
    padding: 15px 18px;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border: none;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    min-width: unset;
    flex: unset;
  }
  .hero-search select { color: var(--text-mid); }
  .hero-search button {
    width: 100%;
    border-radius: 10px;
    padding: 16px;
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  /* Hero CTAs */
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; max-width: 100%; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 18px 24px; font-size: 16px; min-width: unset; }

  /* Platform new */
  .platform-new { padding: 60px 20px; }
  .tab-pills { width: 100%; justify-content: stretch; }
  .tab-pill { flex: 1; text-align: center; font-size: 12px; padding: 10px 12px; }
  .mockup-phone-new { width: 220px; }
  .mockup-badge { display: none; }

  /* Why us */
  .why-cards-row { grid-template-columns: 1fr; transform: translateY(40px); }
  .why-spacer { padding-top: 100px; }

  /* Wedding */
  .wedding-site { padding: 80px 20px; }
  .wedding-mockups { height: auto; }
  .mockup-laptop { position: static; width: 100%; }
  .wedding-features { grid-template-columns: 1fr; }

  /* Suppliers */
  .suppliers { padding: 60px 20px; }
  .suppliers-grid { grid-template-columns: 1fr; }

  /* Categories */
  .categories { padding: 60px 20px; }
  .categories-grid { gap: 24px 16px; }
  .cat-item { width: 90px; }
  .cat-circle { width: 90px; height: 90px; }

  /* Newsletter */
  .newsletter { padding: 50px 20px; }
  .newsletter-form { flex-direction: column; }

  /* Footer */
  footer { padding: 50px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ── RESPONSIVE: SMALL MOBILE ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-eyebrow { font-size: 11px; }
  .section-title { font-size: 24px; }
  .why-card { padding: 28px 20px; }
  .supplier-img { height: 200px; }
}
