:root {
  --negro: #000000;
  --azul-oscuro: #0a0f2e;
  --verde-neon: #33F0A0;
  --cyan: #00BCD4;
  --blanco: #ffffff;
  --degradado: linear-gradient(135deg, var(--verde-neon), var(--cyan));
  --degradado-hover: linear-gradient(135deg, var(--verde-neon), #00a5bb);
  --neon-cyan: 0 0 10px rgba(51, 240, 160, 0.8);
  --neon-azul: 0 0 15px rgba(0, 188, 212, 0.6);
  --sombra-neon: 0 0 20px rgba(51, 240, 160, 0.5);
  --sombra-neon-azul: 0 0 25px rgba(0, 188, 212, 0.4);
}

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

body {
  background-color: var(--negro);
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--blanco);
  overflow-x: hidden;
  line-height: 1.7;
  min-height: 100vh;
  cursor: none;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hiA.woff2) format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYAZ9hiA.woff2) format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYAZ9hiA.woff2) format('woff2');
}

/* Efecto de estrellas */
.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle var(--duration) infinite ease-in-out;
  opacity: 0;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: var(--opacity); transform: scale(1); }
}

/* Efecto de partículas */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}

/* Cursor personalizado */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: transform 0.1s ease;
}

.cursor-follower {
  position: fixed;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cyan);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  opacity: 0.3;
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

/* Robot Asistente - Versión mejorada */
.assistant-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 120px;
  height: 120px;
  z-index: 999;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.assistant-container:hover {
  transform: scale(1.1);
}

.assistant-message {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: rgba(10, 15, 46, 0.9);
  color: var(--verde-neon);
  padding: 12px 18px;
  border-radius: 20px;
  margin-bottom: 15px;
  border: 1px solid var(--verde-neon);
  box-shadow: 0 0 20px rgba(51, 240, 160, 0.4);
  max-width: 250px;
  text-align: center;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.assistant-message.visible {
  opacity: 1;
  transform: translateY(0);
}

.assistant-message::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 20px;
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: rgba(10, 15, 46, 0.9) transparent;
}

.assistant-options {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: rgba(10, 15, 46, 0.9);
  border: 1px solid var(--verde-neon);
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(10px);
}

.assistant-options.visible {
  display: flex;
}

.assistant-option {
  background: rgba(0, 188, 212, 0.2);
  color: var(--blanco);
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
  text-align: left;
  white-space: nowrap;
  backdrop-filter: blur(5px);
}

.assistant-option:hover {
  background: rgba(0, 188, 212, 0.4);
  transform: translateX(5px);
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
}

/* Estilos del Robot Asistente - Sin fondo circular */
.eva {
  --EVA-ROTATION-DURATION: 4s;
  transform-style: preserve-3d;
  animation: rotateRight var(--EVA-ROTATION-DURATION) linear infinite alternate;
}

.head {
  position: relative;
  width: 6rem;
  height: 4rem;
  border-radius: 48% 53% 45% 55% / 79% 79% 20% 22%;
  background: linear-gradient(to right, var(--verde-neon) 45%, var(--cyan));
  box-shadow: 0 0 15px rgba(51, 240, 160, 0.5);
}

.eyeChamber {
  width: 4.5rem;
  height: 2.75rem;
  position: relative;
  left: 50%;
  top: 55%;
  border-radius: 45% 53% 45% 48% / 62% 59% 35% 34%;
  background-color: #0c203c;
  box-shadow: 0px 0px 2px 2px white, inset 0px 0px 0px 2px black;
  transform: translate(-50%, -50%);
  animation: moveRight var(--EVA-ROTATION-DURATION) linear infinite alternate;
}

.eye {
  width: 1.2rem;
  height: 1.5rem;
  position: absolute;
  border-radius: 50%;
}

.eye:first-child {
  left: 12px;
  top: 50%;
  background: repeating-linear-gradient(
    65deg,
    var(--verde-neon) 0px,
    var(--verde-neon) 1px,
    white 2px
  );
  box-shadow: inset 0px 0px 5px var(--cyan), 0px 0px 15px 1px var(--verde-neon);
  transform: translate(0, -50%) rotate(-65deg);
}

.eye:nth-child(2) {
  right: 12px;
  top: 50%;
  background: repeating-linear-gradient(
    -65deg,
    var(--verde-neon) 0px,
    var(--verde-neon) 1px,
    white 2px
  );
  box-shadow: inset 0px 0px 5px var(--cyan), 0px 0px 15px 1px var(--verde-neon);
  transform: translate(0, -50%) rotate(65deg);
}

.body {
  width: 6rem;
  height: 8rem;
  position: relative;
  margin-block-start: 0.25rem;
  border-radius: 47% 53% 45% 55% / 12% 9% 90% 88%;
  background: linear-gradient(to right, var(--verde-neon) 35%, var(--cyan));
  box-shadow: 0 0 20px rgba(51, 240, 160, 0.4);
}

.hand {
  position: absolute;
  left: -1.5rem;
  top: 0.75rem;
  width: 2rem;
  height: 5.5rem;
  border-radius: 40%;
  background: linear-gradient(to left, var(--verde-neon) 15%, var(--cyan));
  box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.25);
  transform: rotateY(55deg) rotateZ(10deg);
}

.hand:first-child {
  animation: compensateRotation var(--EVA-ROTATION-DURATION) linear infinite
    alternate;
}

.hand:nth-child(2) {
  left: 92%;
  background: linear-gradient(to right, var(--verde-neon) 15%, var(--cyan));
  transform: rotateY(55deg) rotateZ(-10deg);
  animation: compensateRotationRight var(--EVA-ROTATION-DURATION) linear
    infinite alternate;
}

.scannerThing {
  width: 0;
  height: 0;
  position: absolute;
  left: 60%;
  top: 10%;
  border-top: 180px solid var(--verde-neon);
  border-left: 250px solid transparent;
  border-right: 250px solid transparent;
  transform-origin: top left;
  mask: linear-gradient(to right, white, transparent 35%);
  animation: glow 2s cubic-bezier(0.86, 0, 0.07, 1) infinite;
}

.scannerOrigin {
  position: absolute;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  left: 60%;
  top: 10%;
  background: var(--verde-neon);
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.5);
  animation: moveRight var(--EVA-ROTATION-DURATION) linear infinite;
}

@keyframes rotateRight {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(25deg);
  }
}

@keyframes moveRight {
  from {
    transform: translate(-50%, -50%);
  }
  to {
    transform: translate(-40%, -50%);
  }
}

@keyframes compensateRotation {
  from {
    transform: rotateY(55deg) rotateZ(10deg);
  }
  to {
    transform: rotatey(30deg) rotateZ(10deg);
  }
}

@keyframes compensateRotationRight {
  from {
    transform: rotateY(55deg) rotateZ(-10deg);
  }
  to {
    transform: rotateY(70deg) rotateZ(-10deg);
  }
}

@keyframes glow {
  from {
    opacity: 0;
  transform: rotate(-25deg);
  filter: hue-rotate(0deg);
  border-top-color: var(--verde-neon);
  }
  20% {
    opacity: 1;
  }
  45% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    opacity: 0;
    transform: rotate(25deg);
    filter: hue-rotate(20deg);
    border-top-color: var(--cyan);
  }
}

/* Contenido principal */
.main-content {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  min-height: 100vh;
}

header {
  text-align: center;
  padding: 6rem 1rem 8rem;
  position: relative;
  overflow: hidden;
}

.logo-container {
  margin: 0 auto 3rem;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: floatLogo 12s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0) rotateY(0deg) scale(1); }
  25% { transform: translateY(-30px) rotateY(10deg) scale(1.05); }
  50% { transform: translateY(0) rotateY(0deg) scale(1); }
  75% { transform: translateY(-20px) rotateY(-10deg) scale(1.03); }
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(51, 240, 160, 0.6));
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover {
  transform: scale(1.1) rotateY(30deg);
  filter: drop-shadow(0 0 40px rgba(51, 240, 160, 0.9));
}

.logo-shine {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.9), transparent 70%);
  opacity: 0;
  transition: opacity 0.8s ease;
  mix-blend-mode: overlay;
  border-radius: 50%;
}

.logo-container:hover .logo-shine {
  opacity: 0.4;
}

header h1 {
  font-size: 4rem;
  background: linear-gradient(to right, var(--verde-neon), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  letter-spacing: -1px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  text-shadow: var(--neon-cyan);
  animation: textGlow 3s infinite alternate;
}

@keyframes textGlow {
  from { text-shadow: 0 0 10px rgba(51, 240, 160, 0.5); }
  to { text-shadow: 0 0 20px rgba(51, 240, 160, 0.9); }
}

header p {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,0.9);
  position: relative;
  font-weight: 300;
  text-shadow: 0 0 5px rgba(255,255,255,0.3);
}

nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background-color: rgba(10, 15, 46, 0.7);
  padding: 1.8rem;
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

nav a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.3);
  text-shadow: 0 0 5px rgba(0, 229, 255, 0.3);
}

nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--degradado);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  opacity: 0;
}

nav a:hover {
  color: white;
  border-color: var(--cyan);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.5);
  transform: translateY(-3px);
}

nav a:hover::before {
  left: 0;
  opacity: 1;
}

.hero {
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
}

.hero h2 {
  font-size: 3.2rem;
  margin-bottom: 3rem;
  color: var(--blanco);
  font-weight: 600;
  position: relative;
  display: inline-block;
  text-shadow: var(--neon-cyan);
}

.hero p {
  color: rgba(255,255,255,0.9);
  max-width: 800px;
  margin: 2rem auto 0;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 300;
}

.btn-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 6rem;
}

.led-button {
  padding: 1.5rem 3.2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: none;
  color: white;
  background: var(--degradado);
  box-shadow: var(--neon-azul), inset 0 0 15px rgba(255, 255, 255, 0.3);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
}

.led-button .led {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--verde-neon);
  box-shadow: 0 0 10px rgba(51, 240, 160, 0.5);
  transition: all 0.3s ease;
}

.led-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--degradado-hover);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}

.led-button:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 15px 50px var(--sombra-neon-azul), 0 0 25px rgba(0, 229, 255, 0.8);
}

.led-button:hover::after {
  opacity: 1;
}

.section-content {
  display: none;
  max-width: 1200px;
  margin: 5rem auto;
  padding: 4rem;
  background: rgba(26, 26, 94, 0.2);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  opacity: 0;
}

.person-card {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 2.5rem;
  border-radius: 25px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.person-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--degradado);
  transition: all 0.6s ease;
}

.person-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.3);
  border-color: var(--cyan);
  background: rgba(0, 229, 255, 0.1);
}

.person-card:hover::before {
  width: 8px;
}

.card-image {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.card-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid var(--cyan);
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
  position: relative;
  z-index: 2;
}

.card-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 240, 160, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.person-card:hover img {
  border-color: var(--verde-neon);
  transform: scale(1.08) rotateZ(8deg);
  box-shadow: 0 0 40px var(--sombra-neon);
}

.person-card:hover .card-glow {
  opacity: 1;
}

.person-card div h3 {
  color: var(--cyan);
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 229, 255, 0.3);
}

.person-card div p {
  margin: 0.8rem 0;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  font-weight: 300;
}

.solutions {
  padding: 10rem 2rem;
  background: radial-gradient(ellipse at top, rgba(26, 26, 94, 0.3) 0%, transparent 70%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.solutions h2 {
  font-size: 3.2rem;
  color: var(--blanco);
  margin-bottom: 5rem;
  position: relative;
  display: inline-block;
  font-weight: 600;
  text-shadow: var(--neon-cyan);
}

.solution-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  max-width: 1400px;
  margin: 0 auto;
}

.solution-card {
  background: rgba(41, 98, 255, 0.1);
  padding: 3rem;
  border-radius: 30px;
  border: 1px solid rgba(41, 98, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--degradado);
  transition: all 0.6s ease;
}

.solution-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(41, 98, 255, 0.3);
  border-color: var(--cyan);
  background: rgba(41, 98, 255, 0.15);
}

.solution-card:hover::before {
  height: 10px;
}

.solution-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(51, 240, 160, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(51, 240, 160, 0.3);
}

.solution-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--verde-neon);
  stroke-width: 2;
}

.solution-card h3 {
  color: var(--cyan);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  position: relative;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 229, 255, 0.3);
}

.solution-card p {
  color: rgba(255,255,255,0.9);
  line-height: 1.9;
  font-weight: 300;
}

footer {
  background: linear-gradient(to right, var(--azul-oscuro), #000);
  text-align: center;
  padding: 6rem 2rem;
  color: var(--cyan);
  position: relative;
  overflow: hidden;
}

footer p {
  margin: 1rem 0;
  font-size: 1.2rem;
  font-weight: 300;
  text-shadow: 0 0 5px rgba(0, 229, 255, 0.3);
}

.whatsapp {
  position: fixed;
  bottom: 40px;
  left: 40px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99;
  animation: pulseWhatsapp 2s infinite;
  cursor: none;
}

@keyframes pulseWhatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.8);
}

.whatsapp svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* Efecto de texto futurista */
.tech-text {
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}

.tech-text::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--degradado);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  box-shadow: var(--neon-cyan);
}

.tech-text:hover {
  text-shadow: var(--neon-cyan);
}

.tech-text:hover::after {
  transform: scaleX(1);
}

/* Efectos de carga */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1200px) {
  .assistant-container {
    width: 100px;
    height: 100px;
  }
  
  .head {
    width: 5rem;
    height: 3.5rem;
  }
  
  .body {
    width: 5rem;
    height: 7rem;
  }
}

@media (max-width: 1024px) {
  header h1 {
    font-size: 3.5rem;
  }
  
  .hero h2 {
    font-size: 2.8rem;
  }
  
  .solutions h2 {
    font-size: 2.8rem;
  }
  
  .logo-container {
    width: 180px;
    height: 180px;
  }
  
  .assistant-container {
    width: 90px;
    height: 90px;
  }
  
  .head {
    width: 4.5rem;
    height: 3rem;
  }
  
  .body {
    width: 4.5rem;
    height: 6rem;
  }
}

@media (max-width: 768px) {
  .logo-container {
    width: 150px;
    height: 150px;
  }
  
  header {
    padding: 4rem 1rem 6rem;
  }
  
  header h1 {
    font-size: 3rem;
  }
  
  nav {
    flex-wrap: wrap;
    gap: 1.2rem;
    padding: 1.5rem;
  }
  
  nav a {
    padding: 0.8rem 1.8rem;
    font-size: 1.1rem;
  }
  
  .hero {
    padding: 6rem 1.5rem;
  }
  
  .hero h2 {
    font-size: 2.4rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .btn-section {
    margin-top: 4rem;
  }
  
  .led-button {
    padding: 1.3rem 2.5rem;
  }
  
  .section-content {
    padding: 3rem;
  }
  
  .person-card {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem;
  }
  
  .person-card img {
    width: 130px;
    height: 130px;
  }
  
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .solution-card {
    padding: 2.5rem;
  }
  
  .assistant-container {
    width: 80px;
    height: 80px;
    right: 20px;
    bottom: 20px;
  }
  
  .head {
    width: 4rem;
    height: 2.5rem;
  }
  
  .body {
    width: 4rem;
    height: 5rem;
  }
  
  .assistant-message {
    font-size: 12px;
    max-width: 200px;
  }
  
  .whatsapp {
    width: 60px;
    height: 60px;
    font-size: 28px;
    bottom: 20px;
    left: 20px;
  }
}

@media (max-width: 480px) {
  .logo-container {
    width: 130px;
    height: 130px;
  }
  
  header h1 {
    font-size: 2.5rem;
  }
  
  header p {
    font-size: 1.2rem;
  }
  
  nav a {
    padding: 0.7rem 1.5rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .solutions h2 {
    font-size: 2.2rem;
  }
  
  .assistant-container {
    width: 70px;
    height: 70px;
  }
  
  .head {
    width: 3.5rem;
    height: 2rem;
  }
  
  .body {
    width: 3.5rem;
    height: 4rem;
  }
  
  .assistant-message {
    font-size: 10px;
    max-width: 150px;
  }
}