.nav-container {
  width: 100%;
  max-width: 1400px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 2vw;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-grow: 0;
  justify-content: flex-start;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-grow: 1;
  justify-content: flex-start;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
/* HEADER/MENU PROFESIONAL Y RESPONSIVO */
.main-header {
  width: 100%;
  background: #0a85ff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 2vw;
}
.logo-nav {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
  background: none;
}
.logo-text {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -1px;
}
.main-nav ul {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.main-nav a:hover {
  color: #e3f0ff;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-link {
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover {
  color: #e3f0ff;
}
.nav-btn {
  background: #fff;
  color: #0a85ff;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,123,255,0.08);
  transition: background 0.2s, color 0.2s;
  border: none;
  display: inline-block;
}
.nav-btn:hover {
  background: #e3f0ff;
  color: #007bff;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 1.2rem;
  }
  .nav-actions {
    gap: 0.7rem;
  }
}
@media (max-width: 700px) {
  .nav-container {
    padding: 0.7rem 4vw;
  }
  .main-nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    background: #0a85ff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    z-index: 200;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    padding: 1rem 0 1rem 1.5rem;
  }
  .nav-actions {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .nav-toggle {
    display: flex;
  }
}
/* Sección industrias */
.industrias {
  background: #f6f8fa;
  padding: 3rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.industrias-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 2.2rem;
  letter-spacing: -0.5px;
}
.industrias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1100px;
}
.industria-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,123,255,0.07);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #e3f0ff;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 180px;
  position: relative;
}
.industria-card:hover {
  box-shadow: 0 8px 32px rgba(0,123,255,0.13);
  transform: translateY(-4px) scale(1.03);
}
.industria-card .icono {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  display: block;
}
.industria-card h3 {
  font-size: 1.13rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 0.4rem;
}
.industria-card ul {
  margin: 0;
  padding-left: 1.1em;
  color: #444;
  font-size: 1rem;
}
.industria-card ul li {
  margin-bottom: 0.3em;
  list-style: disc;
}
@media (max-width: 900px) {
  .industrias-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .industrias {
    padding: 2rem 0 1rem 0;
  }
  .industrias-title {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .industrias-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .industria-card {
    padding: 1rem 0.7rem 0.7rem 0.7rem;
    min-height: 120px;
  }
}
/* Footer moderno */
.footer-section {
  background: #f3f6fb;
  padding: 2.5rem 0 1.2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1.5px solid #e3f0ff;
  margin-top: 2rem;
}
.footer-section .powered {
  margin-bottom: 1.2rem;
  gap: 2.5rem;
}
.footer-info {
  color: #7a7a7a;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.2px;
}
@media (max-width: 700px) {
  .footer-section .powered {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-info {
    font-size: 0.95rem;
  }
}
/* Estilos generales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
body {
  background: #f6f8fa;
  color: #222;
  line-height: 1.6;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 4vw;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 64px;
}
header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header .logo img {
  max-width: 120px;
  height: auto;
  width: 100%;
  transition: max-width 0.2s;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}
nav a {
  text-decoration: none;
  font-weight: 600;
  color: #222;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover {
  background: #e3f0ff;
  color: #007bff;
}
.btn-dashboard {
  background: linear-gradient(90deg,#007bff 60%,#0056b3 100%);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,123,255,0.08);
  transition: background 0.2s;
  border: none;
}
.btn-dashboard:hover {
  background: linear-gradient(90deg,#0056b3 60%,#007bff 100%);
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 2vw 2rem 2vw;
  background: linear-gradient(120deg, #e3f0ff 0%, #f6f8fa 100%);
  min-height: 70vh;
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1a237e;
  letter-spacing: -1px;
}
.hero h1 span {
  color: #007bff;
  text-shadow: 0 2px 8px #e3f0ff;
}
.hero p {
  margin-bottom: 2.5rem;
  color: #444;
  font-weight: 500;
  font-size: 1.2rem;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  max-width: 1200px;
  align-items: center;
  justify-content: center;
}
.converter-box {
  background: #fff;
  padding: 2.2rem 2rem 2rem 2rem;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0,123,255,0.08);
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  border: 1px solid #e3f0ff;
}
.converter-box label {
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  text-align: left;
}
select, textarea, input[type="file"] {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #cfd8dc;
  border-radius: 8px;
  font-size: 1rem;
  background: #f6f8fa;
  color: #222;
  transition: border 0.2s;
}
select:focus, textarea:focus, input[type="file"]:focus {
  border: 1.5px solid #007bff;
  outline: none;
}
.converter-box button {
  background: linear-gradient(90deg,#007bff 60%,#0056b3 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  padding: 0.75rem 0;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,123,255,0.08);
  transition: background 0.2s;
}
.converter-box button:hover {
  background: linear-gradient(90deg,#0056b3 60%,#007bff 100%);
}
.converter-box .secondary-btn {
  background: #e3f0ff;
  color: #007bff;
  font-weight: 600;
  border: 1px solid #cfd8dc;
  box-shadow: none;
  margin-bottom: 0;
  transition: background 0.2s, color 0.2s;
}
.converter-box .secondary-btn:hover {
  background: #007bff;
  color: #fff;
}
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 420px;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0,123,255,0.08);
  padding: 1.5rem;
  border: 1px solid #e3f0ff;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.powered {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,123,255,0.04);
  padding: 1rem 0.5rem;
}
.powered img {
  max-height: 36px;
  opacity: 0.9;
  filter: grayscale(100%);
  transition: filter 0.2s, opacity 0.2s;
}
.powered img:hover {
  filter: none;
  opacity: 1;
}
@media (min-width: 992px) {
  .hero-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .converter-box {
    margin-right: 2rem;
  }
  .hero-text {
    max-width: 80%;
  }
  .hero-image {
    max-width: 45%;
  }
  .powered {
    justify-content: space-between;
  }
}
@media (max-width: 700px) {
  header {
    flex-direction: column;
    padding: 1rem 2vw;
  }
  header .logo img {
    max-width: 90px;
  }
  nav ul {
    gap: 1rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-content {
    gap: 1rem;
  }
  .converter-box {
    padding: 1rem;
    max-width: 100%;
  }
  .hero-image {
    padding: 1rem;
    max-width: 100%;
  }
  .powered {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0.2rem;
  }
}
/* Sección de precios mejorada */
.pricing {
  background: linear-gradient(120deg, #e3f0ff 0%, #f6f8fa 100%);
  padding: 4rem 0 3rem 0;
  margin-top: 0;
}
.pricing-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 2.5rem;
  letter-spacing: -1px;
}
.pricing-cards {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,123,255,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 270px;
  max-width: 340px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid #e3f0ff;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
  justify-content: flex-start;
}
.pricing-card:before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 8px;
  background: linear-gradient(90deg,#007bff 60%,#0056b3 100%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  opacity: 0.12;
}
.pricing-card:hover {
  box-shadow: 0 16px 48px rgba(0,123,255,0.18);
  transform: translateY(-6px) scale(1.04);
}
.pricing-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 0.7rem;
  margin-top: 0.5rem;
}
.pricing-card .price {
  font-size: 2.3rem;
  font-weight: 800;
  color: #007bff;
  margin-bottom: 1.2rem;
  margin-top: 0.2rem;
}
.pricing-card .price span {
  font-size: 1.1rem;
  font-weight: 500;
  color: #444;
}
.pricing-card .price.custom {
  color: #007bff;
  font-size: 1.3rem;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  width: 100%;
}
.pricing-card ul li {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 0.7rem;
  padding-left: 1.5em;
  position: relative;
}
.pricing-card ul li:before {
  content: "✔";
  color: #007bff;
  position: absolute;
  left: 0;
  font-size: 1.1em;
  font-weight: bold;
}
.pricing-btn {
  width: 100%;
  margin-top: auto;
  font-size: 1.15rem;
  border-radius: 10px;
  padding: 0.8rem 0;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,123,255,0.08);
  letter-spacing: 0.5px;
  text-align: center;
  display: block;
}
.custom-btn {
  background: #fff;
  color: #007bff;
  border: 2px solid #007bff;
  box-shadow: none;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.custom-btn:hover {
  background: #007bff;
  color: #fff;
}
@media (max-width: 900px) {
  .pricing-cards {
    gap: 1.2rem;
  }
  .pricing-card {
    min-width: 220px;
    max-width: 100%;
    padding: 2rem 1rem 1.5rem 1rem;
  }
}
@media (max-width: 700px) {
  .pricing-cards {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .pricing-card {
    max-width: 95vw;
    min-width: 180px;
    padding: 1.5rem 0.7rem 1.2rem 0.7rem;
  }
  .pricing-title {
    font-size: 1.5rem;
  }
}
