@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ffffff;
  overflow-x: hidden;
}
/* Tamaño uniforme del logo en header y footer */
.nav-logo img {
  height: 60px;
  width: auto;
}


/* Estilos del 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 #e5e7eb;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header-nav button,
.header-nav a {
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  text-decoration: none;
}

.header-nav button:hover,
.header-nav a:hover {
  color: #14b8a6;
}

.header-nav .btn-primary {
  background: #14b8a6;
  color: white;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.header-nav .btn-primary:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #374151;
}

.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e5e7eb;
  padding: 1rem;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu button {
  padding: 0.75rem 1rem;
  text-align: left;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: background 0.2s ease;
}

.mobile-menu button:hover {
  background: #f9fafb;
}

.mobile-menu .btn-primary {
  background: #14b8a6;
  color: white;
  border-radius: 8px;
  text-align: center;
}


.hero {
  padding: 8rem 2rem 6rem;
  background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 50%, #ecfeff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: #14b8a6;
  position: relative;
}

.hero-description {
  font-size: 1.15rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #14b8a6;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: #0d9488;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #14b8a6;
  border: 2px solid #14b8a6;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #f0fdfa;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.15);
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

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

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #14b8a6;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(20, 184, 166, 0.3);
  overflow: hidden;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.hero-image-wrapper:hover .hero-main-image {
  opacity: 0.95;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: float 3s ease-in-out infinite;
  max-width: 180px;
}

.card-1 {
  top: 8%;
  left: 5%;
  animation-delay: 0s;
}

.card-2 {
  top: 45%;
  right: 5%;
  animation-delay: 1s;
}

.card-3 {
  bottom: 12%;
  left: 8%;
  animation-delay: 2s;
}

.card-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.card-text {
  font-weight: 600;
  color: #111827;
  font-size: 0.8rem;
  white-space: nowrap;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}


/* Seccion Galeria Visual */
.visual-gallery {
  padding: 4rem 2rem;
  background: white;
}

.gallery-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.gallery-item {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 2rem;
  color: white;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.gallery-overlay h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 0.95rem;
  opacity: 0.9;
}


.services {
  padding: 6rem 2rem;
  background: white;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.15rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #14b8a6;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.service-description {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 0.5rem 0;
  color: #374151;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #14b8a6;
  font-weight: 700;
}


.advantages {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.advantages-container {
  max-width: 1280px;
  margin: 0 auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.advantage-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(20, 184, 166, 0.15);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.advantage-icon svg {
  width: 40px;
  height: 40px;
}

.advantage-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.advantage-description {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
}


.case-studies {
  padding: 6rem 2rem;
  background: white;
}

.case-studies-container {
  max-width: 1280px;
  margin: 0 auto;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.case-card {
  background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #d1fae5;
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(20, 184, 166, 0.15);
}

.case-sector {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: #14b8a6;
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.case-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.case-description {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.case-metrics {
  display: flex;
  gap: 2rem;
}

.metric {
  text-align: left;
}

.metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: #14b8a6;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
}


.process {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.process-container {
  max-width: 1280px;
  margin: 0 auto;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.process-step {
  position: relative;
  text-align: center;
}

.step-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.step-content {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.process-step:hover .step-content {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(20, 184, 166, 0.15);
  border-color: #14b8a6;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.step-description {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Seccion Contacto */
.contact {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.contact-info {
  color: white;
}

.contact-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-description {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.benefit-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #14b8a6;
  color: white;
  border: none;
  padding: 1.1rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}


.footer {
  background: #0f172a;
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

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



.footer-description {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.7;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.contact-item svg {
  width: 18px;
  height: 18px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links button,
.footer-links a {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.3s ease;
  text-align: left;
  padding: 0;
  text-decoration: none;
}

.footer-links button:hover,
.footer-links a:hover {
  color: #14b8a6;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
}

/* Seccion para la pagina de "GRACIAS" */
.thank-you-section {
  min-height: 80vh;
  padding: 10rem 2rem 6rem;
  background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.success-animation {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s ease-out;
}

.success-animation svg {
  width: 64px;
  height: 64px;
  color: white;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.thank-you-title {
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.thank-you-description {
  font-size: 1.2rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.next-steps {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
  text-align: left;
}

.next-steps h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
  text-align: center;
}

.next-steps ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.next-steps li {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.next-steps li svg {
  width: 32px;
  height: 32px;
  color: #14b8a6;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.next-steps strong {
  display: block;
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 0.5rem;
}

.next-steps p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Diseño Responsive */
@media (max-width: 1024px) {
  .hero-container,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image-wrapper {
    height: 400px;
  }

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

@media (max-width: 768px) {
  
  .header-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 6rem 1.5rem 4rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid,
  .advantages-grid,
  .cases-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .contact-title {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    display: none;
  }

  .thank-you-title {
    font-size: 2rem;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .next-steps {
    padding: 2rem;
  }
}