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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body {
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

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

ul,
ol {
  list-style: none;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1f2937;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3.5rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 2.8rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}
p:last-child {
  margin-bottom: 0;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

small {
  font-size: 0.875rem;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-out {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loading {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

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

.page-transition {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.page-transition.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  animation: fadeInUp 0.6s ease ease-out;
}

header {
  background: #f3f4f6;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  height: fit-content;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.logo:hover {
  opacity: 0.9;
}
@media (max-width: 3840px) {
  .logo {
    width: 10vw;
  }
}
@media (max-width: 1920px) {
  .logo {
    width: 15vw;
  }
}
@media (max-width: 1200px) {
  .logo {
    width: 20vw;
  }
}
@media (max-width: 992px) {
  .logo {
    width: 20vw;
  }
}
@media (max-width: 817px) {
  .logo {
    width: 15vw;
  }
}
@media (max-width: 768px) {
  .logo {
    width: 25vw;
  }
}
@media (max-width: 576px) {
  .logo {
    width: 35vw;
  }
}

.logo-icon {
  height: auto;
  padding: 0;
  background: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  font-weight: 700;
  font-size: 1.2rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: #1e3a8a;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  background-color: rgba(59, 130, 246, 0.2);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: #1f2937;
  border-radius: 1px;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f9fafb;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .nav-links.active {
    display: flex;
  }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: #fff;
  font-size: 1.7rem;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    color: #1e3a8a;
  }
}

footer {
  background: #1f2937;
  color: #fff;
  padding: 3rem 0 1rem 0;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: #60a5fa;
}
.footer-section p,
.footer-section a {
  color: #9ca3af;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #60a5fa;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 0 2rem;
  border-top: 1px solid #374151;
  text-align: center;
  color: #9ca3af;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .social-links {
    justify-content: center;
  }
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  font-weight: 700;
}
.social-link:hover {
  background: #3b82f6;
  transform: translateY(-2px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-grid,
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.products-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

#app {
  margin-top: 80px;
}
@media (max-width: 3840px) {
  #app {
    margin-top: 200px;
  }
}
@media (max-width: 1920px) {
  #app {
    margin-top: 150px;
  }
}
@media (max-width: 1200px) {
  #app {
    margin-top: 105px;
  }
}
@media (max-width: 992px) {
  #app {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  #app {
    margin-top: 90px;
  }
}
@media (max-width: 576px) {
  #app {
    margin-top: 85px;
  }
}

.page {
  display: none;
  min-height: calc(100vh - 160px);
  padding: 4rem 2rem;
  animation: fadeInUp 0.6s ease ease-out;
}
.page.active {
  display: block;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}
.cta-button:active {
  transform: translateY(0);
}
.cta-button.secondary {
  background: transparent;
  border: 2px solid #3b82f6;
  color: #3b82f6;
  box-shadow: none;
}
.cta-button.secondary:hover {
  background: #3b82f6;
  color: #fff;
}
.cta-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cta-button:disabled:hover {
  transform: none;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.product-card {
  border-left: none;
  padding: 0;
}
.product-card .product-content {
  padding: 2rem;
}

.service-card,
.product-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #3b82f6;
  position: relative;
  overflow: hidden;
}
.service-card:hover,
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.service-card h3,
.product-card h3 {
  color: #1e3a8a;
  font-size: 1.3rem;
}
.service-card p,
.product-card p {
  color: #6b7280;
}

.service-icon {
  width: 110px;
  height: 110px;
  padding: 1rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-image {
  height: 200px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #fff;
  font-weight: 700;
}

.product-badge {
  background: #3b82f6;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: inline-block;
  font-weight: 500;
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.contact-form h3 {
  color: #1e3a8a;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #1f2937;
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #f3f4f6;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
}
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
  color: #6b7280;
}

.contact-info {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  padding: 2rem;
  border-radius: 12px;
  color: #fff;
}
.contact-info h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.contact-icon {
  width: 30px;
  height: 30px;
  background: rgba(30, 58, 138, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.hero {
  background: linear-gradient(270deg, #1e3a8a, #3b82f6, #60a5fa);
  background-size: 800% 800%;
  animation: animation-name 6s ease infinite;
}
@keyframes animation-name {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes animation-name {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes animation-name {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes animation-name {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.hero {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  margin: -4rem -2rem 4rem -2rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(59,130,246,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}
@media (max-width: 768px) {
  .hero {
    padding: 4rem 2rem;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  color: #fff;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #fff;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.stat:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3b82f6;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #6b7280;
  font-size: 0.875rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2.8rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-text h2 {
  color: #1e3a8a;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.about-text p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}
.scroll-top:active {
  transform: translateY(0);
}

#contacto .cta-button {
  width: 100%;
}
#contacto .cta-button-disclaimer {
  font-size: 0.65rem;
  margin-top: 1rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.flex-wrap {
  flex-wrap: wrap;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mt-6 {
  margin-top: 4rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mb-6 {
  margin-bottom: 4rem;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.p-5 {
  padding: 3rem;
}

.p-6 {
  padding: 4rem;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-bold {
  font-weight: 700;
}

.fs-sm {
  font-size: 0.875rem;
}

.fs-base {
  font-size: 1rem;
}

.fs-lg {
  font-size: 1.125rem;
}

.fs-xl {
  font-size: 1.3rem;
}

.text-primary {
  color: #1e3a8a;
}

.text-secondary {
  color: #3b82f6;
}

.text-light {
  color: #6b7280;
}

.text-dark {
  color: #1f2937;
}

.text-white {
  color: #fff;
}

.bg-primary {
  background-color: #1e3a8a;
}

.bg-secondary {
  background-color: #3b82f6;
}

.bg-light {
  background-color: #f9fafb;
}

.bg-white {
  background-color: #fff;
}

.rounded-sm {
  border-radius: 6px;
}

.rounded {
  border-radius: 8px;
}

.rounded-lg {
  border-radius: 12px;
}

.rounded-full {
  border-radius: 50px;
}

.shadow-none {
  box-shadow: none;
}

.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-100 {
  opacity: 1;
}

.translate-y-0 {
  transform: translateY(0);
}

.translate-y-2 {
  transform: translateY(-2px);
}

.transition {
  transition: all 0.3s ease;
}

.transition-fast {
  transition: all 0.2s ease;
}

.transition-slow {
  transition: all 0.6s ease;
}

@media (max-width: 768px) {
  .hide-tablet {
    display: none !important;
  }
  .show-tablet {
    display: block !important;
  }
}
@media (max-width: 576px) {
  .hide-mobile {
    display: none !important;
  }
  .show-mobile {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .text-center-tablet {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .text-center-mobile {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .mt-tablet-0 {
    margin-top: 0;
  }
  .mt-tablet-2 {
    margin-top: 1rem;
  }
  .mt-tablet-4 {
    margin-top: 2rem;
  }
  .mb-tablet-0 {
    margin-bottom: 0;
  }
  .mb-tablet-2 {
    margin-bottom: 1rem;
  }
  .mb-tablet-4 {
    margin-bottom: 2rem;
  }
}
@media print {
  header,
  footer,
  .scroll-top,
  .mobile-menu-btn,
  .cta-button {
    display: none !important;
  }
  body {
    color: #000;
  }
  .page {
    display: block !important;
    page-break-before: always;
  }
  .page:first-child {
    page-break-before: auto;
  }
  * {
    box-shadow: none !important;
    transition: none !important;
  }
  .service-card,
  .product-card,
  .stat {
    page-break-inside: avoid;
  }
}

/*# sourceMappingURL=styles.css.map */
