/* ===================================================
   AGROSERV BRASIL — Main Stylesheet
   =================================================== */

/* ===================================================
   WAVE DIVIDERS — Listras onduladas em degradê verde
   =================================================== */

/* Hero bottom wave (inside hero, absolute) */
.hero-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}

.hero-wave-bottom svg {
  display: block;
  width: 100%;
  height: 90px;
}

/* Standalone wave dividers between sections */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  margin-top: -2px;
  margin-bottom: -2px;
  position: relative;
  z-index: 2;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* Off-white → dark green (before Services) */
.wave-divider--to-green {
  background: var(--off-white);
}

.wave-divider--to-green svg {
  height: 130px;
}

/* Dark green → image/white (after Services) */
.wave-divider--from-green {
  background: transparent;
  margin-top: -4px;
}

.wave-divider--from-green svg {
  height: 130px;
}

/* Light green → dark footer */
.wave-divider--to-footer {
  background: var(--green-50);
}

.wave-divider--to-footer svg {
  height: 120px;
}

/* Remove top padding on services since wave provides transition */
.services {
  padding-top: 70px !important;
}

/* Remove bottom padding gap before from-green wave */
.services {
  padding-bottom: 0 !important;
}

/* Footer no longer needs extra top spacing — wave handles it */
.footer {
  margin-top: -2px;
}

/* Stats bar sits directly on white wave */
.stats-bar {
  position: relative;
  z-index: 1;
}

/* CTA section bottom flows into wave-to-footer */
.cta-section {
  padding-bottom: 60px !important;
}

/* Logo PNG */
.logo-img {
  height: 124px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-img--footer {
  height: 180px;
  width: auto;
}

.logo-fallback {
  display: flex;
  gap: 0;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .logo-img         { height: 46px; }
  .logo-img--footer { height: 68px; }
}

@media (max-width: 768px) {
  .hero-wave-bottom svg { height: 50px; }
  .wave-divider--to-green svg  { height: 80px; }
  .wave-divider--from-green svg { height: 70px; }
  .wave-divider--to-footer svg { height: 70px; }
}

/* --- Variables --- */
:root {
  --green-900: #1B5E20;
  --green-800: #2E7D32;
  --green-700: #388E3C;
  --green-600: #43A047;
  --green-500: #4CAF50;
  --green-400: #66BB6A;
  --green-100: #C8E6C9;
  --green-50:  #F1F8E9;
  --gold:      #F9A825;
  --gold-light:#FDD835;
  --white:     #ffffff;
  --off-white: #FAFDF5;
  --gray-50:   #F8F9FA;
  --gray-100:  #F0F0F0;
  --gray-400:  #9E9E9E;
  --gray-600:  #757575;
  --dark:      #1A1A1A;
  --text:      #2D2D2D;
  --text-light:#555555;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow:    0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-green: 0 8px 30px rgba(27,94,32,0.25);

  --nav-h: 140px;
  --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}

/* --- Pages (SPA) --- */
.page { display: none; }
.page.active { display: block; }

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-svg { width: 44px; height: 44px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-agro {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--green-900);
  letter-spacing: 1px;
}

.logo-serv {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--green-500);
  letter-spacing: 1px;
}

.logo-brasil {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
}

.nav-link i { font-size: 12px; }

.nav-link:hover,
.nav-link.active {
  color: var(--green-800);
  background: var(--green-50);
}

.nav-link.active {
  color: var(--green-900);
  font-weight: 600;
}

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-whatsapp:hover {
  background: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--green-800);
  color: white;
  border-color: var(--green-800);
}
.btn-primary:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-2px);
}

/* ===================================================
   SECTION HELPERS
   =================================================== */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-label.light {
  color: var(--green-100);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-title.light { color: white; }

.section-desc {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
}

.section-desc.light { color: rgba(255,255,255,0.8); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc { margin: 0 auto; }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../images/pedro_leo_colheita.png');
  background-size: cover;
  background-position: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,94,32,0.88) 0%,
    rgba(27,94,32,0.75) 40%,
    rgba(46,125,50,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 24px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(32px, 6vw, 58px);
  color: white;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-title .highlight {
  color: var(--gold-light);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,0.88);
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scrollDown 1.8s infinite;
}

@keyframes scrollDown {
  0%   { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ===================================================
   STATS BAR
   =================================================== */
.stats-bar {
  background: white;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--gray-100);
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--green-800);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--green-800);
}

.stat-icon {
  font-size: 36px;
  color: var(--green-800);
  display: block;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 6px;
}

/* ===================================================
   ABOUT
   =================================================== */
.about {
  padding: 100px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack {
  position: relative;
}

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

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green-800);
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-green);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.about-img-badge i {
  font-size: 28px;
  color: var(--gold);
}

.about-content { padding-left: 20px; }

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 16px;
}

.about-content strong { color: var(--green-900); }

.about-list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.about-list li i {
  color: var(--green-600);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================================================
   SERVICES
   =================================================== */
.services {
  position: relative;
  padding: 100px 0;
  background-image: url('../images/packing.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.services-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27,94,32,0.93) 0%, rgba(46,125,50,0.9) 100%);
}

.services .container { position: relative; z-index: 1; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}

.service-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.service-icon i {
  font-size: 26px;
  color: var(--gold);
}

.service-card h3 {
  font-size: 18px;
  color: white;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* ===================================================
   GALLERY STRIP
   =================================================== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 280px;
}

.gallery-item {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27,94,32,0.35);
  transition: var(--transition);
}

.gallery-item:hover::after {
  background: rgba(27,94,32,0.55);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-overlay span {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: white;
  background: rgba(0,0,0,0.4);
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  padding: 100px 0;
  background: var(--green-50);
  text-align: center;
}

.cta-content { max-width: 640px; margin: 0 auto; }

.cta-icon {
  font-size: 56px;
  color: #25D366;
  margin-bottom: 24px;
  display: block;
}

.cta-content h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 36px;
}

.cta-email {
  margin-top: 20px !important;
  font-size: 14px !important;
  color: var(--gray-600) !important;
  margin-bottom: 0 !important;
}

.cta-email a {
  color: var(--green-700);
  font-weight: 600;
  text-decoration: underline;
}

/* ===================================================
   PAGE HERO (interior pages)
   =================================================== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.page-hero--frutas {
  background-image: url('https://images.unsplash.com/photo-1619566636858-adf3ef46400b?auto=format&fit=crop&w=1600&q=80');
}

.page-hero--contato {
  background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1600&q=80');
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27,94,32,0.88), rgba(46,125,50,0.82));
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  color: white;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto;
}

/* ===================================================
   FRUITS SECTION
   =================================================== */
.fruits-section {
  padding: 80px 0 60px;
  background: var(--off-white);
}

.fruits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fruit-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.fruit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200, #A5D6A7);
}

.fruit-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.fruit-card-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 52px;
}

.fruit-card-body {
  padding: 18px 20px;
}

.fruit-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.fruit-card-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.fruit-card-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-700);
  font-family: var(--font-head);
}

.fruit-card-cta i { font-size: 10px; transition: var(--transition); }
.fruit-card:hover .fruit-card-cta i { transform: translateX(4px); }

/* --- Fruit Modal --- */
.fruit-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.fruit-modal.open { display: flex; }

.fruit-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.fruit-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: white;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  animation: slideInRight 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fruit-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 2;
  transition: var(--transition);
}

.fruit-modal-close:hover { background: rgba(0,0,0,0.12); }

.fruit-modal-content { flex: 1; }

.fruit-modal-hero {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.fruit-modal-hero-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.fruit-modal-body {
  padding: 28px 28px 20px;
}

.fruit-modal-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.fruit-modal-body h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.fruit-modal-body p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.fruit-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.fruit-modal-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  background: var(--green-50);
  color: var(--green-800);
  border: 1px solid var(--green-100);
}

.fruit-modal-specs {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
}

.fruit-modal-specs h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.fruit-modal-spec-row {
  display: flex;
  gap: 8px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}

.fruit-modal-spec-row:last-child { border-bottom: none; }

.fruit-modal-spec-row strong {
  color: var(--dark);
  min-width: 110px;
  flex-shrink: 0;
}

.fruit-modal-spec-row span { color: var(--text-light); }

.fruit-modal-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--gray-100);
  background: white;
}

.fruit-modal-footer .btn { width: 100%; justify-content: center; }

/* Photo note */
.photo-note {
  padding: 40px 0;
  background: white;
}

.photo-note-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #FFF8E1;
  border: 1px solid #FFE082;
  border-radius: var(--radius);
  padding: 20px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.photo-note-box i {
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.photo-note-box p {
  font-size: 14px;
  color: #5D4037;
  line-height: 1.6;
}

/* ===================================================
   CONTACT
   =================================================== */
.contact-section {
  padding: 80px 0 100px;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.contact-form-wrap h2,
.contact-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-form-wrap > p,
.contact-info > p {
  color: var(--text-light);
  margin-bottom: 32px;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-head);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  background: white;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(76,175,80,0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e53935;
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: auto; cursor: pointer; }

.form-error {
  font-size: 12px;
  color: #e53935;
  font-weight: 500;
  min-height: 16px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--green-800);
  font-weight: 600;
  font-size: 15px;
}

.form-success.show { display: flex; }
.form-success i { font-size: 22px; color: var(--green-600); }

/* Contact cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  text-decoration: none;
}

.contact-card:not(.contact-card--static):hover {
  border-color: var(--green-300, #81C784);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.contact-card i:first-child {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--green-700);
  flex-shrink: 0;
}

.contact-card--whatsapp i:first-child {
  background: #E8F5E9;
  color: #25D366;
}

.contact-card div { flex: 1; }
.contact-card strong { display: block; font-size: 14px; color: var(--dark); font-weight: 600; }
.contact-card span  { font-size: 14px; color: var(--text-light); }

.contact-card-arrow {
  font-size: 14px;
  color: var(--gray-400);
}

.contact-whatsapp-cta {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}

.contact-whatsapp-cta h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-whatsapp-cta p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer { background: var(--green-900); color: white; }

.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.footer-logo-text span { color: var(--green-400); }

.footer-logo small {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 280px;
}

.footer-tagline {
  font-size: 11px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-400) !important;
  margin-top: 12px !important;
  font-family: var(--font-head);
  font-weight: 600;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--green-400); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-contact i {
  color: var(--green-400);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact a:hover { color: var(--green-400); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ===================================================
   FLOATING WHATSAPP
   =================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
}

.whatsapp-float:hover {
  background: #1da851;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.25);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.25); opacity: 0; }
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  font-family: var(--font-head);
}

.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}

.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }

/* ===================================================
   ANIMATIONS
   =================================================== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fade-up.visible,
.animate-slide-left.visible,
.animate-slide-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }

/* ===================================================
   RESPONSIVE — Tablet (max 1024px)
   =================================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-content { padding-left: 0; }
  .about-img-badge { right: 16px; bottom: -16px; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .fruits-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--gray-100); }
  .stat-item:last-child { border-bottom: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
}

/* ===================================================
   RESPONSIVE — Mobile (max 768px)
   =================================================== */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-menu,
  .nav-whatsapp { display: none; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: white;
    border-top: 1px solid var(--gray-100);
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow);
  }

  .nav-menu.open + .nav-whatsapp {
    display: flex;
    position: absolute;
    top: calc(var(--nav-h) + 200px);
    left: 16px; right: 16px;
    justify-content: center;
  }

  .hamburger { display: flex; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }

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

  .gallery-strip { grid-template-columns: repeat(2, 1fr); height: 320px; }
  .gallery-overlay { opacity: 1; transform: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .fruit-modal-panel { max-width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 26px; }
  .whatsapp-float-tooltip { display: none; }

  .about { padding: 60px 0; }
  .services { padding: 60px 0; }
  .cta-section { padding: 60px 0; }
}

/* ===================================================
   RESPONSIVE — Small Mobile (max 480px)
   =================================================== */
@media (max-width: 480px) {
  .fruits-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery-item { aspect-ratio: 4/3; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 20px 12px; }
  .stat-number { font-size: 32px; }
}
