@charset "UTF-8";
/* Animaciones de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.float-animation {
  animation: float 5s ease-in-out infinite;
}

/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
  position: relative;
}

h1, h2, h3, h4 {
  color: var(--dark-color);
  margin-bottom: 20px;
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

h2:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 5px;
  background: var(--gradient-accent);
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 15px;
  color: var(--gray-color);
  font-size: 1.1rem;
}

.highlight {
  color: var(--accent-color);
  font-weight: 700;
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background: var(--gradient-accent);
  color: white;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--gradient-primary);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover:before {
  width: 100%;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.btn-outline:hover {
  background: var(--gradient-accent);
  color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.2rem;
  color: var(--gray-color);
}

/* Variables CSS con paleta de colores más variada */
:root {
  --primary-color: #003366;
  --primary-light: #1a4d80;
  --secondary-color: #0066cc;
  --secondary-light: #3385d6;
  --accent-color: #00a8e8;
  --accent-light: #33b9ed;
  --dark-color: #1a1a2e;
  --dark-light: #2d2d44;
  --light-color: #f8f9fa;
  --light-gray: #e9ecef;
  --gray-color: #6c757d;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --gradient-primary: linear-gradient(135deg, #003366 0%, #0066cc 100%);
  --gradient-accent: linear-gradient(135deg, #00a8e8 0%, #0066cc 100%);
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
  --border-radius: 10px;
  --border-radius-lg: 20px;
}

/* Clientes Section */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 40px;
}

.client-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  min-height: 140px;
  border: 1px solid var(--light-gray);
}

.client-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-light);
}

.client-logo {
  font-weight: 800;
  font-size: 1.4rem;
  text-align: center;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.logo-icon-small {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Contacto Section */
.contact {
  background-color: var(--light-color);
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  background: var(--gradient-accent);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.contact-form {
  background-color: white;
  padding: 50px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 18px 20px;
  margin-bottom: 25px;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  background-color: white;
  color: var(--dark-color);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

/* Elementos flotantes decorativos */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 102, 204, 0.05);
  z-index: -1;
}

.floating-element:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  background: rgba(0, 168, 232, 0.05);
}

.floating-element:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  background: rgba(0, 51, 102, 0.05);
}

.floating-element:nth-child(3) {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 15%;
  background: rgba(0, 168, 232, 0.05);
}

/* Elementos flotantes de interacción */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.chat-assistant {
  position: fixed;
  bottom: 120px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  z-index: 999;
  transition: var(--transition);
  cursor: pointer;
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}

.chat-assistant:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-hover);
}

.chat-bubble {
  position: absolute;
  bottom: 70px;
  right: 80px;
  background-color: white;
  padding: 15px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  color: var(--primary-color);
}

.chat-bubble:after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 20px;
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: white transparent transparent;
}

.chat-assistant:hover .chat-bubble {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

/* Footer */
footer {
  background: var(--gradient-primary);
  color: white;
  padding: 80px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo .logo-text {
  color: white;
}

.footer-links h3 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
  border-radius: 3px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-links a:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

/* Header y Navegación */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: var(--transition);
}

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

.logo-icon {
  background: var(--gradient-primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: bold;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
}

.logo-text {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 35px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  font-size: 1.05rem;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.nav-links a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: var(--gradient-accent);
  bottom: -5px;
  left: 0;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.nav-links a:hover:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 1001;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 20, 40, 0.85), rgba(0, 40, 80, 0.9)), url("../assets/img/background/hero-bg.jpg") no-repeat center center/cover;
  color: white;
  padding: 180px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  color: white;
  margin-bottom: 25px;
  animation: fadeInUp 1s ease;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 40px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero .btn {
  animation: fadeInUp 1s ease 0.4s both;
  margin: 0 10px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 80px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.stat-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Proyectos Section */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 40px;
}

.project-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background-color: white;
  position: relative;
}

.project-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.project-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.project-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.project-card:hover .project-image:after {
  background: rgba(0, 0, 0, 0.1);
}

.project-content {
  padding: 30px;
}

.project-category {
  display: inline-block;
  background: var(--gradient-accent);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tech-tag {
  background-color: var(--light-gray);
  color: var(--dark-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Servicios Section */
.services {
  background-color: var(--light-color);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 50px 35px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-accent);
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  background: rgba(0, 168, 232, 0.1);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: var(--accent-color);
  font-size: 2.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-accent);
  color: white;
  transform: scale(1.1);
}

/* Tecnologías Section */
.technologies {
  background: linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)), url("https://images.unsplash.com/photo-1517077304055-6e89abbf09b0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80") no-repeat center center/cover;
  position: relative;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 40px;
}

.tech-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 35px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.tech-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-hover);
}

.tech-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-icon i {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Testimonios */
/* Testimonios Section */
.testimonials {
  background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 102, 204, 0.9)), url("https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80") no-repeat center center/cover;
  color: white;
}

.testimonials h2, .testimonials .section-subtitle {
  color: white;
}

.testimonials h2:after {
  background: var(--accent-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
}

.testimonial-content:before {
  content: '"';
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.5rem;
  color: white;
  font-weight: bold;
}

.author-info h4 {
  color: white;
  margin-bottom: 5px;
}

.author-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  section {
    padding: 80px 0;
  }
}
@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
  .tech-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: white;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.5s ease;
    z-index: 999;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links li {
    margin: 15px 0;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero {
    padding: 150px 0 80px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .hero-stats {
    gap: 30px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .chat-bubble {
    display: none;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 2rem;
  }
  .hero {
    padding: 130px 0 60px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .client-item {
    padding: 30px 20px;
  }
  .contact-form {
    padding: 30px;
  }
  .whatsapp-float, .chat-assistant {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    font-size: 1.7rem;
  }
  .chat-assistant {
    bottom: 90px;
  }
}/*# sourceMappingURL=main.css.map */