/* ═══════════════════════════════════════════════════════════
   GoAgro – main.css
   Variables, Reset, Tipografía, Layout Global, Navbar, Hero,
   Features Strip, Footer, Utilidades
═══════════════════════════════════════════════════════════ */

/* ── VARIABLES ──────────────────────────────────────────── */
:root {
  --green-dark:    #1a3a1f;
  --green-mid:     #2d6a2d;
  --green-light:   #4caf50;
  --green-pale:    #e8f5e9;
  --amber:         #f59e0b;
  --amber-soft:    #fef3c7;
  --white:         #ffffff;
  --gray-light:    #f4f6f3;
  --gray-mid:      #7a8b79;
  --gray-dark:     #3d4b3c;
  --text-body:     #2c3e2d;

  --radius-sm:     3px;
  --radius-md:     6px;
  --radius-lg:     10px;
  --shadow-sm:     0 2px 10px rgba(0,0,0,.07);
  --shadow-md:     0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:     0 16px 48px rgba(0,0,0,.18);
  --transition:    all .22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .02em;
  line-height: 1.1;
}

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

/* ── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--green-mid);
  padding: 7px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.88);
}

.topbar a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  transition: color .18s;
}

.topbar a:hover {
  color: var(--amber);
}


/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar-goagro {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 18px rgba(0,0,0,.08);
  border-bottom: none;
}

.navbar-goagro .navbar-brand {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.logo-nav {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.navbar-goagro .nav-link {
  color: var(--green-dark) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 22px 16px !important;
  border-bottom: none !important;
  transition: var(--transition);
}

.navbar-goagro .nav-link:hover,
.navbar-goagro .nav-link.active {
  color: var(--amber) !important;
  border-bottom: none !important;
}

.btn-wa-nav {
  background: #25d366;
  color: var(--white) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .18s, transform .15s;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

.btn-wa-nav:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.navbar-toggler {
  border-color: rgba(0,0,0,.2);
}

.navbar-toggler-icon {
  filter: none;
}

@media (max-width: 991px) {
  .logo-nav {
    height: 40px;
  }

  .navbar-goagro .nav-link {
    padding: 12px 16px !important;
    border-left: none !important;
    border-bottom: none !important;
  }

  .navbar-goagro .nav-link:hover,
  .navbar-goagro .nav-link.active {
    border-left: none !important;
    border-bottom: none !important;
  }
}


/* ── HERO ───────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 92vh;
  background: url('../images/hero-bg-goagro.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 22, 10, .88) 0%,
    rgba(13, 38, 17, .75) 40%,
    rgba(13, 38, 17, .35) 70%,
    rgba(13, 38, 17, .10) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 70px 0;
}

.min-vh-hero {
  min-height: 80vh;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: .98;
  letter-spacing: .01em;
  text-shadow: 0 3px 18px rgba(0,0,0,.45);
  margin-bottom: 18px;

  max-width: 760px; 
  white-space: normal;
}
.hero-content .col-lg-7 {max-width: 720px;}
.hero-title em {
  color: #65b82f;
  font-style: normal;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.92);
  max-width: 560px;
  line-height: 1.45;
  margin-bottom: 30px;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0,0,0,.38);
}

.btn-hero-primary {
  background: #65b82f;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background .2s, transform .15s;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
}

.btn-hero-primary:hover {
  background: #4f9f22;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 13px 30px;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 145px;
}

.hero-stat-icon {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255,255,255,.78);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.94);
  font-size: 1.22rem;
  flex-shrink: 0;
}

.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #65b82f;
  line-height: .9;
}

.hero-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.95);
  text-transform: none;
  letter-spacing: .01em;
  line-height: 1.15;
  margin-top: 5px;
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: clamp(3.2rem, 4.8vw, 4.4rem);
    max-width: 820px;
  }

  .hero-sub {
    max-width: 680px;
  }
}
/* ── HERO RESPONSIVE ────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    background-position: center right;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 22, 10, .88) 0%,
      rgba(8, 22, 10, .78) 100%
    );
  }

  .hero-content {
    padding: 64px 0;
  }

  .min-vh-hero {
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat {
    min-width: 135px;
  }
}

@media (max-width: 575px) {
  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.4);
  z-index: 0;
}
.page-hero-content { position: relative; z-index: 2; padding: 80px 0 60px; }
.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero-title em { color: var(--amber); font-style: normal; }
.page-hero-sub { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 540px; margin: 0 auto 20px; line-height: 1.65; }
.breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,.4); }
.breadcrumb-item a { color: rgba(255,255,255,.65); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--amber); }
.breadcrumb-item.active { color: var(--amber); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── FEATURES STRIP ─────────────────────────────────────── */
.features-strip {
  background: var(--green-dark);
  padding: 26px 0;
}
.features-strip {
  background: #ffffff;
  padding: 42px 0;
  border-top: 1px solid rgba(0,0,0,.04);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 12px;
  border-radius: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-item i {
  font-size: 1.6rem;
  color: #65b82f;
  min-width: 32px;
}

.feature-item-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-dark);
  letter-spacing: .03em;
}

.feature-item-sub {
  font-size: .85rem;
  color: #6c757d;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}


/* ================================
   TESTIMONIOS
================================ */
.testimonios-section {
  background: #0f172a; /* oscuro elegante */
  position: relative;
}

/* Header claro sobre fondo oscuro */
.section-header-light .section-title {
  color: #fff;
}

.section-header-light .section-title em {
  color: var(--amber);
}

.section-header-light .section-sub {
  color: rgba(255,255,255,0.72);
}

/* Tag amarillo */
.section-tag-amber {
  background: rgba(245,158,11,0.15);
  color: var(--amber);
}

/* Card */
.testi-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px;
  height: 100%;
  transition: all .3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Estrellas */
.testi-stars {
  color: #f59e0b;
  margin-bottom: 12px;
}

/* Texto */
.testi-text {
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* Autor */
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.testi-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111827;
}

.testi-role {
  font-size: 0.8rem;
  color: #6b7280;
}
/* ================================
   CTA FINAL
================================ */
.cta-strip {
  background: linear-gradient(135deg, #16a34a, #0f3d2e);
  padding: 70px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Efecto sutil de textura/overlay */
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 40%);
  pointer-events: none;
}

.cta-strip h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-strip p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.85);
}

/* BOTÓN PRINCIPAL */
.btn-cta-dark {
  background: #111827;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.btn-cta-dark:hover {
  background: #000;
  transform: translateY(-2px);
}

/* BOTÓN SECUNDARIO */
.btn-cta-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.btn-cta-outline:hover {
  background: #fff;
  color: #0f3d2e;
}

/* ── SECTION HELPERS ────────────────────────────────────── */
.section-pad    { padding: 90px 0; }
.bg-white       { background: var(--white); }
.bg-gray-light  { background: var(--gray-light); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  background: var(--amber-soft);
  color: var(--amber);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--green-dark); margin-bottom: 6px; }
.section-title em { color: var(--green-mid); font-style: normal; }
.section-divider { width: 52px; height: 4px; background: var(--amber); margin: 14px auto; border-radius: 2px; }
.section-sub { color: var(--gray-mid); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.text-body-muted { color: var(--gray-dark); line-height: 1.75; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary-green {
  background: var(--green-mid);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 30px;
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background .18s, transform .15s;
}
.btn-primary-green:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); }

.btn-outline-green {
  background: transparent;
  color: var(--green-mid);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 30px;
  border: 2px solid var(--green-mid);
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-outline-green:hover { background: var(--green-mid); color: var(--white); transform: translateY(-2px); }

/* ── CTA STRIP ──────────────────────────────────────────── */
.cta-strip { background: var(--amber); padding: 56px 0; }
.cta-strip h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--green-dark); margin-bottom: 10px; }
.cta-strip p  { color: rgba(26,58,31,.75); font-size: 1.05rem; margin-bottom: 28px; }

.btn-cta-dark {
  background: var(--green-dark);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 30px;
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .18s, transform .15s;
}
.btn-cta-dark:hover  { background: #0e2112; color: var(--white); transform: translateY(-2px); }

.btn-cta-outline {
  background: transparent;
  color: var(--green-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 30px;
  border: 2px solid var(--green-dark);
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-cta-outline:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #0f2212;
  padding: 64px 0 0;
  color: rgba(255,255,255,.7);
}
.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .06em;
  margin-bottom: 14px;
  display: inline-block;
}
.footer-brand span { color: var(--amber); }
footer p { font-size: .88rem; line-height: 1.7; }

.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 8px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .88rem;
  transition: color .18s, padding-left .18s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a i { font-size: .75rem; color: var(--green-light); }
.footer-links a:hover { color: var(--amber); padding-left: 4px; }

.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 18px 0;
  margin-top: 56px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ── SOCIAL LINKS ───────────────────────────────────────── */
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  text-decoration: none;
  transition: background .18s, color .18s;
}
.social-link:hover { background: var(--amber); color: var(--green-dark); }

/* ── WHATSAPP FLOAT ─────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
  z-index: 9999;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(0,0,0,.4); color: var(--white); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .hero-stats   { gap: 24px; }
}
/**Otros estiilos**/
.logo-nav {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .logo-nav {
    height: 40px;
  }
}
/* Link desarrollador */
.footer-dev {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all .25s ease;
}

.footer-dev:hover {
  color: var(--amber);
}

/* ================================
   PAGE HERO - NOSOTROS
================================ */

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Imagen de fondo */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,22,10,.65) 0%, rgba(8,22,10,.85) 100%),
    url('../images/page-hero-nosotros.webp') center/cover no-repeat;
}

/* Contenido */
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.page-hero-title em {
  color: var(--amber);
  font-style: normal;
}

.page-hero-sub {
  max-width: 620px;
  margin: 0 auto 20px;
  color: rgba(255,255,255,.85);
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #fff;
}

/* Tag */

.section-tag-green {
  background: rgba(101,184,47,.16);
  color: #65b82f;
}

.page-hero-title em {
  color: #65b82f;
  font-style: normal;
}
.mvv-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 25px;
  height: 100%;
  transition: all .3s ease;
  border: 1px solid rgba(0,0,0,.05);
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.mvv-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(101,184,47,.12);
  color: #65b82f;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 20px;
}

.mvv-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.mvv-card p {
  color: #6b7280;
  font-size: 14.5px;
  line-height: 1.6;
}

/* Tarjeta destacada (Visión) */
.mvv-card--featured {
  background: linear-gradient(135deg, #65b82f, #4aa321);
  color: #fff;
}

.mvv-card--featured p {
  color: rgba(255,255,255,.9);
}

.mvv-card--featured .mvv-icon {
  background: rgba(255,255,255,.2);
  color: #fff;
} 


.page-hero-contacto .page-hero-overlay {
  background:
    linear-gradient(180deg, rgba(8,22,10,.68) 0%, rgba(8,22,10,.88) 100%),
    url('../images/page-hero-contacto.webp') center/cover no-repeat;
}

.contact-map-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  color: var(--green-dark);
}

.contact-map-title i {
  color: #65b82f;
}

.map-wrapper iframe {
  border: 0;
}

.agrocete-partner-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f6faf5 0%, #ffffff 55%, #edf7ee 100%);
}

.agrocete-partner-card {
  position: relative;
  overflow: hidden;
  padding: 55px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(30, 93, 45, 0.12);
  box-shadow: 0 24px 60px rgba(20, 70, 35, 0.10);
}

.agrocete-partner-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -90px;
  background: radial-gradient(circle, rgba(66, 154, 75, 0.18), transparent 70%);
}

.agrocete-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(45, 132, 58, 0.10);
  color: #2d843a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.agrocete-heading {
  margin-bottom: 18px;
  color: #123b26;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
}

.agrocete-description {
  max-width: 570px;
  margin-bottom: 0;
  color: #4c5f55;
  font-size: 18px;
  line-height: 1.75;
}

.agrocete-logo-box {
  position: relative;
  z-index: 2;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f9fcf8, #eef8ef);
  border: 1px solid rgba(30, 93, 45, 0.10);
}

.agrocete-logo {
  width: 100%;
  max-width: 430px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .agrocete-partner-section {
    padding: 55px 0;
  }

  .agrocete-partner-card {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .agrocete-description {
    font-size: 16px;
  }

  .agrocete-logo-box {
    min-height: 160px;
    padding: 24px;
  }
}
/* ── PRODUCT CARD ACTIONS ───────────────────────────────── */
.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.btn-product-whatsapp,
.btn-product-detail {
  flex: 1 1 140px;
  justify-content: center;
  min-height: 44px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: .98rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}

.btn-product-whatsapp {
  background: #25d366;
  color: var(--white);
  border: 2px solid #25d366;
  box-shadow: 0 6px 16px rgba(37, 211, 102, .20);
}

.btn-product-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-product-detail {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid rgba(26, 58, 31, .18);
}

.btn-product-detail:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 575px) {
  .product-actions {
    flex-direction: column;
  }

  .btn-product-whatsapp,
  .btn-product-detail {
    width: 100%;
  }
}