*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1d3476;
  --blue: #2b4baa;
  --sky: #29abe2;
  --sky-lt: #7fcfef;
  --white: #ffffff;
  --offwhite: #f0f6fb;
  --pale: #e3f3fb;
  --dark: #0f1e45;
  --muted: #5a7a9e;
}

html {
  scroll-behavior: smooth;
}
body {
  background: var(--offwhite);
  color: var(--dark);
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ── NAVBAR ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 68px;
  box-shadow: 0 2px 20px rgba(15, 30, 69, 0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 100px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(0, 0, 0, 0.744);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--sky);
}

.nav-cta {
  background: var(--sky);
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 800 !important;
}
.nav-cta:hover {
  background: var(--sky-lt) !important;
  color: var(--navy) !important;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 68px;

  background:
    linear-gradient(
      135deg,
      rgba(8, 15, 35, 0.46) 0%,
      rgba(15, 40, 80, 0.722) 70%,
      rgba(70, 140, 220, 0.447) 100%
    ),
    url("../img/hero_amacats.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
/* decorative circles */
.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(41, 171, 226, 0.12);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(41, 171, 226, 0.08);
  bottom: -100px;
  left: 100px;
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.286);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 32px;
}

.hero-title {
  font-family: "Nunito", sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.hero-title .sky {
  color: var(--sky);
}

.hero-subtitle {
  font-family: "Nunito", sans-serif;
  font-size: clamp(23px, 2.5vw, 26px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.601);
  margin-bottom: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.822);
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky);
  color: var(--navy);
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: 6px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-primary:hover {
  background: var(--sky-lt);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-secondary:hover {
  border-color: var(--sky);
  color: var(--sky);
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  z-index: 2;
}

.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(41, 171, 226, 0.07);
  z-index: 0;
}

.hero-logo-wrap::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(41, 171, 226, 0.1);
  z-index: 0;
}

.hero-logo-wrap img {
  width: 660px;
  max-width: 100%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(41, 171, 226, 0.35));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ── STATS STRIP ─────────────────────────────────── */
.stats-strip {
  background: var(--sky);
  padding: 28px 80px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: "Nunito", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(15, 30, 69, 0.65);
  margin-top: 4px;
}

/* ── FEATURES ─────────────────────────────────────── */
.features {
  padding: 100px 80px;
  background: var(--offwhite);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: var(--pale);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.section-title {
  font-family: "Nunito", sans-serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 28px;
  border: 1.5px solid transparent;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--sky);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(41, 171, 226, 0.15);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.feature-name {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ── PRODUCTS ─────────────────────────────────────── */
.products {
  padding: 100px 80px;
  background:
    linear-gradient(
      135deg,
      rgba(8, 15, 35, 0.792) 0%,
      rgba(15, 40, 80, 0.851) 80%,
      rgba(70, 140, 220, 0.773) 90%
    ),
    url("../img/hero_amacats.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.products::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(41, 171, 226, 0.1);
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.products .section-tag {
  background: rgb(255, 255, 255);
  color: var(--sky);
}
.products .section-title {
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.product-card:hover {
  background: rgba(41, 171, 226, 0.12);
  border-color: var(--sky);
  transform: translateY(-6px);
}

.product-card.featured {
  background: var(--sky);
  border-color: var(--sky);
  position: relative;
}

.product-card.featured:hover {
  background: #3dbae8;
  transform: translateY(-6px);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--navy);
  font-family: "Nunito", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.product-kg {
  font-family: "Nunito", sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--sky);
}

.product-card.featured .product-kg {
  color: var(--navy);
}

.product-unit {
  font-size: 17px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.716);
  margin-top: 4px;
  margin-bottom: 20px;
}

.product-card.featured .product-unit {
  color: rgba(15, 30, 69, 0.575);
}

.product-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.786);
}

.product-card.featured .product-desc {
  color: rgba(15, 30, 69, 0.7);
}
/* Imagen decorativa flotante izquierda */
.products-deco-img {
  position: absolute;
  left: -60px;
  bottom: 0;
  width: 420px;
  max-width: 35%;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
  opacity: 0.92;
  filter: drop-shadow(0 20px 40px rgba(15, 30, 69, 0.5));

  /* Animación suave de entrada */

  animation: decoFloat 5s ease-in-out infinite;
}

/* Card con imagen sobresaliente */
.product-card--image {
  position: relative;
  padding-top: 100px;
  overflow: visible;
}

.product-card-img-wrap {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  z-index: 10;
  filter: drop-shadow(0 12px 24px rgba(15, 30, 69, 0.35));
  transition: transform 0.3s ease;
}

.product-card--image:hover .product-card-img-wrap {
  transform: translateX(-50%) translateY(-8px) scale(1.05);
}

.product-card-img {
  width: 100%;
  height: 130%;
  object-fit: contain;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
  overflow: visible;
  padding-top: 30px;
  position: relative;
  z-index: 2;
  align-items: end;
}

.products-img-col {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  animation: decoFloat 5s ease-in-out infinite;
}

@keyframes decoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Quita la imagen absoluta anterior si la tenías */

.products-deco-img {
  display: none;
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-img-col {
    display: none;
  }
}

/* ── AROMAS ─────────────────────────────────────── */
.aromas {
  padding: 100px 80px;
  background: var(--offwhite);
}

.aromas-flex {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 0;
}

.aroma-card {
  background: var(--white);
  border: 2px solid var(--pale);
  border-radius: 20px;
  padding: 44px 36px;
  text-align: center;
  min-width: 210px;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  cursor: default;
}

.aroma-card:hover {
  border-color: var(--sky);
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(41, 171, 226, 0.15);
}

.aroma-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 20px;
}

.aroma-name {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.aroma-note {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sky);
}

/* ── CONTACT ─────────────────────────────────────── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 55vh;
}

.contact-left {
  background: var(--blue);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left .section-tag {
  background: rgba(41, 171, 226, 0.2);
  color: var(--sky);
}
.contact-left .section-title {
  color: var(--white);
  margin-bottom: 48px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(41, 171, 226, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 4px;
}

.contact-val {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  line-height: 1.5;
}

.contact-val a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(41, 171, 226, 0.4);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.contact-val a:hover {
  color: var(--sky);
  border-color: var(--sky);
}

.social-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  cursor: default;
}
.social-pill:hover {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--navy);
}

.contact-right {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 55vh;
  overflow: hidden;
}
.map-frame {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  border: none;
}

.address-paw {
  font-size: 52px;
  margin-bottom: 20px;
}

.address-line {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 12px;
}

.address-city {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky);
}

/* ── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 32px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 46px;
  width: auto;
}

.footer-copy {
  font-size: 12px;
  color: rgba(252, 252, 252, 0.978);
  letter-spacing: 0.5px;
}

/* <!-- REDES SOCIALES FLOTANTES --> */

.social-float {
  position: fixed;
  right: 30px;
  left: unset;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sf-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.881);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #29aae2c7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #29aae2;
  font-size: 18px;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
  position: relative;
}

.sf-link:hover {
  transform: translateX(5px) scale(1.1);
  border-color: rgba(41, 171, 226, 0.6);
  background: rgba(41, 171, 226, 0.25);
}

/* Tooltip al hover */
.sf-link::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 30, 69, 0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
  transform: translateY(-50%) translateX(-4px);
}

.sf-link:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Línea decorativa arriba y abajo */
.sf-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(41, 171, 226, 0.4),
    transparent
  );
  margin: 0 auto;
  display: block;
}

/* Íconos SVG inline por red */
.sf-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
/* Ocultar en móvil pequeño */
@media (max-width: 600px) {
  .social-float {
    display: none;
  }
}

/* <!-- REDES SOCIALES FLOTANTES --> */

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .hero,
  .contact {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 60px 32px 40px;
  }
  .hero-right {
    padding: 40px 32px 60px;
  }
  .stats-strip {
    padding: 28px 32px;
    gap: 40px;
  }
  .features {
    padding: 60px 24px;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .products {
    padding: 60px 24px;
  }
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .aromas {
    padding: 60px 24px;
  }
  .contact-left {
    padding: 60px 32px;
  }
  .contact-right {
    padding: 40px 32px;
  }
  footer {
    padding: 24px 32px;
  }
}

@media (max-width: 560px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero-logo-wrap img {
    width: 220px;
  }
}
