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

:root {
  --green: #54e500;
  --green-dark: #35af00;
  --green-soft: rgba(84, 229, 0, 0.12);

  --black: #080b0d;
  --dark: #101416;
  --dark-soft: #171d20;

  --white: #ffffff;
  --surface: #f4f7f6;
  --surface-2: #edf2f0;

  --border: #dfe6e3;
  --text: #60696d;
  --text-light: #879095;

  --shadow:
    0 25px 70px rgba(0, 0, 0, 0.13);

  --shadow-small:
    0 15px 45px rgba(0, 0, 0, 0.07);

  --radius-small: 14px;
  --radius-medium: 24px;
  --radius-large: 36px;
}

/* =====================================
   REINICIO GENERAL
===================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

body.menu-open {
  overflow: hidden;
}

body.dark {
  --black: #f8fbfa;
  --white: #0c1012;
  --surface: #111719;
  --surface-2: #171e20;
  --border: #283236;
  --text: #aab3b7;
  --text-light: #818b90;
  --dark: #050708;
}

::selection {
  color: #000;
  background: var(--green);
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

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

.section {
  position: relative;
  padding: 115px 0;
}

.section h2 {
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.04;
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 22px;
  padding: 10px 16px;

  color: var(--green-dark);
  background: var(--green-soft);

  border: 1px solid rgba(84, 229, 0, 0.25);
  border-radius: 100px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.section-label::before,
.eyebrow span {
  content: "";

  width: 8px;
  height: 8px;

  background: var(--green);
  border-radius: 50%;

  box-shadow: 0 0 14px var(--green);
}

/* =====================================
   ENCABEZADO
===================================== */

.header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1000;

  width: min(1180px, calc(100% - 36px));
  min-height: 82px;
  padding: 9px 15px 9px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 22px;

  box-shadow:
    0 14px 45px rgba(0, 0, 0, 0.09);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transform: translateX(-50%);
  transition: 0.3s ease;
}

body.dark .header {
  background: rgba(12, 16, 18, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
}

.header.scrolled {
  top: 8px;
  min-height: 72px;

  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.16);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 250px;
  height: 62px;

  padding: 5px;

  object-fit: contain;
  object-position: left center;

  background: white;
  border-radius: 12px;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar a {
  padding: 12px;

  color: var(--black);
  text-decoration: none;

  font-size: 13px;
  font-weight: 700;

  border-radius: 12px;
  transition: 0.25s ease;
}

.navbar a:hover {
  background: var(--green-soft);
}

.navbar a:last-child {
  color: #000;
  background: var(--green);
}

.navbar a:last-child:hover {
  transform: translateY(-2px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-button,
.menu-button {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border: none;
  border-radius: 13px;

  font-size: 22px;
}

.theme-button {
  color: var(--black);
  background: var(--green-soft);
}

.theme-button:hover {
  background: var(--green);
  color: #000;
}

.menu-button {
  display: none;

  color: var(--white);
  background: var(--black);
}

/* =====================================
   PORTADA
===================================== */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 80% 40%,
      rgba(84, 229, 0, 0.18),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      var(--white),
      var(--surface)
    );
}

.hero-grid {
  position: absolute;
  inset: 0;

  opacity: 0.28;

  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.045) 1px,
      transparent 1px
    );

  background-size: 55px 55px;
}

.hero-glow {
  position: absolute;

  border-radius: 50%;
  filter: blur(140px);
}

.hero-glow-one {
  top: -120px;
  right: -120px;

  width: 450px;
  height: 450px;

  background: rgba(84, 229, 0, 0.17);
}

.hero-glow-two {
  left: -180px;
  bottom: -180px;

  width: 400px;
  height: 400px;

  background: rgba(84, 229, 0, 0.1);
}

.hero-container {
  position: relative;
  z-index: 2;

  padding: 170px 0 100px;

  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 70px;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 28px;

  font-size: clamp(54px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -5px;
  line-height: 0.95;
}

.hero h1 span {
  display: block;
  color: var(--green-dark);
}

.hero-description {
  max-width: 650px;
  margin-bottom: 36px;

  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

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

.button {
  min-height: 58px;
  padding: 0 29px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;
  text-decoration: none;

  font-size: 15px;
  font-weight: 800;

  transition: 0.3s ease;
}

.button-primary {
  color: var(--white);
  background: var(--black);

  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.2);
}

.button-primary:hover {
  color: #000;
  background: var(--green);
  transform: translateY(-4px);
}

.button-secondary {
  color: var(--black);
  background: rgba(255, 255, 255, 0.72);

  border: 1px solid var(--border);
}

body.dark .button-secondary {
  background: rgba(23, 29, 32, 0.9);
}

.button-secondary:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}

.hero-stats {
  margin-top: 45px;

  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stats strong {
  font-size: 22px;
  font-weight: 900;
}

.hero-stats span {
  color: var(--text);
  font-size: 12px;
}

.hero-visual {
  position: relative;

  min-height: 500px;

  display: grid;
  place-items: center;
}

.energy-core {
  position: relative;
  z-index: 3;

  width: 280px;
  height: 280px;

  display: grid;
  place-items: center;

  background:
    linear-gradient(
      145deg,
      #181d20,
      #050607
    );

  border-radius: 50%;

  box-shadow:
    0 45px 90px rgba(0, 0, 0, 0.28),
    inset 0 0 55px rgba(84, 229, 0, 0.14),
    0 0 0 20px rgba(255, 255, 255, 0.6);

  animation: floating 4s ease-in-out infinite;
}

.energy-core span {
  font-size: 105px;

  filter:
    drop-shadow(
      0 0 25px rgba(84, 229, 0, 0.55)
    );
}

.energy-orbit {
  position: absolute;

  border:
    1px solid rgba(84, 229, 0, 0.3);
  border-radius: 50%;
}

.orbit-one {
  width: 390px;
  height: 390px;

  animation: rotate 18s linear infinite;
}

.orbit-two {
  width: 460px;
  height: 460px;

  border-style: dashed;

  animation:
    rotate-reverse 24s linear infinite;
}

.floating-card {
  position: absolute;
  z-index: 4;

  padding: 15px 18px;

  display: flex;
  align-items: center;
  gap: 12px;

  background: rgba(255, 255, 255, 0.92);

  border:
    1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.13);

  backdrop-filter: blur(14px);
}

body.dark .floating-card {
  background:
    rgba(20, 26, 28, 0.95);

  border-color:
    rgba(255, 255, 255, 0.08);
}

.floating-card > span {
  font-size: 26px;
}

.floating-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.floating-card strong {
  font-size: 13px;
}

.floating-card small {
  color: var(--text);
}

.floating-card-one {
  top: 75px;
  left: 0;
}

.floating-card-two {
  right: -20px;
  bottom: 80px;
}

/* =====================================
   NOSOTROS
===================================== */

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 85px;
}

.about-content h2 {
  margin-bottom: 28px;
}

.about-content > p {
  margin-bottom: 18px;

  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;

  color: var(--black);
  text-decoration: none;
  font-weight: 800;

  border-bottom:
    2px solid var(--green);

  transition: 0.25s ease;
}

.text-link:hover {
  color: var(--green-dark);
  transform: translateX(5px);
}

.about-visual {
  position: relative;
  min-height: 480px;
}

.about-main-card {
  min-height: 450px;
  padding: 48px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  color: white;

  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(84, 229, 0, 0.25),
      transparent 33%
    ),
    linear-gradient(
      145deg,
      #161b1e,
      #07090a
    );

  border-radius: var(--radius-large);

  box-shadow: var(--shadow);
}

.about-icon {
  width: 78px;
  height: 78px;
  margin-bottom: auto;

  display: grid;
  place-items: center;

  color: #000;
  background: var(--green);

  border-radius: 22px;
  font-size: 35px;
}

.about-small-title {
  margin-bottom: 11px;

  color: var(--green);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.about-main-card h3 {
  margin-bottom: 15px;
  font-size: 31px;
}

.about-main-card > p:last-child {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.experience-card {
  position: absolute;
  right: -25px;
  bottom: -25px;

  width: 190px;
  min-height: 150px;
  padding: 27px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  color: #000;
  background: var(--green);

  border: 8px solid var(--white);
  border-radius: 26px;
}

.experience-card strong {
  font-size: 40px;
  font-weight: 900;
}

.experience-card span {
  font-size: 13px;
  font-weight: 700;
}

/* =====================================
   SERVICIOS
===================================== */

.services {
  background: var(--surface);
}

.section-heading {
  margin-bottom: 58px;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 65px;
}

.section-heading > p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}

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

.service-card {
  position: relative;

  min-height: 340px;
  padding: 33px;

  display: flex;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.05);

  transition: 0.35s ease;
}

.service-card:hover {
  color: white;
  background: #101416;

  border-color:
    rgba(84, 229, 0, 0.45);

  transform: translateY(-10px);

  box-shadow:
    0 30px 65px rgba(0, 0, 0, 0.18);
}

.service-number {
  position: absolute;
  top: 23px;
  right: 27px;

  color: rgba(0, 0, 0, 0.11);

  font-size: 40px;
  font-weight: 900;
}

body.dark .service-number {
  color: rgba(255, 255, 255, 0.08);
}

.service-icon {
  width: 67px;
  height: 67px;
  margin-bottom: 30px;

  display: grid;
  place-items: center;

  background: var(--green-soft);
  border-radius: 19px;

  font-size: 30px;
}

.service-card:hover .service-icon {
  background: var(--green);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 23px;
}

.service-card p {
  margin-bottom: 27px;

  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.65);
}

.service-card a {
  margin-top: auto;

  color: var(--green-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.service-card:hover a {
  color: var(--green);
}

/* =====================================
   CATÁLOGO
===================================== */

.store-section {
  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(84, 229, 0, 0.1),
      transparent 25%
    ),
    var(--surface);
}

.store-heading {
  margin-bottom: 42px;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 60px;
}

.store-heading > p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

.store-search-bar {
  margin-bottom: 25px;
  padding: 16px;

  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 15px;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;

  box-shadow: var(--shadow-small);
}

.store-search {
  position: relative;
}

.store-search span {
  position: absolute;
  top: 50%;
  left: 18px;

  color: var(--green-dark);
  font-size: 24px;
  font-weight: 900;

  transform: translateY(-50%);
}

.store-search input,
.store-search-bar select {
  width: 100%;
  min-height: 54px;

  color: var(--black);
  background: var(--surface);

  border: 1px solid var(--border);
  border-radius: 14px;
  outline: none;

  transition: 0.25s ease;
}

.store-search input {
  padding: 0 18px 0 52px;
}

.store-search-bar select {
  padding: 0 16px;
}

.store-search input:focus,
.store-search-bar select:focus {
  background: var(--white);
  border-color: var(--green);

  box-shadow:
    0 0 0 4px
    rgba(84, 229, 0, 0.12);
}

.store-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  align-items: start;
  gap: 28px;
}

/* FILTROS */

.filters-panel {
  position: sticky;
  top: 105px;

  max-height:
    calc(100vh - 125px);
  padding: 25px;

  background: var(--white);

  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  overflow-y: auto;

  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.08);
}

.filters-panel::-webkit-scrollbar {
  width: 7px;
}

.filters-panel::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 100px;
}

.filters-title {
  margin-bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filters-small {
  color: var(--green-dark);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.filters-title h3 {
  margin-top: 3px;
  font-size: 27px;
}

.close-filters {
  display: none;

  width: 40px;
  height: 40px;

  color: white;
  background: #000;

  border: none;
  border-radius: 11px;

  font-size: 25px;
}

.clear-filters {
  width: 100%;
  min-height: 44px;
  margin-bottom: 17px;

  color: #000;
  background: var(--green-soft);

  border:
    1px solid rgba(84, 229, 0, 0.3);
  border-radius: 12px;

  font-size: 13px;
  font-weight: 800;

  transition: 0.25s ease;
}

.clear-filters:hover {
  background: var(--green);
}

.filter-group {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.filter-group-title {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: var(--black);
  background: transparent;

  border: none;

  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-group-title span:last-child {
  transition: 0.25s ease;
}

.filter-group.collapsed
.filter-group-title span:last-child {
  transform: rotate(180deg);
}

.filter-options {
  max-height: 620px;
  margin-top: 15px;

  display: grid;
  gap: 11px;

  overflow: hidden;

  transition:
    max-height 0.3s ease,
    opacity 0.3s ease,
    margin 0.3s ease;
}

.capacity-options {
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.filter-group.collapsed
.filter-options {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
}

.filter-options label {
  display: flex;
  align-items: center;
  gap: 9px;

  color: var(--text);
  font-size: 13px;
}

.filter-options input {
  width: 17px;
  height: 17px;

  accent-color: var(--green-dark);
}

/* PRODUCTOS */

.products-area {
  min-width: 0;
}

.products-toolbar {
  margin-bottom: 18px;
  padding: 16px 19px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 17px;
}

.results-information {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.results-information strong {
  font-size: 16px;
}

.results-information span {
  color: var(--text);
  font-size: 12px;
}

.mobile-filter-button {
  display: none;

  min-height: 42px;
  padding: 0 17px;

  color: white;
  background: #000;

  border: none;
  border-radius: 11px;

  font-weight: 800;
}

.products-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.store-product-card {
  min-width: 0;
  padding: 20px;

  display: flex;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.07);

  transition: 0.35s ease;
}

.store-product-card:hover {
  border-color:
    rgba(84, 229, 0, 0.65);

  transform: translateY(-8px);

  box-shadow:
    0 27px 65px rgba(0, 0, 0, 0.13);
}

.store-product-image {
  position: relative;

  height: 205px;
  margin-bottom: 20px;
  padding: 14px;

  display: grid;
  place-items: center;

  background: var(--surface);
  border-radius: 17px;

  overflow: hidden;
}

.store-product-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  transition: 0.4s ease;
}

.store-product-card:hover
.store-product-image img {
  transform: scale(1.06);
}

.stock-label {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 2;

  padding: 7px 10px;

  color: #000;
  background: var(--green);

  border-radius: 100px;

  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-brand-tag {
  display: inline-flex;
  width: fit-content;

  margin-bottom: 9px;
  padding: 7px 11px;

  color: var(--green-dark);
  background: var(--green-soft);

  border-radius: 100px;

  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.store-product-card h3 {
  min-height: 74px;
  margin-bottom: 12px;

  font-size: 19px;
  line-height: 1.28;
}

.product-model-label {
  width: fit-content;
  margin-bottom: 13px;
  padding: 7px 11px;

  color: var(--text);
  background: var(--surface);

  border: 1px solid var(--border);
  border-radius: 100px;

  font-size: 11px;
  font-weight: 800;
}

.store-product-description {
  min-height: 68px;
  margin-bottom: 17px;

  color: var(--text);
  font-size: 13px;
  line-height: 1.65;
}

.product-tags {
  margin-bottom: 15px;

  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-tags span {
  padding: 6px 9px;

  color: var(--green-dark);
  background: var(--green-soft);

  border-radius: 100px;

  font-size: 10px;
  font-weight: 800;
}

.product-brand-line {
  margin-top: auto;
  padding-top: 15px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: var(--text);
  border-top: 1px solid var(--border);

  font-size: 12px;
}

.product-brand-line strong {
  color: var(--black);
}

.product-capacity {
  margin: 14px 0;

  font-size: 24px;
  font-weight: 900;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.product-detail-button,
.product-quote-button {
  min-height: 49px;

  border: none;
  border-radius: 14px;

  font-size: 13px;
  font-weight: 900;

  transition: 0.25s ease;
}

.product-detail-button {
  color: #000;
  background: var(--green);
}

.product-detail-button:hover {
  color: white;
  background: #000;
}

.product-quote-button {
  width: 49px;

  color: white;
  background: #000;

  font-size: 19px;
}

.product-quote-button:hover {
  color: #000;
  background: var(--green);
}

.empty-products {
  display: none;
  padding: 70px 25px;

  text-align: center;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.empty-products.visible {
  display: block;
}

.empty-products span {
  display: block;
  margin-bottom: 12px;

  color: var(--green-dark);
  font-size: 55px;
}

.empty-products h3 {
  margin-bottom: 8px;
  font-size: 26px;
}

.empty-products p {
  color: var(--text);
}

/* =====================================
   MARCAS
===================================== */

.brands-section {
  padding: 28px 0;

  background: #080b0d;
  overflow: hidden;
}

.brands-track {
  display: flex;
  gap: 45px;

  white-space: nowrap;

  animation:
    marquee 22s linear infinite;
}

.brands-track span {
  color: white;

  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}

/* =====================================
   MAPA
===================================== */

.location {
  background: var(--white);
}

.location-heading {
  margin-bottom: 42px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 65px;
}

.location-heading > p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

.map-card {
  position: relative;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 30px;

  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;

  width: 100%;
  min-height: 500px;
}

.map-info {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;

  padding: 20px;

  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 17px;

  background:
    rgba(255, 255, 255, 0.94);

  border:
    1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;

  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(18px);
}

.map-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  background: var(--green);
  border-radius: 15px;

  font-size: 24px;
}

.map-info div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.map-info span {
  color: #60696d;

  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.map-info strong {
  color: #111;
  font-size: 14px;
  line-height: 1.5;
}

.map-info a {
  padding: 14px 21px;

  color: white;
  background: #000;

  border-radius: 13px;
  text-decoration: none;

  font-size: 14px;
  font-weight: 800;

  transition: 0.25s ease;
}

.map-info a:hover {
  color: #000;
  background: var(--green);
}

/* =====================================
   CONTACTO
===================================== */

.contact {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 75px;
}

.contact-content {
  position: sticky;
  top: 125px;
}

.contact-content h2 {
  margin-bottom: 24px;
}

.contact-content > p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}

.contact-information {
  margin-top: 38px;

  display: grid;
  gap: 13px;
}

.contact-information div {
  padding: 19px 21px;

  display: flex;
  flex-direction: column;
  gap: 7px;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.contact-information span {
  color: var(--text);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-form {
  padding: 42px;

  display: grid;
  grid-template-columns:
    repeat(2, 1fr);
  gap: 20px;

  background: var(--white);

  border: 1px solid var(--border);
  border-radius: 30px;

  box-shadow: var(--shadow);
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

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

.input-group label {
  font-size: 13px;
  font-weight: 800;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 16px 17px;

  color: var(--black);
  background: var(--surface);

  border: 1px solid var(--border);
  border-radius: 13px;
  outline: none;

  transition: 0.25s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  background: var(--white);
  border-color: var(--green);

  box-shadow:
    0 0 0 4px
    rgba(84, 229, 0, 0.12);
}

.input-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-button {
  grid-column: 1 / -1;
  min-height: 58px;

  color: var(--white);
  background: var(--black);

  border: none;
  border-radius: 15px;

  font-weight: 800;

  transition: 0.3s ease;
}

.form-button:hover {
  color: #000;
  background: var(--green);
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-message {
  grid-column: 1 / -1;

  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.form-message.error {
  color: #d62d2d;
}

.form-message.success {
  color: var(--green-dark);
}

/* =====================================
   PIE DE PÁGINA
===================================== */

.footer {
  padding: 78px 0 0;

  color: white;
  background: #050708;
}

.footer-grid {
  padding-bottom: 62px;

  display: grid;
  grid-template-columns:
    1.4fr 0.7fr 0.7fr;
  gap: 50px;
}

.footer-brand img {
  width: 250px;
  margin-bottom: 20px;
  padding: 8px;

  background: white;
  border-radius: 15px;
}

.footer-brand p {
  max-width: 350px;

  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links h3 {
  margin-bottom: 8px;
}

.footer-links a,
.footer-links p {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;

  font-size: 14px;
  line-height: 1.7;
}

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

.footer-bottom {
  padding: 24px 20px;

  text-align: center;

  color: rgba(255, 255, 255, 0.42);
  border-top:
    1px solid rgba(255, 255, 255, 0.08);

  font-size: 13px;
}

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

.whatsapp-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;

  width: 61px;
  height: 61px;

  display: grid;
  place-items: center;

  color: #000;
  background: var(--green);

  border: 5px solid white;
  border-radius: 50%;

  text-decoration: none;
  font-size: 27px;
  font-weight: 900;

  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.25);

  transition: 0.3s ease;
}

.whatsapp-button:hover {
  transform:
    translateY(-5px) scale(1.06);
}

/* =====================================
   MODAL DE PRODUCTO
===================================== */

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;

  display: grid;
  place-items: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;
}

.product-modal.active {
  opacity: 1;
  visibility: visible;
}

.product-modal-overlay {
  position: absolute;
  inset: 0;

  background:
    rgba(2, 5, 7, 0.78);

  backdrop-filter: blur(9px);
}

.product-modal-box {
  position: relative;
  z-index: 1;

  width:
    min(1080px, calc(100% - 30px));
  max-height:
    calc(100vh - 30px);
  padding: 30px;

  display: grid;
  grid-template-columns:
    0.75fr 1.25fr;
  gap: 35px;

  color: #111;
  background: #fbfff5;

  border-radius: 30px;
  overflow-y: auto;

  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.38);

  transform:
    translateY(25px) scale(0.97);

  transition: 0.3s ease;
}

.product-modal.active
.product-modal-box {
  transform:
    translateY(0) scale(1);
}

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;

  width: 43px;
  height: 43px;

  color: white;
  background: #000;

  border: none;
  border-radius: 12px;

  font-size: 27px;
}

.modal-product-image {
  min-height: 470px;
  padding: 25px;

  display: grid;
  place-items: center;

  background: white;

  border:
    1px solid rgba(84, 229, 0, 0.2);
  border-radius: 24px;
}

.modal-product-image img {
  width: 100%;
  max-height: 430px;

  object-fit: contain;
}

.modal-product-content {
  padding: 20px 5px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-overline {
  margin-bottom: 8px;

  color: var(--green-dark);

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.modal-product-content h2 {
  margin-bottom: 16px;

  font-size:
    clamp(31px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.modal-product-content
> p:not(.modal-overline) {
  color: #60696d;
  line-height: 1.75;
}

.modal-detail-grid {
  margin: 27px 0;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.modal-detail-card {
  min-height: 145px;
  padding: 28px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;

  background: white;

  border:
    2px solid rgba(111, 165, 23, 0.18);
  border-radius: 26px;
}

.modal-detail-card span {
  color: #6b9d1c;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.modal-detail-card strong {
  color: #121a2a;

  font-size: 20px;
  line-height: 1.3;
}

.modal-capacity-information {
  margin-bottom: 22px;
  padding: 20px;

  background: white;

  border-left:
    5px solid var(--green);
  border-radius: 14px;
}

.modal-capacity-information span {
  display: block;
  margin-bottom: 7px;

  color: var(--green-dark);

  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-capacity-information p {
  color: #60696d;
  line-height: 1.65;
}

.modal-quote-link {
  min-height: 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #000;
  background: var(--green);

  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;

  transition: 0.25s ease;
}

.modal-quote-link:hover {
  color: white;
  background: #000;
}

/* =====================================
   ANIMACIONES
===================================== */

.reveal {
  opacity: 0;
  transform: translateY(38px);

  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-17px);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-reverse {
  to {
    transform: rotate(-360deg);
  }
}

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

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

/* =====================================
   TABLET
===================================== */

@media (max-width: 1080px) {
  .navbar a {
    padding: 11px 8px;
    font-size: 12px;
  }

  .hero-container {
    gap: 40px;
  }

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

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

/* =====================================
   CELULAR
===================================== */

@media (max-width: 850px) {
  .section {
    padding: 85px 0;
  }

  .container {
    width:
      min(100% - 30px, 1180px);
  }

  .header {
    top: 10px;

    width: calc(100% - 20px);
    min-height: 72px;
    padding: 8px 10px 8px 15px;

    border-radius: 18px;
  }

  .brand-logo {
    width: 205px;
    max-width: 64vw;
    height: 53px;
  }

  .menu-button {
    display: grid;
  }

  .navbar {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;

    padding: 18px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 19px;

    box-shadow:
      0 25px 60px rgba(0, 0, 0, 0.18);

    opacity: 0;
    visibility: hidden;

    transform:
      translateY(-15px) scale(0.98);

    transition: 0.3s ease;
  }

  .navbar.active {
    opacity: 1;
    visibility: visible;

    transform:
      translateY(0) scale(1);
  }

  .navbar a {
    width: 100%;
    padding: 14px 16px;

    font-size: 15px;
  }

  .navbar a:last-child {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-container {
    padding: 145px 0 95px;

    grid-template-columns: 1fr;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .floating-card-one {
    left: 0;
  }

  .floating-card-two {
    right: 0;
  }

  .about-grid,
  .section-heading,
  .store-heading,
  .location-heading,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-visual {
    min-height: 450px;
  }

  .experience-card {
    right: 10px;
  }

  .store-search-bar {
    grid-template-columns: 1fr;
  }

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

  .filters-panel {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3500;

    width: min(350px, 92%);
    height: 100vh;
    max-height: none;

    border-radius:
      0 25px 25px 0;

    transform:
      translateX(-105%);

    transition: 0.3s ease;
  }

  .filters-panel.mobile-active {
    transform: translateX(0);
  }

  .close-filters,
  .mobile-filter-button {
    display: block;
  }

  .map-info {
    position: static;

    grid-template-columns:
      52px 1fr;

    border-radius: 0;
    box-shadow: none;
  }

  .map-info a {
    grid-column: 1 / -1;
    text-align: center;
  }

  .contact-content {
    position: static;
  }

  .contact-form {
    padding: 27px;
    grid-template-columns: 1fr;
  }

  .input-full,
  .form-button,
  .form-message {
    grid-column: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .modal-product-image {
    min-height: 300px;
  }
}

/* =====================================
   CELULAR PEQUEÑO
===================================== */

@media (max-width: 620px) {
  .hero h1 {
    font-size: 48px;
    letter-spacing: -2.5px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    gap: 22px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .energy-core {
    width: 190px;
    height: 190px;
  }

  .energy-core span {
    font-size: 68px;
  }

  .orbit-one {
    width: 260px;
    height: 260px;
  }

  .orbit-two {
    width: 310px;
    height: 310px;
  }

  .floating-card {
    padding: 11px 13px;
  }

  .floating-card strong {
    font-size: 11px;
  }

  .floating-card small {
    font-size: 10px;
  }

  .section h2 {
    font-size: 39px;
    letter-spacing: -2px;
  }

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

  .store-product-card h3,
  .store-product-description {
    min-height: auto;
  }

  .store-product-image {
    height: 240px;
  }

  .capacity-options {
    grid-template-columns: 1fr;
  }

  .modal-detail-grid {
    grid-template-columns: 1fr;
  }

  .modal-detail-card {
    min-height: 115px;
  }

  .product-modal-box {
    padding: 20px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .whatsapp-button {
    right: 15px;
    bottom: 15px;

    width: 56px;
    height: 56px;
  }
}
/* =====================================
   CONFIANZA Y GARANTÍAS
===================================== */

.trust-section {
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(84, 229, 0, 0.12),
      transparent 28%
    ),
    var(--white);
}

.trust-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.trust-heading h2 {
  margin-bottom: 22px;
}

.trust-heading > p:last-child {
  max-width: 680px;

  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}

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

.trust-card {
  min-height: 315px;
  padding: 30px;

  display: flex;
  flex-direction: column;

  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 25px;

  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.06);

  transition: 0.35s ease;
}

.trust-card:hover {
  color: white;
  background: #080b0d;

  border-color: rgba(84, 229, 0, 0.6);

  transform: translateY(-8px);
}

.trust-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 28px;

  display: grid;
  place-items: center;

  color: #000;
  background: var(--green);

  border-radius: 18px;

  font-size: 28px;
  font-weight: 900;
}

.trust-number {
  margin-bottom: 11px;

  color: var(--green-dark);

  font-size: 31px;
  font-weight: 900;
}

.trust-card:hover .trust-number {
  color: var(--green);
}

.trust-card h3 {
  margin-bottom: 13px;
  font-size: 20px;
}

.trust-card p {
  margin-top: auto;

  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.trust-card:hover p {
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 1000px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================
   EXTRAS EMPRESARIALES V2
===================================== */
.top-contact-bar{position:fixed;top:0;left:0;right:0;z-index:1001;background:#080b0d;color:#fff;font-size:12px}.top-contact-inner{min-height:34px;display:flex;align-items:center;justify-content:flex-end;gap:24px}.top-contact-inner a{text-decoration:none}.top-contact-inner a:hover{color:var(--green)}
.header{top:48px}.header.scrolled{top:40px}.hero-container{padding-top:210px}
.site-loader{position:fixed;inset:0;z-index:5000;display:grid;place-content:center;gap:12px;text-align:center;background:#080b0d;color:#fff;transition:opacity .45s ease,visibility .45s ease}.site-loader.hidden{opacity:0;visibility:hidden}.loader-bolt{font-size:64px;animation:loaderPulse 1s ease-in-out infinite}.site-loader strong{letter-spacing:4px}
.metrics-strip{position:relative;z-index:4;margin-top:-42px}.metrics-grid{display:grid;grid-template-columns:repeat(4,1fr);background:var(--white);border:1px solid var(--border);border-radius:24px;box-shadow:var(--shadow-small);overflow:hidden}.metric-item{padding:28px 20px;text-align:center;border-right:1px solid var(--border)}.metric-item:last-child{border-right:0}.metric-item strong{display:block;color:var(--green-dark);font-size:30px;font-weight:900}.metric-item span{color:var(--text);font-size:12px}
.why-section{background:var(--white)}.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.why-card{padding:30px;background:var(--surface);border:1px solid var(--border);border-radius:22px;transition:.3s ease}.why-card:hover{transform:translateY(-7px);border-color:var(--green)}.why-card>span{display:grid;place-items:center;width:58px;height:58px;margin-bottom:22px;background:var(--green);border-radius:17px;font-size:27px}.why-card h3{margin-bottom:10px;font-size:21px}.why-card p{color:var(--text);line-height:1.7}
.comparison-section{background:var(--surface)}.comparison-wrap{display:grid;grid-template-columns:.85fr 1.15fr;align-items:center;gap:70px}.comparison-table{overflow:hidden;background:var(--white);border:1px solid var(--border);border-radius:24px;box-shadow:var(--shadow-small)}.comparison-row{padding:18px 22px;display:grid;grid-template-columns:1fr 150px;border-bottom:1px solid var(--border)}.comparison-row:last-child{border-bottom:0}.comparison-row strong{text-align:center;color:var(--green-dark);font-size:20px}.comparison-head{color:white;background:#080b0d;font-weight:800}.comparison-head strong{color:var(--green)}
.gallery-section{background:var(--white)}.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.gallery-card{position:relative;min-height:290px;padding:20px;display:grid;place-items:center;background:var(--surface);border:1px solid var(--border);border-radius:24px;overflow:hidden}.gallery-card img{width:100%;height:230px;object-fit:contain;transition:.4s ease}.gallery-card:hover img{transform:scale(1.08)}.gallery-card figcaption{position:absolute;left:16px;bottom:16px;padding:8px 13px;color:#000;background:var(--green);border-radius:100px;font-size:12px;font-weight:900}
.process-section{background:var(--surface)}.process-grid{display:grid;grid-template-columns:.8fr 1.2fr;align-items:center;gap:65px}.process-copy h2{margin-bottom:22px}.process-copy>p{margin-bottom:28px;color:var(--text);line-height:1.75}.before-after{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:18px}.before-after article{min-height:260px;padding:30px;background:var(--white);border:1px solid var(--border);border-radius:24px;box-shadow:var(--shadow-small)}.before-after article>span{display:inline-flex;margin-bottom:40px;padding:8px 12px;background:var(--green-soft);border-radius:100px;color:var(--green-dark);font-weight:900}.before-after h3{margin-bottom:13px;font-size:24px}.before-after p{color:var(--text);line-height:1.7}.process-arrow{font-size:36px;color:var(--green-dark);font-weight:900}
.commitment-strip{padding:25px 0;background:#080b0d;color:white}.commitment-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.commitment-grid span{text-align:center;font-size:13px;font-weight:800}.commitment-grid span::first-letter{color:var(--green)}
.resources-section{background:var(--white)}.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.blog-card{padding:30px;background:var(--surface);border:1px solid var(--border);border-radius:24px}.blog-card>span{color:var(--green-dark);font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:1px}.blog-card h3{margin:16px 0 13px;font-size:22px}.blog-card p{margin-bottom:22px;color:var(--text);line-height:1.7}.blog-card a{font-weight:900;text-decoration:none;border-bottom:2px solid var(--green)}
.chatbot{position:fixed;right:24px;bottom:92px;z-index:1600}.chatbot-toggle{width:58px;height:58px;border:0;border-radius:50%;background:#080b0d;color:white;font-size:25px;box-shadow:0 18px 50px rgba(0,0,0,.25)}.chatbot-toggle:hover{background:var(--green);color:#000}.chatbot-panel{position:absolute;right:0;bottom:72px;width:min(350px,calc(100vw - 34px));background:var(--white);border:1px solid var(--border);border-radius:22px;box-shadow:0 25px 80px rgba(0,0,0,.25);overflow:hidden;opacity:0;visibility:hidden;transform:translateY(15px);transition:.3s ease}.chatbot-panel.active{opacity:1;visibility:visible;transform:none}.chatbot-header{padding:17px 18px;display:flex;justify-content:space-between;align-items:center;color:white;background:#080b0d}.chatbot-header div{display:flex;flex-direction:column}.chatbot-header span{color:#aab3b7;font-size:11px}.chatbot-header button{border:0;background:transparent;color:white;font-size:25px}.chatbot-body{min-height:120px;max-height:220px;padding:18px;overflow:auto}.bot-message{width:fit-content;max-width:90%;padding:12px 14px;background:var(--surface);border-radius:14px;color:var(--text);line-height:1.5}.chatbot-options{padding:0 14px 14px;display:grid;grid-template-columns:1fr 1fr;gap:8px}.chatbot-options button{padding:11px;border:1px solid var(--border);border-radius:12px;background:var(--white);color:var(--black);font-size:12px;font-weight:800}.chatbot-options button:hover{background:var(--green);color:#000}
@keyframes loaderPulse{50%{transform:scale(1.18);filter:drop-shadow(0 0 20px var(--green))}}
@media(max-width:1000px){.top-contact-inner{justify-content:center}.header{top:44px}.metrics-grid{grid-template-columns:repeat(2,1fr)}.metric-item:nth-child(2){border-right:0}.metric-item:nth-child(-n+2){border-bottom:1px solid var(--border)}.why-grid,.gallery-grid,.blog-grid{grid-template-columns:repeat(2,1fr)}.comparison-wrap,.process-grid{grid-template-columns:1fr}.commitment-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:680px){.top-contact-bar{display:none}.header,.header.scrolled{top:10px}.hero-container{padding-top:150px}.metrics-strip{margin-top:-20px}.metrics-grid,.why-grid,.gallery-grid,.blog-grid,.commitment-grid{grid-template-columns:1fr}.metric-item{border-right:0;border-bottom:1px solid var(--border)}.metric-item:last-child{border-bottom:0}.comparison-row{grid-template-columns:1fr 70px}.before-after{grid-template-columns:1fr}.process-arrow{transform:rotate(90deg);text-align:center}.chatbot{right:16px;bottom:84px}.section-heading>a{margin-top:18px}}


/* =====================================
   UPS SOLUTIONS V3 — ENTERPRISE MOTION
===================================== */
:root {
  --neon: #74ff22;
  --panel-glass: rgba(255,255,255,.72);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 6000;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), #c9ff63);
  box-shadow: 0 0 18px rgba(84,229,0,.8);
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84,229,0,.1), transparent 68%);
  transform: translate(-50%,-50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}

.energy-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .38;
}

header, main, footer, .top-contact-bar, .chatbot, .whatsapp-button, .back-to-top {
  position: relative;
  z-index: 2;
}
.header, .top-contact-bar, .chatbot, .whatsapp-button, .back-to-top { position: fixed; }

.system-status {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(84,229,0,.28);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.system-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(84,229,0,.6);
  animation: onlinePulse 1.8s infinite;
}
body.dark .system-status { background: rgba(10,14,16,.62); }

.hero-quick-actions {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  max-width: 680px;
}
.hero-quick-actions a {
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  background: rgba(255,255,255,.66);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(12px);
  transition: .25s ease;
}
.hero-quick-actions a span { color: var(--green-dark); font-weight: 900; }
.hero-quick-actions a:hover { border-color: var(--green); transform: translateY(-3px); }
body.dark .hero-quick-actions a { background: rgba(17,23,25,.72); }

.tech-label {
  position: absolute;
  z-index: 5;
  padding: 8px 12px;
  color: var(--green-dark);
  background: var(--panel-glass);
  border: 1px solid rgba(84,229,0,.3);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.tech-label-one { top: 35px; right: 35px; }
.tech-label-two { left: 35px; bottom: 28px; }
body.dark .tech-label { --panel-glass: rgba(12,16,18,.76); }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.22) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: heroSweep 9s ease-in-out infinite;
}

.store-product-card, .why-card, .trust-card, .gallery-card, .blog-card, .service-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.store-product-card::before, .why-card::before, .trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(280px circle at var(--spot-x,50%) var(--spot-y,50%), rgba(84,229,0,.13), transparent 45%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.store-product-card, .why-card, .trust-card { position: relative; overflow: hidden; }
.store-product-card:hover::before, .why-card:hover::before, .trust-card:hover::before { opacity: 1; }

.navbar a.active {
  color: #000;
  background: var(--green);
  box-shadow: 0 8px 20px rgba(84,229,0,.22);
}

.back-to-top {
  right: 25px;
  bottom: 162px;
  z-index: 1550;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(8,11,13,.9);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { color: #000; background: var(--green); }

.product-detail-button, .button-primary, .modal-quote-link, .contact-form button {
  position: relative;
  overflow: hidden;
}
.product-detail-button::after, .button-primary::after, .modal-quote-link::after, .contact-form button::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -80%;
  width: 45%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transform: rotate(20deg);
  transition: left .55s ease;
}
.product-detail-button:hover::after, .button-primary:hover::after, .modal-quote-link:hover::after, .contact-form button:hover::after { left: 135%; }

@keyframes onlinePulse { 70% { box-shadow: 0 0 0 9px rgba(84,229,0,0); } }
@keyframes heroSweep { 0%,55% { transform:translateX(-120%); } 75%,100% { transform:translateX(120%); } }

@media (max-width: 820px) {
  .cursor-glow, .energy-field { display:none; }
  .hero-quick-actions { grid-template-columns:1fr; }
  .tech-label { display:none; }
  .back-to-top { right:15px; bottom:145px; }
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .cursor-glow, .energy-field, .hero::after { display:none !important; }
  .store-product-card, .why-card, .trust-card, .gallery-card, .blog-card, .service-card { transform:none !important; }
}


/* =====================================
   V4 BUSINESS TOOLS
===================================== */
.business-center {
  background: linear-gradient(180deg, var(--white), var(--surface));
}
.quote-builder {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: start;
}
.quote-builder-form, .quote-preview {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-small);
}
.quote-builder-form {
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.quote-builder-actions { display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.quote-secondary-button, .quote-whatsapp-button {
  min-height: 50px; padding: 0 20px; display:inline-flex; align-items:center; justify-content:center;
  border-radius: 14px; border:1px solid var(--border); font-weight:850; text-decoration:none;
  background:var(--surface); color:var(--black);
}
.quote-whatsapp-button { background:#1fc760; color:#07130b; border-color:transparent; }
.quote-secondary-button:disabled, .quote-whatsapp-button.disabled { opacity:.45; pointer-events:none; }
.quote-preview { padding:32px; position:sticky; top:112px; min-height:360px; overflow:hidden; }
.quote-preview::before { content:""; position:absolute; inset:auto -80px -100px auto; width:240px; height:240px; border-radius:50%; background:rgba(84,229,0,.12); filter:blur(12px); }
.quote-preview-kicker { color:var(--green-dark); font-size:11px; font-weight:900; text-transform:uppercase; letter-spacing:1.5px; }
.quote-preview h3 { margin:15px 0; font-size:30px; }
.quote-preview p { color:var(--text); line-height:1.7; }
.quote-preview dl { margin-top:24px; display:grid; gap:13px; }
.quote-preview dl div { padding:13px 0; display:flex; justify-content:space-between; gap:20px; border-bottom:1px solid var(--border); }
.quote-preview dt { color:var(--text); }
.quote-preview dd { margin:0; font-weight:850; text-align:right; }
.quote-disclaimer { margin-top:22px; padding:15px; background:var(--green-soft); border-radius:14px; font-size:12px; }
.admin-launcher {
  position:fixed; left:20px; bottom:20px; z-index:1090; width:52px; height:52px; border:0; border-radius:17px;
  color:#000; background:var(--green); font-size:23px; box-shadow:0 16px 35px rgba(0,0,0,.22);
}
.admin-modal { position:fixed; inset:0; z-index:3000; display:none; }
.admin-modal.active { display:block; }
.admin-overlay { position:absolute; inset:0; background:rgba(0,0,0,.72); backdrop-filter:blur(8px); }
.admin-panel {
  position:absolute; top:3vh; bottom:3vh; left:50%; width:min(1100px,calc(100% - 30px)); padding:32px;
  transform:translateX(-50%); background:var(--white); color:var(--black); border-radius:30px; overflow:auto; box-shadow:0 40px 110px rgba(0,0,0,.42);
}
.admin-close { position:absolute; top:18px; right:18px; width:44px; height:44px; border:0; border-radius:14px; background:var(--black); color:var(--white); font-size:25px; }
.admin-header { padding-right:55px; }
.admin-header span { color:var(--green-dark); text-transform:uppercase; font-size:11px; font-weight:900; letter-spacing:1.5px; }
.admin-header h2 { margin:7px 0 12px; font-size:clamp(30px,4vw,48px); }
.admin-header p { color:var(--text); max-width:800px; line-height:1.65; }
.admin-stats { margin:28px 0; display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.admin-stats article, .admin-card { padding:22px; background:var(--surface); border:1px solid var(--border); border-radius:20px; }
.admin-stats strong { display:block; font-size:32px; }
.admin-stats span { color:var(--text); font-size:12px; }
.admin-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.admin-card h3 { margin-bottom:7px; font-size:22px; }
.admin-card > p { margin-bottom:18px; color:var(--text); }
.admin-card textarea { width:100%; padding:15px; margin-bottom:13px; resize:vertical; color:var(--black); background:var(--white); border:1px solid var(--border); border-radius:14px; }
.admin-brand-list { display:grid; gap:10px; }
.admin-brand-row { display:flex; align-items:center; justify-content:space-between; gap:15px; padding:13px 15px; background:var(--white); border:1px solid var(--border); border-radius:14px; }
.admin-brand-row label { display:flex; align-items:center; gap:10px; font-weight:800; }
.admin-brand-row small { color:var(--text); }
.admin-brand-row input { width:20px; height:20px; accent-color:var(--green-dark); }
.admin-footer { margin-top:20px; display:flex; gap:12px; justify-content:flex-end; flex-wrap:wrap; }
.admin-danger-button { min-height:50px; padding:0 20px; color:white; background:#bb2b2b; border:0; border-radius:14px; font-weight:850; }
@media (max-width:850px) {
  .quote-builder, .admin-grid { grid-template-columns:1fr; }
  .quote-preview { position:static; }
  .admin-stats { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:580px) {
  .quote-builder-form { grid-template-columns:1fr; padding:20px; }
  .quote-builder-actions { align-items:stretch; }
  .quote-builder-actions > * { width:100%; }
  .admin-panel { padding:22px 17px; }
  .admin-stats { grid-template-columns:1fr 1fr; }
  .admin-launcher { left:14px; bottom:14px; }
}
@media print {
  body * { visibility:hidden !important; }
  #quotePreview, #quotePreview * { visibility:visible !important; }
  #quotePreview { position:absolute; inset:0; width:100%; min-height:100vh; border:0; box-shadow:none; background:white; color:black; }
}
