/* ========================================
   Glyco-Control México - Tech-Medical CSS
   Future of Metabolism
   ======================================== */

/* CSS Variables */
:root {
  --color-white: #ffffff;
  --color-purple: #7c3aed;
  --color-purple-dark: #6d28d9;
  --color-purple-light: #8b5cf6;
  --color-orange: #f97316;
  --color-orange-dark: #ea580c;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  --font-poppins: "Poppins", sans-serif;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-poppins);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-gray-700);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.edmmwcdh {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-gray-900);
}

/* Buttons */
.j064fqy8 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-kanit);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.tng5i4t3 {
  background: linear-gradient(
    135deg,
    var(--color-purple) 0%,
    var(--color-purple-dark) 100%
  );
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
}

.tng5i4t3:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

.g9m3e8u5 {
  background: var(--color-white);
  color: var(--color-purple);
  box-shadow: var(--shadow-lg);
}

.g9m3e8u5:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.vxf3q79p {
  width: 100%;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-sm);
}

.cg0xlxgh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.f84m03jx {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dcbs0hfi {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-purple);
  letter-spacing: -0.5px;
}

.l0duseu6 {
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--color-gray-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: -2px;
}

.nav {
  display: flex;
  gap: 2rem;
}

.r5o16t4y {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-gray-600);
  transition: color var(--transition-fast);
  position: relative;
}

.r5o16t4y::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-purple);
  transition: width var(--transition-base);
}

.r5o16t4y:hover {
  color: var(--color-purple);
}

.r5o16t4y:hover::after {
  width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */
.td0p91bt {
  position: relative;
  padding: 160px 0 100px;
  background: var(--color-white);
  overflow: hidden;
}

.cyqfl3cy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.kum099wx {
  max-width: 600px;
}

.vxlfgd3r {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.fkx1sp00 {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.baioorv5 {
  position: relative;
}

.xwysoyzz {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.tcfycr4n {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  overflow: hidden;
}

.qtfx5apk {
  width: 100%;
  height: 100%;
}

/* ========================================
   Section Styles
   ======================================== */
.abm8ed9x {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--color-gray-900);
}

.wuyyci4d {
  font-size: 1.125rem;
  color: var(--color-gray-500);
  text-align: center;
  margin-bottom: 3rem;
}

/* ========================================
   Danger Section
   ======================================== */
.m9el7l1z {
  padding: 100px 0;
  background: var(--color-gray-50);
}

.zviana93 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.r2o7uhvq {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid var(--color-gray-100);
}

.r2o7uhvq:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.yxl7nycl {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.yxl7nycl svg {
  width: 100%;
  height: 100%;
}

.ptvp3z63 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
}

.da7bezui {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* ========================================
   Innovation Section
   ======================================== */
.nj4rzjzm {
  padding: 100px 0;
  background: var(--color-white);
}

.kvn2ggn3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.k19sbkhf {
  position: relative;
}

.zv9nbi51 {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.ml5n64u9 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.i9ks2n9m {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.kix1l84p {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-purple) 0%,
    var(--color-purple-light) 100%
  );
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.fwbcg7h0 h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--color-gray-900);
}

.fwbcg7h0 p {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.7;
}

.ecbye4ap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    var(--color-gray-50) 0%,
    var(--color-white) 100%
  );
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-gray-100);
}

.cq8etxe0 {
  text-align: center;
}

.sjlbp8l8 {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-purple);
  margin-bottom: 0.5rem;
}

.t1nhndvq {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
}

/* ========================================
   Ingredients Section
   ======================================== */
.cappdgcy {
  padding: 100px 0;
  background: var(--color-gray-50);
}

.dhudziip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.s76sy7gv {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--color-gray-100);
}

.s76sy7gv:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.qa7ik1kv {
  height: 220px;
  overflow: hidden;
}

.kle3nlf9 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.s76sy7gv:hover .kle3nlf9 {
  transform: scale(1.1);
}

.hj55p4bw {
  padding: 1.5rem;
}

.jh76rsfa {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-gray-900);
}

.e4ieq0mw {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.i2mlcbb1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.jonggnd3 {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.1) 0%,
    rgba(249, 115, 22, 0.1) 100%
  );
  color: var(--color-purple);
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

/* ========================================
   CTA Section
   ======================================== */
.g3cnfg5m {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--color-purple) 0%,
    var(--color-purple-dark) 100%
  );
}

.pkjl6p0u {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.eyt3azs7 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.c0jyj2ti {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--color-gray-900);
  padding: 60px 0 30px;
}

.y9taox59 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.l1xbl0a2 .f84m03jx {
  margin-bottom: 1rem;
}

.l1xbl0a2 .dcbs0hfi {
  color: var(--color-white);
}

.l1xbl0a2 .l0duseu6 {
  color: var(--color-gray-400);
}

.etzioc9s {
  font-size: 0.9375rem;
  color: var(--color-gray-400);
  line-height: 1.7;
}

.im3ztn35 h4,
.kfwelc36 h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.im3ztn35 p {
  font-size: 0.9375rem;
  color: var(--color-gray-400);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.kfwelc36 a {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-gray-400);
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.kfwelc36 a:hover {
  color: var(--color-white);
}

.hoz0bkg7 {
  padding-top: 2rem;
  border-top: 1px solid var(--color-gray-800);
  text-align: center;
}

.hoz0bkg7 p {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

/* ========================================
   Modal
   ======================================== */
.u4ssj3pm {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  padding: 1.5rem;
}

.dhn472v2 {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xl);
}

.modal-visible {
  transform: translateY(0) scale(1);
}

.afymrj3o {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.afymrj3o:hover {
  background: var(--color-gray-200);
}

.afymrj3o svg {
  width: 20px;
  height: 20px;
  color: var(--color-gray-600);
}

.ztprzmjy {
  padding: 3rem 2.5rem 2.5rem;
}

.dai5zjqi {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--color-gray-900);
}

.p4j2aa6k {
  font-size: 0.9375rem;
  color: var(--color-gray-500);
  text-align: center;
  margin-bottom: 2rem;
}

.ysjmh7p1 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vbc8o8vc {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hc4uabpr {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-gray-700);
}

.z8xvb21m {
  padding: 0.875rem 1rem;
  font-family: var(--font-kanit);
  font-size: 1rem;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  outline: none;
}

.z8xvb21m:focus {
  border-color: var(--color-purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.z8xvb21m::placeholder {
  color: var(--color-gray-400);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  .cyqfl3cy,
  .kvn2ggn3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .kum099wx {
    max-width: 100%;
    text-align: center;
  }

  .baioorv5 {
    order: -1;
  }

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

  .ecbye4ap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .y9taox59 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .cg0xlxgh {
    height: 70px;
  }

  .nav {
    display: none;
  }

  .td0p91bt {
    padding: 120px 0 60px;
  }

  .vxlfgd3r {
    font-size: 2rem;
  }

  .abm8ed9x {
    font-size: 1.75rem;
  }

  .zviana93,
  .dhudziip {
    grid-template-columns: 1fr;
  }

  .nj4rzjzm {
    padding: 60px 0;
  }

  .zv9nbi51 {
    height: 300px;
  }

  .eyt3azs7 {
    font-size: 1.75rem;
  }

  .ztprzmjy {
    padding: 2rem 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .edmmwcdh {
    padding: 0 1rem;
  }

  .vxlfgd3r {
    font-size: 1.75rem;
  }

  .fkx1sp00 {
    font-size: 1rem;
  }

  .j064fqy8 {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .r2o7uhvq,
  .i9ks2n9m {
    padding: 1.5rem;
  }

  .sjlbp8l8 {
    font-size: 2.25rem;
  }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kum099wx,
.r2o7uhvq,
.s76sy7gv,
.i9ks2n9m {
  animation: fadeInUp 0.6s ease forwards;
}

.r2o7uhvq:nth-child(2) {
  animation-delay: 0.1s;
}
.r2o7uhvq:nth-child(3) {
  animation-delay: 0.2s;
}

.s76sy7gv:nth-child(2) {
  animation-delay: 0.1s;
}
.s76sy7gv:nth-child(3) {
  animation-delay: 0.2s;
}

.i9ks2n9m:nth-child(2) {
  animation-delay: 0.1s;
}
.i9ks2n9m:nth-child(3) {
  animation-delay: 0.2s;
}
