@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --navy: #071d36;
  --navy-2: #0b2e55;
  --blue: #1595df;
  --blue-dark: #0875bd;
  --berry: #9a1647;
  --ink: #142136;
  --muted: #647084;
  --surface: #f4f8fc;
  --line: #dce5ee;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 29, 54, 0.14);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  background: rgba(5, 23, 43, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 52px;
  height: 42px;
}

.brand-text {
  display: grid;
  line-height: 0.95;
}

.brand-text small {
  font-size: 10px;
  letter-spacing: 0.13em;
  font-weight: 700;
}

.brand-text strong {
  font-size: 24px;
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.button) {
  position: relative;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--blue);
  transition: right 0.2s ease;
}

.main-nav > a:hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 12px 30px rgba(21, 149, 223, 0.25);
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.08);
}

.button-secondary {
  color: var(--blue-dark);
  border-color: var(--blue);
  background: var(--white);
}

.hero {
  min-height: 720px;
  padding-top: 76px;
  position: relative;
  display: grid;
  align-items: center;
  color: var(--white);
  background: url("/images/hero.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 22, 42, 0.98) 0%,
    rgba(5, 27, 52, 0.88) 43%,
    rgba(5, 27, 52, 0.22) 78%,
    rgba(5, 27, 52, 0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 90px;
}

.hero h1 {
  max-width: 700px;
  margin: 8px 0 22px;
  font-family: "Playfair Display", serif;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.hero h1 span {
  display: block;
  color: #2ab4ff;
}

.hero-copy {
  max-width: 580px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #58c0ff;
}

.section {
  padding: 90px 0;
}

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

h2 {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-copy {
  color: var(--muted);
  max-width: 620px;
}

.image-panel {
  min-height: 450px;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.image-panel-about {
  background-image:
    linear-gradient(rgba(7, 29, 54, 0.05), rgba(7, 29, 54, 0.1)),
    url("/images/nosotros.png");
}

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

.mini-feature h3 {
  margin: 14px 0 6px;
  font-size: 15px;
}

.mini-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.icon-circle {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  border: 1px solid rgba(21, 149, 223, 0.25);
  border-radius: 50%;
  background: #edf8ff;
}

.icon-circle svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-products {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(21, 149, 223, 0.11),
      transparent 35%
    ),
    var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:last-child {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 34px;
}

.product-card {
  overflow: hidden;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 29, 54, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(7, 29, 54, 0.13);
}

.product-image {
  height: 150px;
  background-position: center;
  background-size: cover;
}

.product-blueberry {
  background-image: url("/images/arandanos.png");
}

.product-mix {
  background-image: url("/images/mix.png");
}
.product-raspberry {
  background-image: url("/images/frambuesas.png");
}

.product-strawberry {
  background-image: url("/images/frutillas.png");
}

.product-blackberry {
  background-image: url("/images/moras.png");
}

.product-other {
  background-image: url("https://images.unsplash.com/photo-1490474418585-ba9bad8fd0ea?auto=format&fit=crop&w=700&q=82");
}

.product-body {
  padding: 18px 14px;
  text-align: center;
}

.product-body h3 {
  margin: 0 0 2px;
  font-size: 15px;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.centered {
  text-align: center;
}

.section-markets {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(25, 149, 222, 0.18),
      transparent 32%
    ),
    linear-gradient(135deg, #05192f, #0a315c);
}

.section-markets::after {
  content: "✦";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 360px;
  color: rgba(255, 255, 255, 0.025);
}

.market-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 70px;
  align-items: center;
}

.market-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.country-grid article {
  padding: 20px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.country-grid article:first-child {
  border-left: 0;
}

.globe-icon {
  display: block;
  margin-bottom: 12px;
  font-size: 50px;
  line-height: 1;
  color: #9ddcff;
}

.country-grid h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.country-grid p {
  margin: 0;
  font-size: 12px;
}

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

.process-step {
  position: relative;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.step-number {
  position: absolute;
  top: 14px;
  left: 16px;
  color: #9ba7b5;
  font-size: 12px;
  font-weight: 800;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  border-radius: 50%;
  background: #edf8ff;
  font-size: 30px;
}

.process-step h3 {
  margin: 0 0 8px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-contact {
  position: relative;
  color: var(--white);
  background: url("https://images.unsplash.com/photo-1490474418585-ba9bad8fd0ea?auto=format&fit=crop&w=2000&q=80")
    center / cover no-repeat;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(4, 19, 37, 0.98),
    rgba(7, 29, 54, 0.88)
  );
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-detail {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.contact-detail span {
  color: #55c2ff;
  font-size: 22px;
}

.contact-detail p {
  margin: 0;
}

.contact-card {
  color: var(--ink);
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  color: #39465a;
  font-size: 12px;
  font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #ced8e3;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  padding: 12px 13px;
  outline: none;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 149, 223, 0.12);
}

.form-grid small {
  color: #b42318;
  font-weight: 600;
}

.full-width {
  grid-column: 1 / -1;
}

.submit-button {
  width: 100%;
  margin-top: 18px;
}

.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.alert {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.alert-success {
  color: #136c3a;
  background: #e7f8ef;
}

.alert-error {
  color: #9f1f17;
  background: #fdeceb;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #04172b;
}

.footer-grid {
  padding: 60px 0 42px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 54px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 18px;
}

.footer-grid h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 14px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 7px 0;
  font-size: 13px;
}

.footer-grid p {
  max-width: 310px;
  font-size: 13px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
  }

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

  .market-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    padding: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    color: var(--ink);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 12px;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 6px;
    color: var(--white);
    background: var(--blue);
  }

  .two-columns,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 360px;
  }

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

  .country-grid article:nth-child(3) {
    border-left: 0;
  }

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

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 690px;
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(4, 22, 42, 0.98),
      rgba(5, 27, 52, 0.8)
    );
  }

  .hero h1 {
    font-size: 44px;
  }

  .section {
    padding: 68px 0;
  }

  .feature-grid,
  .product-grid,
  .process-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    gap: 14px;
  }

  .product-card {
    display: grid;
    grid-template-columns: 115px 1fr;
    align-items: center;
  }

  .product-image {
    height: 110px;
  }

  .product-body {
    text-align: left;
  }

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

  .country-grid article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .contact-card {
    padding: 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom div {
    flex-direction: column;
    gap: 8px;
  }
  .whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    min-height: 56px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    border-radius: 999px;
    background: #25d366;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    font-size: 14px;
    font-weight: 700;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      background 0.2s ease;
  }

  .whatsapp-float:hover {
    transform: translateY(-3px);
    background: #1ebe5d;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
    flex-shrink: 0;
  }

  @media (max-width: 620px) {
    .whatsapp-float {
      right: 14px;
      bottom: 14px;
      width: 56px;
      height: 56px;
      min-height: 56px;
      padding: 0;
      justify-content: center;
    }

    .whatsapp-float span {
      display: none;
    }
  }
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  min-height: 56px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #1ebe5d;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 620px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}
