/* Estilos generales */
body {
  background-color: black;
  color: #ffffff;
  font-family: system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

#hero {
  background-image: url('images/Frame3.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: left;
  position: relative;
  margin-left: 2%;
}

#hero-container {
  text-align: left;
  position: relative;
  z-index: 10;
  padding: 0 16px;
}

#hero-top {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 40%; /* AJUSTE */
  font-family: "Montserrat", sans-serif;
}

#hero-title {
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: "Space Grotesk", sans-serif;
}

#hero-title .texto-destacado {
  color: #fb8800;
  animation: breathing-glow 4s ease-in-out infinite;
}

@keyframes breathing-glow {
  0%, 100% {
    text-shadow: 
      0 0 5px rgba(251, 136, 0, 0.3); /* Estado "apagado" (casi invisible) */
  }
  50% {
    text-shadow: 
      0 0 30px rgba(251, 136, 0, 1), /* Capa base naranja intensa */
      0 0 60px rgba(255, 200, 0, 0.8), /* Capa intermedia amarilla */
      0 0 90px rgba(255, 100, 0, 0.6); /* Capa exterior roja */
  }
}

#hero-subtitle {
  font-size: 16px;
  margin-bottom: 40%; /* AJUSTE */
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Montserrat", sans-serif;
  color: rgb(177, 177, 177);
}

#hero-button {
  background-color: #0065d7;
  color: white;
  font-weight: 700;
  padding: 12px 32px;
  font-size: 18px;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
   font-weight: 300;
}


.icono-mas {
  display: inline-block; 
  margin-right: 10px;   
  font-weight: 300;  
  font-size: 22px;  
  font-family: "Roboto", sans-serif;
}

#hero-button:hover {
  background-color: #002d8d;
}

/* Services Section */
#services {
  padding: 80px 16px;
  background-color: #111827;
}

#services-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

#services-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  #services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.08); 
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(10.3px);
  border: 1px solid rgba(255, 255, 255, 0.05);

  padding: 24px;
  transition: background-color 0.3s;
  color: white; /* Opcional: para mejor contraste */
}


.service-card:hover {
  background-color: #000000;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ff8b2d;
  text-shadow: 0 0 8px #ff7c10, 0 0 16px rgba(255, 124, 16, 0.6);
  animation: glow-pulse 2s infinite alternate;
}

@keyframes glow-pulse {
  from {
    text-shadow: 0 0 8px #ff7c10, 0 0 16px rgba(255, 124, 16, 0.6);
  }
  to {
    text-shadow: 0 0 12px #ff7c10, 0 0 24px rgba(255, 124, 16, 0.8);
  }
}

.service-card p {
  color: #d1d5db;
}

/* Contact Section */
#contact {
  padding: 80px 16px;
  background-color: black;
}

#contact-container {
  max-width: 896px;
  margin: 0 auto;
}

#contact-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 16px;
  background-color: #1f2937;
  border-radius: 8px;
  border: none;
  color: white;
  outline: none;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: 2px solid #000000;
}

#contact-submit {
  background-color: #2950ff;
  color: white;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

#contact-submit:hover {
  background-color: #1d41ae;
}

@media (min-width: 768px) {
  #contact-submit {
    width: auto;
  }
}

/* Footer */
#footer {
  padding: 32px 16px;
  background-color: #030c20;
  text-align: center;
}


.marquee {
  --gap: 5px;
  background-color: #1d1d1d;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 10s linear infinite;
}

.marquee__content > * {
  flex: 0 0 auto;
  background: none;
  color: #434343; 
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 3px;
  border-radius: 0;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - var(--gap)));
  }
}

/* Accesibilidad: pausa si el usuario prefiere reducir movimiento */
@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}


.marquee__content {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-section {
  background-image: url("images/source.gif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
  color: white; /* Opcional: mejora la legibilidad del texto */
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25D366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}
/* Asegúrate de que el enlace tenga un estilo adecuado */
.whatsapp-float a {
  color: inherit;
  text-decoration: none;
}