* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html,
body {
  overflow-x: hidden;
}

body {
  line-height: 1.5;
  color: #2f4658;
}

.container {
  width: min(92%, 1200px);
  margin: auto;
}

section {
  scroll-margin-top: 90px;
}

/* NAVBAR */
/* NAVBAR */
.navbar {
  background: #0e5a8a;
  padding: 15px 0;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(8, 55, 86, 0.2);
}

/* CONTENEDOR */
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* LOGO */
.logo img {
  height: 58px;
  width: auto;
  display: block;
}


/* MENU */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.nav-menu a:hover {
  opacity: 0.8;
}

/* BOTÓN */
.btn-outline {
  background: white;
  color: #007ddb;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #f1f1f1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-content {
    position: relative;
  }

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

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(90vw, 320px);
    padding: 14px;
    border-radius: 14px;
    background: #0b4f7a;
    border: 1px solid rgba(255, 255, 255, 0.22);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    box-shadow: 0 18px 30px rgba(6, 43, 68, 0.35);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.14);
  }

  .btn-outline {
    padding: 8px 14px;
    font-size: 13px;
  }

  .logo img {
    height: 56px;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 14px 0;
  }

  .nav-content {
    gap: 10px;
  }

  .logo img {
    height: 54px;
  }
}

/* HERO */
.hero {
  background: #007ddb;
  color: white;
  padding: 96px 0;
}

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

.hero-text {
  max-width: 500px;
}

.subtitle {
  font-size: 18px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.description {
  margin-bottom: 20px;
}

.btn-primary {
  background: white;
  color: #007ddb;
  padding: 12px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

/* HERO IMAGE */
.hero-image {
  position: relative;
}

.circle {
  width: 550px;
  height: 550px;
  overflow: hidden;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFO */
.info {
  background: #f1f1f1;
  padding: 96px 0;
}

.info-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.info-image img {
  width: 500px;
  border-radius: 15px;
}

.info-text h2 {
  color: #007ddb;
  margin-bottom: 15px;
}

.info-text p {
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content,
  .info-content {
    flex-direction: column;
    text-align: center;
  }

  .circle {
    width: 250px;
    height: 250px;
    margin-top: 20px;
  }

  .info-image img {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 56px 0;
  }

  .subtitle {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }
}

.accordion-section {
  padding: 96px 0;
  background: #f8f8f8;
}

.accordion-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT */
.accordion-left {
  width: 45%;
}

.accordion-left h2 {
  color: #007ddb;
  margin-bottom: 30px;
}

/* ACCORDION */
.accordion-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
}

/* Flechita */
.accordion-header::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  transition: 0.3s;
}

.accordion-item.active .accordion-header::after {
  content: "-";
}

/* CONTENIDO */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  margin-top: 10px;
}

.accordion-content p {
  color: #555;
}

/* RIGHT */
.accordion-right {
  width: 55%;
}

.accordion-right img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .accordion-wrapper {
    flex-direction: column;
  }

  .accordion-left,
  .accordion-right {
    width: 100%;
  }
}

.cta-section {
  background: #007ddb; /* mismo azul del header */
  color: white;
  padding: 108px 20px;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: auto;
}

.cta-subtitle {
  font-size: 18px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-description {
  font-size: 16px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* BOTÓN */
.cta-button {
  background: white;
  color: #007ddb;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.cta-button:hover {
  background: #f1f1f1;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 28px;
  }
}

.erp-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
}

.erp-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.erp-kicker {
  color: #0e5a8a;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.erp-header h2 {
  color: #0e5a8a;
  margin-bottom: 12px;
}

.erp-header p {
  color: #4d6475;
  line-height: 1.6;
}

.erp-badges {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.erp-badges span {
  background: #e8f4ff;
  color: #0e5a8a;
  border: 1px solid #c9e3fb;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
}

.erp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.erp-card {
  background: #ffffff;
  border: 1px solid #d7e8f7;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(14, 90, 138, 0.08);
}

.erp-card h3 {
  color: #007ddb;
  margin-bottom: 12px;
  font-size: 28px;
}

.erp-card ul {
  margin-left: 18px;
  color: #415a6c;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .erp-grid {
    grid-template-columns: 1fr;
  }
}

.lead-section {
  padding: 80px 0;
  background: #f7fbff;
}

.lead-wrapper {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

.lead-copy {
  width: 45%;
}

.lead-kicker {
  color: #0e5a8a;
  font-weight: 700;
  margin-bottom: 8px;
}

.lead-copy h2 {
  color: #0e5a8a;
  margin-bottom: 12px;
}

.lead-copy p {
  color: #4d6475;
  line-height: 1.6;
}

.lead-form {
  width: 55%;
  background: #ffffff;
  border: 1px solid #d5e8f8;
  border-radius: 16px;
  padding: 24px;
  display: grid;
  gap: 10px;
}

.lead-form label {
  font-size: 13px;
  color: #33556d;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #c2dced;
  border-radius: 10px;
  font-size: 14px;
}

.lead-form button {
  margin-top: 8px;
  background: #007ddb;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.lead-form button:hover {
  background: #0e5a8a;
}

@media (max-width: 900px) {
  .lead-wrapper {
    flex-direction: column;
  }

  .lead-copy,
  .lead-form {
    width: 100%;
  }
}

.features-section {
  padding: 80px 0;
  background: white;
}

.ai-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f2f9ff 100%);
}

.ai-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 40px;
}

.ai-kicker {
  color: #0e5a8a;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.ai-header h2 {
  color: #0e5a8a;
  margin-bottom: 12px;
}

.ai-header p {
  color: #4d6475;
  line-height: 1.6;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 26px;
}

.ai-card {
  background: #ffffff;
  border: 1px solid #d6e8f7;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(14, 90, 138, 0.08);
}

.ai-card h3 {
  color: #007ddb;
  margin-bottom: 10px;
  font-size: 20px;
}

.ai-card p {
  color: #4b6275;
  line-height: 1.6;
}

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

@media (max-width: 900px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }
}

.industry-section {
  padding: 80px 0;
  background: #ffffff;
}

.industry-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}

.industry-kicker {
  color: #0e5a8a;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.industry-header h2 {
  color: #0e5a8a;
  margin-bottom: 12px;
}

.industry-header p {
  color: #4d6475;
  line-height: 1.6;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  border: 1px solid #d6e8f7;
  border-radius: 16px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
}

.industry-card h3 {
  color: #007ddb;
  margin-bottom: 10px;
}

.industry-card p {
  color: #4b6275;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

.results-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.results-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 36px;
}

.results-kicker {
  color: #0e5a8a;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.results-header h2 {
  color: #0e5a8a;
  margin-bottom: 12px;
}

.results-header p {
  color: #4d6475;
  line-height: 1.6;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-card {
  background: #ffffff;
  border: 1px solid #d6e8f7;
  border-radius: 16px;
  padding: 24px;
}

.result-card h3 {
  color: #007ddb;
  font-size: 44px;
  margin-bottom: 8px;
}

.result-title {
  font-weight: 700;
  color: #0e5a8a;
  margin-bottom: 10px;
}

.result-card p {
  color: #4b6275;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

.process-section {
  padding: 80px 0;
  background: #ffffff;
}

.process-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 36px;
}

.process-kicker {
  color: #0e5a8a;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.process-header h2 {
  color: #0e5a8a;
  margin-bottom: 12px;
}

.process-header p {
  color: #4d6475;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  border: 1px solid #d6e8f7;
  border-radius: 16px;
  padding: 20px;
  background: #f8fcff;
}

.process-step span {
  display: inline-block;
  color: #007ddb;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step h3 {
  color: #0e5a8a;
  margin-bottom: 8px;
}

.process-step p {
  color: #4b6275;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* HEADER */
.features-header {
  text-align: center;
  margin-bottom: 50px;
}

.features-header h2 {
  color: #007ddb;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* CARD */
.feature-card {
  text-align: left;
}

.feature-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: #007ddb;
  margin-bottom: 10px;
}

.feature-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* LISTA */
.features-list {
  margin-bottom: 30px;
}

/* LISTA HORIZONTAL */
.features-list ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap; /* baja a otra línea si no cabe */
  justify-content: center;
  gap: 15px 30px;
}

/* ITEMS */
.features-list li {
  color: #444;
  cursor: default;
  transition: 0.3s;
  white-space: nowrap;
}

/* HOVER */
.features-list li:hover {
  color: #167bbd;
  transform: translateY(-2px);
}
/* FOOTER */
.features-footer {
  text-align: center;
  color: #888;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.benefits-section {
  padding: 80px 0;
  background: #f8f8f8;
}

/* HEADER */
.benefits-header {
  text-align: center;
  margin-bottom: 50px;
}

.benefits-header h2 {
  color: #007ddb;
}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.benefit-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
}

/* IMG */
.benefit-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.benefit-card h3 {
  padding: 20px 20px 10px;
  color: #007ddb;
}

.benefit-card p {
  padding: 0 20px 20px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* HOVER */
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT */
.faq-left {
  width: 45%;
}

.faq-left img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

.faq-left h2 {
  color: #007ddb;
  margin-bottom: 20px;
}

/* BOTÓN */
.faq-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px solid #007ddb;
  color: #007ddb;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
/* BOTÓN */
.faq-buttons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  text-decoration: none;
}

.nav-cta {
  text-align: center;
  line-height: 1.15;
  white-space: normal;
  justify-content: center;
}

@media (max-width: 480px) {
  .faq-buttons,
  .faq-button {
    padding: 10px 16px;
    font-size: 14px;
  }

  .nav-cta {
    max-width: 170px;
    padding: 8px 10px;
    font-size: 12px;
  }
}

.faq-button:hover {
  background: #007ddb;
  color: white;
}

.wpp-icon {
  font-size: 18px;
}

/* RIGHT */
.faq-right {
  width: 55%;
}

/* ACCORDION */
.accordion-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
}

.accordion-header::after {
  content: "+";
  position: absolute;
  right: 0;
}

.accordion-item.active .accordion-header::after {
  content: "-";
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  margin-top: 10px;
}

.accordion-content p {
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-wrapper {
    flex-direction: column;
  }

  .faq-left,
  .faq-right {
    width: 100%;
  }
}

.faq-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px solid #007ddb;
  color: #007ddb;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  text-decoration: none; /* 🔥 quita subrayado */
  margin-top: 20px;
}

.faq-button:hover {
  background: #007ddb;
  color: white;
}

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

.footer {
  background: #007ddb;
  color: white;
  padding-top: 60px;
}

/* GRID */
.footer-content {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 40px;
}

/* COLUMNAS */
.footer-col {
  width: 33%;
}

.footer-col h3 {
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #d6e6f2;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #d6e6f2;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: white;
  padding-left: 5px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
  color: #cce0ef;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-col {
    width: 100%;
  }
}

/* INNER PAGES */
.page-hero {
  padding: 90px 0 70px;
  background: linear-gradient(135deg, #0e5a8a 0%, #007ddb 100%);
  color: #ffffff;
}

.page-hero h1 {
  font-size: 46px;
  margin-bottom: 14px;
  max-width: 920px;
}

.page-hero p {
  max-width: 760px;
  color: #d7eeff;
}

.page-kicker {
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 8px;
  color: #ffffff;
}

.page-section {
  padding: 80px 0;
}

.page-band {
  background: #f6fbff;
}

.page-section h2 {
  color: #0e5a8a;
  margin-bottom: 20px;
}

.page-grid-2,
.page-grid-3 {
  display: grid;
  gap: 24px;
}

.page-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.page-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.page-card {
  background: #ffffff;
  border: 1px solid #d6e8f7;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(14, 90, 138, 0.08);
}

.page-card h3 {
  color: #007ddb;
  margin-bottom: 10px;
}

.page-list {
  margin-left: 18px;
  color: #425d71;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .page-hero h1 {
    font-size: 36px;
  }

  .page-grid-2,
  .page-grid-3 {
    grid-template-columns: 1fr;
  }
}
