:root {
  --blue: #0046ad;
  --blue-deep: #001f4d;
  --blue-mid: #1d63c4;
  --blue-pale: #eaf1fb;
  --green: #2e7d46;
  --green-deep: #17432a;
  --green-mid: #3f9a5b;
  --green-pale: #eaf6ee;
  --surface: #ffffff;
  --bg: #f5f8fc;
  --text: #1d3566;
  --muted: #5c6b85;
  --border: #dfe6f2;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(9, 30, 70, 0.09);
  --container: 1180px;
  --font-display: "Sora", "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--blue-deep);
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-right: auto;
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  color: var(--blue-deep);
}

.brand-word span {
  color: var(--blue);
}

.brand-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-left: 1px solid var(--border);
  padding-left: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--surface);
}

.main-nav .sec-menu:hover {
  color: var(--blue-mid);
}

.nav-cta {
  margin-left: 8px;
  color: var(--surface);
}

.main-nav .nav-cta {
  margin-left: 0;
  color: var(--surface);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 14px 0 0;
}

.breadcrumb a {
  font-weight: 600;
  color: var(--blue);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.btn-small {
  padding: 9px 18px;
  font-size: 0.88rem;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 70, 173, 0.28);
}

.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--blue-deep);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(46, 125, 70, 0.28);
}

.btn-green:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}

/* ---------- Split hero ---------- */
.split-hero {
  padding: 0;
}

.split-hero-head {
  text-align: center;
  max-width: 720px;
  margin: 100px auto 100px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 14px;
}

.split-hero-head h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin-bottom: 16px;
}

.split-hero-lead {
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto;
}

.split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

/* ---------- PANELES ---------- */

.split-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 48px 150px;
  isolation: isolate;
}

/* ---------- IMAGEN DE FONDO ---------- */

.split-panel-bg {
  position: absolute;
  inset: 0;
  z-index: -2;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transition: transform 0.6s ease;
}

/* ---------- IMAGEN AGRO ---------- */

.split-panel--agro .split-panel-bg {
  background-image: url("../assets/agro.jpg");
}

/* ---------- IMAGEN LABORATORIO ---------- */

.split-panel--lab .split-panel-bg {
  background-image: url("../assets/laboratorio.jpg");
}

/* ---------- FILTRO DE COLOR ---------- */

.split-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  transition: opacity 0.45s ease;
}

/* ---------- Verde ---------- */

.split-panel--agro::after {
  background:
    radial-gradient(720px 420px at 20% 15%,
      rgba(255, 255, 255, 0.12),
      transparent 75%),
    rgba(47, 119, 62, 0.68);
}

/* ---------- Azul ---------- */

.split-panel--lab::after {
  background:
    radial-gradient(720px 420px at 80% 15%,
      rgba(255, 255, 255, 0.12),
      transparent 75%),
    rgba(0, 107, 153, 0.72);
}

/* ---------- HOVER ---------- */

.split-panel:hover .split-panel-bg {
  transform: scale(1.08);
}

.split-panel:hover::after {
  opacity: 0.7;
}

/* ---------- CONTENIDO ---------- */

.split-panel-inner {
  position: relative;
  z-index: 2;
  color: #fff;
}

.split-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}

.split-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
}

.split-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

.split-panel-inner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.split-panel-inner p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 26px;
  line-height: 1.7;
}

.split-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 2px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.45);
  transition: 0.25s;
}

.split-panel:hover .split-cta {
  border-color: #fff;
  gap: 12px;
}

.split-cta svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--blue-deep);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  animation: marquee-scroll 26s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.marquee-track .dot {
  color: var(--blue-mid);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ---------- Sections ---------- */
.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eyebrow-center {
  display: flex;
  justify-content: center;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
  color: var(--text);
}

.section-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  font-family: var(--font-display);
  margin-bottom: 4px;
}

.stat-label {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.86rem;
  margin: 0;
}

/* Value grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
}

.value-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.value-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* Category recap cards */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.category-card--agro {
  border-top: 4px solid var(--green);
}

.category-card--lab {
  border-top: 4px solid var(--blue);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.category-card--agro .category-icon {
  background: var(--green-pale);
  color: var(--green);
}

.category-card--lab .category-icon {
  background: var(--blue-pale);
  color: var(--blue);
}

.category-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
}

.category-card h3 {
  font-size: 1.3rem;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--text);
}

.category-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.category-card--agro .category-list li svg {
  stroke: var(--green);
}

.category-card--lab .category-list li svg {
  stroke: var(--blue);
}

.category-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Product bento cards (agro.html / laboratorio.html) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(9, 30, 70, 0.14);
}

.product-media {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-agro .product-media {
  background: linear-gradient(150deg, var(--green-mid), var(--green-deep));
}

.theme-lab .product-media {
  background: linear-gradient(150deg, var(--blue-mid), var(--blue-deep));
}

.product-media svg {
  width: 44px;
  height: 44px;
  stroke: #fff;
  fill: none;
}

.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
}

.theme-agro .product-tag {
  color: var(--green-deep);
  background: var(--green-pale);
}

.theme-lab .product-tag {
  color: var(--blue-deep);
  background: var(--blue-pale);
}

.product-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.92rem;
  flex-grow: 1;
}

.product-link {
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 8px;
}

.theme-agro .product-link {
  color: var(--green);
}

.theme-lab .product-link {
  color: var(--blue);
}

.product-link:hover {
  text-decoration: underline;
}

.product-note {
  text-align: center;
  margin-top: 44px;
  padding: 30px;
  border-radius: var(--radius);
  font-size: 1rem;
}

.theme-agro-page .product-note {
  background: var(--green-pale);
  color: var(--green-deep);
}

.theme-lab-page .product-note {
  background: var(--blue-pale);
  color: var(--blue-deep);
}

.product-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

/* Category hero (agro.html / laboratorio.html) */
.category-hero {
  padding: 56px 0 64px;
  color: #fff;
}

.theme-agro-page .category-hero {
  background: linear-gradient(150deg, var(--green-mid), var(--green-deep));
}

.theme-lab-page .category-hero {
  background: linear-gradient(150deg, var(--blue-mid), var(--blue-deep));
}

.category-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.7);
}

.category-hero .breadcrumb a {
  color: #fff;
}

.category-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 18px 0 16px;
}

.category-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  font-size: 1.05rem;
}

/* Steps / process */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.timeline-item {
  position: relative;
  text-align: center;
  z-index: 1;
}

.timeline-marker {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.2rem;
  border: 4px solid var(--bg);
}

.timeline-item h3 {
  font-size: 1.05rem;
}

.timeline-item p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* Distributor / trust banner */
.trust-banner {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  text-align: center;
}

.trust-inner {
  max-width: 640px;
  margin: 0 auto;
}

.trust-logo {
  height: 120px;
  margin: 0 auto 22px;
  filter: brightness(0) invert(1);
}

.trust-banner h2 {
  color: #fff;
}

.trust-banner p {
  color: rgba(255, 255, 255, 0.82);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.7fr 0.6fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-brand .brand-word {
  color: #fff;
}

.footer-brand .brand-word span {
  color: #9dc0f5;
}

.footer-brand .brand-tag {
  color: rgba(255, 255, 255, 0.6);
  border-left-color: rgba(255, 255, 255, 0.25);
}

.footer-distributor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 10px;
}

.footer-distributor img {
  height: 20px;
  width: auto;
}

.footer-distributor span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
  color: inherit;
  margin-bottom: 6px;
}

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

.footer-bottom a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    max-width: 420px;
  }

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

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

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {

  .main-nav,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    gap: 16px;
    padding: 20px 24px;
  }

  .site-header.nav-open .main-nav .nav-cta {
    display: inline-flex;
    margin-top: 4px;
  }

  .split-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-panel {
    padding: 40px 28px;
    min-height: 320px;
  }

  .section {
    padding: 60px 0;
  }

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

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

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

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 24px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-item {
    text-align: left;
    padding-left: 68px;
  }

  .timeline-marker {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.x9p_hero_container {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background: #000;
}

/* Slides */
.x9p_slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

.x9p_slide.x9p_active {
  opacity: 1;
  z-index: 2;
}

.x9p_bg_video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Barra de carga */
.x9p_nav_bar {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  width: 80%;
}

.x9p_dot_container {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
}

.x9p_progress {
  width: 0%;
  height: 100%;
  background: #fff;
  transition: width linear;
}

/* Botones de navegación */
.x9p_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 20px;
  transition: background 0.3s;
}

.x9p_btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.x9p_prev {
  left: 20px;
}

.x9p_next {
  right: 20px;
}

/* Overlay */
.x9p_overlay {
  position: absolute;
  left: 8%;
  top: 45%;
  transform: translateY(-50%);
  z-index: 20;
  max-width: 620px;
  color: #fff;
}

.x9p_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.x9p_title {
  font-size: 50px;
  line-height: 1.05;
  margin: 0 0 20px;
  color: #fff;
  font-weight: 700;
}

.x9p_lead {
  font-size: 18px;
  line-height: 1.7;
  color: #f2f2f2;
  margin-bottom: 35px;
}

.x9p_cta {
  display: inline-block;
  padding: 15px 35px;
  background: var(--text);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s;
}

.x9p_cta:hover {
  background: #005f89;
}

/* Oscurece ligeramente el video */

.x9p_hero_container::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.1));

  z-index: 3;
}

.x9p_slide {
  z-index: 1;
}

.x9p_slide.x9p_active {
  z-index: 2;
}

.x9p_overlay {
  z-index: 5;
}









/*=========================================
    WHATSAPP FLOTANTE
=========================================*/

.gd-whatsapp-float{
    position:fixed;
    bottom:25px;
    left:25px;
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#25D366;
    border-radius:50%;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    z-index:99999;
    transition:.25s ease;
}

.gd-whatsapp-float:hover{
    transform:scale(1.1);
    box-shadow:0 12px 35px rgba(0,0,0,.35);
}

.gd-whatsapp-float svg{
    width:45px;
    height:45px;
    display:block;

}

/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:768px){
    .gd-whatsapp-float{
        width:58px;
        height:58px;
        left:18px;
        bottom:18px;
    }

    .gd-whatsapp-float img{
        width:30px;
        height:30px;
    }

}
.gd-whatsapp-float i{
    color:#fff;
    font-size:36px;
} 