/* ==========================================
   FRUTBER — Estilos
   Paleta cereza + verde + crema
   ========================================== */

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

:root {
  --red: #c8102e;
  --red-dark: #8b0a1f;
  --red-light: #e84258;
  --green: #2d5016;
  --green-light: #4a7c2a;
  --cream: #faf7f0;
  --beige: #f5ede0;
  --gold: #d4a017;
  --dark: #1a1a1a;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --border: #e8e2d5;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--cream);
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }

p { color: var(--text); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* UTILITIES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-tag {
  display: inline-block;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.section-tag::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.5rem; height: 1px;
  background: var(--red);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-header .section-tag {
  padding-left: 2rem;
  padding-right: 2rem;
}
.section-header .section-tag::before,
.section-header .section-tag::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.5rem; height: 1px;
  background: var(--red);
}
.section-header .section-tag::before { left: 0; }
.section-header .section-tag::after { right: 0; }

.section-header.light .section-tag { color: var(--gold); }
.section-header.light .section-tag::before,
.section-header.light .section-tag::after { background: var(--gold); }
.section-header.light h2 { color: white; }
.section-header.light .section-desc { color: rgba(255, 255, 255, 0.75); }

.section-desc {
  font-size: 1.1rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.7;
}

/* NAV */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.nav-wrapper.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: inline-flex; align-items: center; }

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img { transform: scale(1.04); }

.footer .logo-img { height: 56px; filter: brightness(1.05); }

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s;
}

.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:hover { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: white !important;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
}

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

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 8px 25px rgba(200, 16, 46, 0.25);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(200, 16, 46, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  color: var(--dark);
  border-color: white;
  transform: translateY(-3px);
}

.btn-sm { padding: 0.7rem 1.5rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.65) 0%, rgba(139, 10, 31, 0.55) 100%);
}

.hero-content {
  position: relative;
  max-width: 900px;
  padding: 0 1.5rem;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  padding: 0.55rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
}

.hero h1 {
  color: white;
  margin-bottom: 1.8rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 680px;
  margin: 0 auto 2.8rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  z-index: 3;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(15px); }
}

/* STATS */
.stats {
  background: white;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background: var(--border);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--red);
  display: inline-block;
  line-height: 1;
}

.stat-unit {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--red);
  font-weight: 700;
}

.stat-item p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
}

/* ABOUT */
.about {
  padding: 7rem 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--red);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: 0 15px 40px rgba(200, 16, 46, 0.35);
  text-align: center;
}

.about-img-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.about-img-badge span {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-text p {
  margin-bottom: 1.2rem;
  color: var(--text);
  font-size: 1.02rem;
}

.about-text strong { color: var(--red); font-weight: 600; }

.about-list {
  margin-top: 2rem;
}

.about-list li {
  padding: 0.85rem 0 0.85rem 2.2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background: var(--red);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* FRUITS */
.fruits {
  padding: 7rem 0;
  background: white;
}

.fruits-grid--duo {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
}

.fruit-card {
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

.fruit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.fruit-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.fruit-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.fruit-card:hover .fruit-img-wrap img {
  transform: scale(1.08);
}

.fruit-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--red);
  color: white;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 0 5px 20px rgba(200, 16, 46, 0.4);
}

.fruit-info {
  padding: 2.5rem;
}

.fruit-info h3 {
  color: var(--red);
  margin-bottom: 0.8rem;
  font-size: 2.2rem;
}

.fruit-info > p {
  color: var(--muted);
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.varieties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
  margin: 1.8rem 0;
}

.variety-item {
  background: white;
  padding: 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.variety-item:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 16, 46, 0.08);
}

.variety-item strong {
  display: block;
  color: var(--red);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.variety-item span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.variety-item p {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.55;
}

.color-seg {
  margin: 2rem 0 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 14px;
}

.color-seg-title {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.color-seg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  text-align: center;
}

.swatch {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.swatch--j { background: linear-gradient(135deg, #e53041, #c8102e); }
.swatch--jd { background: linear-gradient(135deg, #a2101f, #6d0a15); }
.swatch--2jd { background: linear-gradient(135deg, #6a0712, #3e020a); }
.swatch--5jd { background: linear-gradient(135deg, #2a0208, #110103); }

.color-swatch strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 700;
}

.color-swatch small {
  font-size: 0.7rem;
  color: var(--muted);
}

.fruit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.fruit-tags span {
  background: white;
  color: var(--text);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  border: 1px solid var(--border);
  font-weight: 500;
}

.fruit-season {
  display: inline-block;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1.1rem;
  background: rgba(45, 80, 22, 0.1);
  border-radius: 50px;
}

/* GALLERY */
.gallery {
  padding: 2rem 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.6rem;
  padding: 0 0.6rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* MARKETS */
.markets {
  padding: 7rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1010 50%, #1a1a1a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.markets::before {
  content: "";
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.15), transparent 70%);
  filter: blur(60px);
}

.markets::after {
  content: "";
  position: absolute;
  bottom: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.12), transparent 70%);
  filter: blur(60px);
}

.markets .container { position: relative; z-index: 2; }

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.market-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.2rem;
  border-radius: 20px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.market-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(212, 160, 23, 0.15);
}

.market-flag {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  background: var(--gold);
  color: var(--dark);
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}

.market-card h3 {
  color: white;
  margin-bottom: 0.8rem;
  font-size: 1.55rem;
}

.market-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.93rem;
  margin-bottom: 1.2rem;
  line-height: 1.65;
}

.market-card ul li {
  color: rgba(255, 255, 255, 0.85);
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  font-size: 0.88rem;
}

.market-card ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}

.market-card--cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-color: var(--red);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.market-card--cta:hover {
  border-color: white;
  transform: translateY(-6px) scale(1.02);
}

.market-card--cta .market-flag {
  background: white;
  color: var(--red);
}

.market-card--cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.market-card--cta .btn-primary {
  background: white;
  color: var(--red);
  align-self: flex-start;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.market-card--cta .btn-primary:hover {
  background: var(--dark);
  color: white;
}

/* REQUEST SECTION */
.request-section {
  padding: 7rem 0;
  background: var(--beige);
  position: relative;
}

.request-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.request-info h2 {
  margin-bottom: 1.2rem;
}

.request-info > p {
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-size: 1.03rem;
  line-height: 1.75;
}

.request-steps {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  box-shadow: 0 5px 20px rgba(200, 16, 46, 0.15);
  border: 2px solid var(--red);
}

.step strong {
  display: block;
  color: var(--dark);
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
  font-family: 'Playfair Display', serif;
}

.step p {
  color: var(--muted);
  font-size: 0.93rem;
}

/* FORMS */
.form {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.form h3 {
  margin-bottom: 1.8rem;
  color: var(--dark);
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.form h2 {
  margin-bottom: 0.8rem;
  font-size: 2rem;
}

.form > p {
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label:not(.radio-label) {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
  transition: all 0.2s ease;
  color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: white;
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1);
}

.form-group textarea { resize: vertical; font-family: inherit; }

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s;
  font-weight: 500;
}

.radio-label:hover { border-color: var(--red); }
.radio-label input { accent-color: var(--red); margin: 0; }

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1.2rem;
  text-align: center;
}

/* CONTACT */
.contact {
  padding: 7rem 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form--light { background: white; }

.contact-info h3 {
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-size: 1.4rem;
}

.contact-items {
  margin-bottom: 2.5rem;
  background: white;
  border-radius: var(--radius);
  padding: 0.5rem 1.5rem;
  box-shadow: var(--shadow);
}

.contact-item {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(200, 16, 46, 0.25);
}

.contact-item strong {
  display: block;
  color: var(--dark);
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.contact-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

.fundos-title {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
  font-size: 1.4rem;
}

.fundos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.fundo-card {
  background: white;
  padding: 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.fundo-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(45, 80, 22, 0.1);
}

.fundo-icon {
  display: inline-block;
  color: var(--green);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.fundo-card strong {
  display: block;
  color: var(--dark);
  font-size: 0.95rem;
  font-family: 'Playfair Display', serif;
}

.fundo-card p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.contact-social {
  display: flex;
  gap: 0.7rem;
}

.contact-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.82rem;
  transition: all 0.3s;
}

.contact-social a:hover {
  background: var(--red);
  transform: translateY(-3px) rotate(-5deg);
  box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3);
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo { margin-bottom: 1.2rem; display: inline-block; }

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer-brand em {
  color: var(--gold);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.footer-links h4,
.footer-cert h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-links ul li {
  padding: 0.35rem 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 0.3rem;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cert-badge {
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--gold); }

/* TOAST */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--green);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(150px);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1000;
  max-width: 360px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.toast-msg { font-size: 0.92rem; }

/* (Removed JS-driven fade-in — broke extension-based PDF export) */

/* RESPONSIVE */
@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    align-items: flex-start;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }

  .about-grid,
  .fruits-grid--duo,
  .request-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-item:nth-child(2)::after { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .form-row { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }

  .about-img-badge {
    right: 1rem;
    bottom: -1.5rem;
    padding: 1.2rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero { min-height: 90vh; }
  .hero h1 { font-size: 2.3rem; }
  .hero-sub { font-size: 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item::after { display: none !important; }
  .fruit-info { padding: 1.5rem; }
  .color-seg-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about { padding: 4rem 0; }
  .fruits, .markets, .request-section, .contact { padding: 4rem 0; }
  .form { padding: 1.8rem; }
}

/* ==========================================
   PRINT STYLES — PDF export
   ========================================== */
@media print {
  @page {
    size: A4;
    margin: 15mm 12mm;
  }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
    animation: none !important;
    transition: none !important;
  }

  /* Force visible — JS-based fade-in leaves sections at opacity:0 otherwise */
  .fade-in,
  .fade-in.visible,
  section,
  .hero-content,
  .fruit-card,
  .market-card,
  .variety-item,
  .stat-item {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  body { overflow: visible !important; }

  html, body {
    background: white !important;
    color: #1a1a1a !important;
    font-size: 10pt;
    line-height: 1.45;
  }

  /* Hide interactive/floating elements */
  .nav-wrapper,
  .menu-toggle,
  .hero-scroll,
  .toast,
  .contact-social,
  .hero-actions,
  .btn-primary,
  .btn-secondary,
  button[type="submit"],
  .form-note,
  .radio-group,
  input, select, textarea,
  .form > form,
  .request-form-wrap,
  .contact-form-wrap {
    display: none !important;
  }

  /* Don't hide submit inside a card where we keep context; but safer: hide all form controls */

  /* HERO — compress for print */
  .hero {
    height: auto !important;
    min-height: 0 !important;
    page-break-after: avoid;
    padding: 2rem 0 !important;
    color: white !important;
  }
  .hero-bg { position: relative !important; }
  .hero-bg img {
    position: relative !important;
    height: 180px !important;
    animation: none !important;
    transform: none !important;
  }
  .hero-overlay { position: absolute !important; }
  .hero-content {
    position: relative;
    padding: 1rem;
    margin-top: -120px;
    z-index: 3;
    color: white !important;
  }
  .hero h1 { font-size: 22pt !important; color: white !important; }
  .hero-sub { font-size: 11pt !important; color: rgba(255,255,255,0.95) !important; }
  .hero-tag { font-size: 8pt !important; }

  /* Sections */
  section {
    padding: 1.2rem 0 !important;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .container { max-width: 100% !important; padding: 0 !important; }

  h1 { font-size: 22pt !important; }
  h2 { font-size: 16pt !important; margin-bottom: 0.5rem !important; }
  h3 { font-size: 12pt !important; }
  h4 { font-size: 11pt !important; }
  p  { font-size: 10pt !important; }

  /* Stats */
  .stats { page-break-inside: avoid; padding: 1rem 0 !important; }
  .stats-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 0.5rem !important; }
  .stat-number { font-size: 22pt !important; }
  .stat-unit { font-size: 16pt !important; }
  .stat-item p { font-size: 7pt !important; }

  /* About */
  .about-grid { grid-template-columns: 1fr 1.3fr !important; gap: 1.2rem !important; }
  .about-img-main { aspect-ratio: 4/3 !important; max-height: 180px; object-fit: cover; }
  .about-img-badge { position: static !important; display: inline-block; margin-top: 0.5rem; padding: 0.6rem 1rem !important; }
  .about-img-badge strong { font-size: 16pt !important; }

  /* Fruits */
  .fruits-grid--duo { grid-template-columns: 1fr 1fr !important; gap: 0.8rem !important; }
  .fruit-card { break-inside: avoid; page-break-inside: avoid; box-shadow: none !important; border: 1px solid #ddd; }
  .fruit-img-wrap { aspect-ratio: 16/9 !important; max-height: 120px; }
  .fruit-info { padding: 1rem !important; }
  .varieties-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.4rem !important; }
  .variety-item { padding: 0.5rem !important; }
  .variety-item strong { font-size: 9pt !important; }
  .variety-item span { font-size: 7pt !important; }
  .variety-item p { font-size: 8pt !important; }
  .color-seg { padding: 0.7rem !important; margin: 0.8rem 0 !important; }
  .color-seg-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .swatch { height: 25px !important; }
  .color-swatch strong { font-size: 8pt !important; }
  .color-swatch small { font-size: 6.5pt !important; }

  /* Markets */
  .markets {
    background: #1a1a1a !important;
    color: white !important;
    page-break-before: auto;
  }
  .markets::before, .markets::after { display: none !important; }
  .markets-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 0.6rem !important; }
  .market-card {
    background: rgba(255,255,255,0.08) !important;
    padding: 0.8rem !important;
    break-inside: avoid;
  }
  .market-card h3 { color: white !important; font-size: 11pt !important; }
  .market-card p { font-size: 8.5pt !important; color: rgba(255,255,255,0.85) !important; }
  .market-card ul li { font-size: 8pt !important; color: white !important; }
  .market-flag { font-size: 8pt !important; padding: 0.2rem 0.5rem !important; }
  .market-card--cta .btn-primary { display: none !important; }

  /* Request / Contact — keep info, drop forms */
  .request-section, .contact { background: #faf7f0 !important; }
  .request-grid, .contact-grid { grid-template-columns: 1fr !important; }
  .request-info, .contact-info { max-width: 100%; }
  .contact-items { box-shadow: none !important; border: 1px solid #ddd; }
  .fundos-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 0.4rem !important; }
  .fundo-card { padding: 0.6rem !important; }
  .fundo-card strong { font-size: 9pt !important; }
  .fundo-card p { font-size: 7.5pt !important; }

  /* Footer */
  .footer {
    background: #1a1a1a !important;
    color: white !important;
    padding: 1.5rem 0 0 !important;
    page-break-inside: avoid;
  }
  .footer-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 1rem !important; padding-bottom: 1rem !important; }
  .footer-brand p, .footer-links a, .cert-badge { color: rgba(255,255,255,0.9) !important; font-size: 8pt !important; }
  .footer-brand .logo-img { filter: invert(1) brightness(1.2) !important; }
  .footer-bottom { font-size: 7.5pt !important; padding: 0.8rem !important; }

  /* Logo */
  .logo-img { height: 38px !important; width: auto !important; }

  /* Links — show URLs in parentheses for footer/nav type links */
  a { color: inherit !important; text-decoration: none !important; }

  /* Make sure images don't break across pages */
  img { max-width: 100% !important; page-break-inside: avoid; break-inside: avoid; }
}
