.elementor-94 .elementor-element.elementor-element-6124a06{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-e225e1b */:root {
  /* OPC Brand */
  --opc-primary: #007298;
  --opc-primary-dark: #005f77;
  --opc-soft: #54BDCB;

  /* Neutrals */
  --opc-bg: #f4f7f8;
  --opc-white: #ffffff;
  --opc-text-main: #1A1A1A;
  --opc-text-muted: #333333;
  --opc-border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--opc-bg);
  color: var(--opc-text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

/* PAGE */
.opc-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 16px 72px;
}

/* HEADER */
.opc-header {
  margin-bottom: 32px;
}

.opc-brand-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.opc-brand-sub {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--opc-text-muted);
}

/* SECTIONS */
.opc-section {
  background: var(--opc-white);
  border: 1px solid var(--opc-border);
  border-radius: 18px;
  padding: 26px 26px 28px;
  margin-bottom: 28px;
  box-shadow: 0 14px 34px rgba(15,23,42,0.06);
}

.opc-section-soft {
  background: linear-gradient(
    180deg,
    rgba(84,189,203,0.10),
    #ffffff
  );
}

.opc-section-header h2 {
  font-size: 18px;
  margin: 0 0 4px;
}

.opc-section-header p {
  font-size: 14px;
  color: var(--opc-text-muted);
  margin: 0 0 16px;
  max-width: 520px;
}

/* CARDS */
.opc-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.opc-card {
  display: block;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,114,152,0.25);
  border-radius: 16px;
  padding: 18px 18px 20px;
  color: inherit;
  text-decoration: none;
}

.opc-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.opc-card p {
  font-size: 13px;
  color: var(--opc-text-muted);
  margin: 0 0 12px;
}

.opc-card span {
  font-size: 13px;
  font-weight: 500;
  color: var(--opc-primary);
}

/* HERO */
.opc-hero {
  background: linear-gradient(
    180deg,
    #ffffff,
    rgba(84,189,203,0.15)
  );
  border: 1px solid var(--opc-border);
  border-radius: 22px;
  padding: 36px 36px 40px;
  margin-bottom: 30px;
  box-shadow: 0 18px 42px rgba(15,23,42,0.08);
}

.opc-hero h1 {
  font-size: clamp(34px, 4.5vw, 42px);
  margin: 0 0 10px;
}

.opc-hero-text {
  font-size: 14px;
  color: var(--opc-text-muted);
  max-width: 560px;
  margin-bottom: 20px;
}

/* BADGES */
.opc-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.opc-badge {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0,114,152,0.35);
  color: var(--opc-primary);
}

/* BUTTON */
.opc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: 999px;
  background: var(--opc-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.opc-btn-primary:hover {
  background: var(--opc-primary-dark);
}

/* STEPS */
.opc-steps {
  list-style: none;
  padding-left: 0;
  counter-reset: step;
  margin-top: 6px;
}

.opc-steps li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--opc-text-muted);
}

.opc-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(0,114,152,0.15);
  color: var(--opc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

/* FOOTER */
.opc-footer {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--opc-border);
  font-size: 11px;
  color: var(--opc-text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .opc-cards {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS */:root {
  --primary: #007298;
  --secondary: #009FAE;
  --light: #54BDCB;
  --text-dark: #2b2b2b;
  --text-light: #555;
  --bg: #f7fbfc;
  --white: #ffffff;
}

/* RESET BÁSICO */
* {
  box-sizing: border-box;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HERO */
.hero {
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: var(--text-light);
}

.hero small {
  display: block;
  margin-top: 1rem;
  color: var(--text-light);
}

/* BOTÓN PRINCIPAL */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: var(--secondary);
}

/* SECCIÓN CARDS */
.selection {
  padding: 4rem 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card span {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 500;
}

/* HOW IT WORKS */
.how {
  padding: 4rem 0;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

/* TEAM */
.team {
  padding: 4rem 0;
  text-align: center;
}

/* CTA FINAL */
.final-cta {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg), var(--light));
}

/* FORMULARIO */
.consult-form {
  max-width: 480px;
  margin: 2rem auto 0;
  text-align: left;
}

.consult-form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.consult-form input,
.consult-form select {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.3rem;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.consult-form button {
  width: 100%;
  margin-top: 1.5rem;
}

/* FADE-IN */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}/* End custom CSS */