/* ============================================================
   ÖDDÜ — ESTILOS GLOBALES
   ============================================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: #37352f;
  line-height: 1.6;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #133b5c;
  line-height: 1.1;
}

/* ---- Layout ---- */
.oddu-section {
  padding: 5rem 0;
  background: #ffffff;
}
.oddu-section--soft {
  background: #f7f7f5;
}
.oddu-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.oddu-head {
  text-align: center;
  margin-bottom: 3.25rem;
}
.oddu-eyebrow-text {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #2a8fb8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.oddu-h2 {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
}
.oddu-lead {
  font-size: 1.075rem;
  color: #6f6e69;
  max-width: 580px;
  margin: 0 auto;
}

/* ---- Grids ---- */
.oddu-grid {
  display: grid;
  gap: 1.5rem;
}
.oddu-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.oddu-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}
.oddu-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}

/* ---- Botones ---- */
.oddu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s ease;
}
.oddu-btn--lg {
  font-size: 1.02rem;
  padding: 0.95rem 2rem;
}
.oddu-btn--primary {
  background: #c24e00;
  color: #ffffff;
  border-color: #c24e00;
  box-shadow: 0 8px 20px rgba(194, 78, 0, 0.22);
}
.oddu-btn--primary:hover {
  background: #a03f00;
  border-color: #a03f00;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(194, 78, 0, 0.3);
  color: #fff;
}
.oddu-btn--soft {
  background: #fff0e6;
  color: #c24e00;
  border-color: #ffcba4;
}
.oddu-btn--soft:hover {
  background: #c24e00;
  color: #fff;
  border-color: #c24e00;
  box-shadow: 0 6px 16px rgba(194, 78, 0, 0.22);
}
.oddu-btn--secondary {
  background: #ffffff;
  color: #37352f;
  border-color: #e8e8e7;
}
.oddu-btn--secondary:hover {
  background: #f7f7f5;
  border-color: #9b9a97;
}

/* ---- Eyebrow pill (cyan) ---- */
.oddu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e8f4f8;
  color: #2a8fb8;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #bfe3ee;
}
.oddu-eyebrow svg {
  width: 13px;
  height: auto;
  display: block;
}

/* ---- Tarjeta ---- */
.oddu-card {
  background: #fff;
  border: 1px solid #e8e8e7;
  border-radius: 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.oddu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.07);
}

/* ============ NAV ============ */
.oddu-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f2f1ee;
}
.oddu-nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.oddu-brand {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #133b5c;
}
.oddu-logo-u {
  color: #c24e00;
}
.oddu-nav-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.oddu-nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #6f6e69;
}
.oddu-nav-links a:hover {
  color: #133b5c;
}
.oddu-nav-cta {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}
.oddu-nav-cta .oddu-login {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #6f6e69;
}
.oddu-nav-cta .oddu-login:hover {
  color: #133b5c;
}

/* ===========LOGO ============== */
.main-logo {
  max-width: 100px;
}

/* ============ HERO ============ */
.oddu-hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.oddu-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.oddu-hero-glow--cyan {
  top: -160px;
  right: -120px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, #e8f4f8 0%, transparent 65%);
}
.oddu-hero-glow--warm {
  bottom: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #fff3e9 0%, transparent 65%);
}
.oddu-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.oddu-hero-title {
  font-size: 3.6rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
  text-wrap: balance;
}
.oddu-hero-hl {
  background: linear-gradient(180deg, transparent 62%, #ffe0c7 62%);
  padding: 0 0.12em;
}
.oddu-hero-sub {
  font-size: 1.2rem;
  color: #6f6e69;
  line-height: 1.55;
  margin: 0 0 2rem;
  max-width: 480px;
}
.oddu-hero-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.oddu-hero-note {
  font-size: 0.875rem;
  color: #9b9a97;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.oddu-hero-note span {
  color: #15803d;
  font-weight: 700;
}
.oddu-hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
}
.oddu-hero-art img {
  max-width: 430px;
  width: 100%;
  filter: drop-shadow(0 28px 50px rgba(15, 15, 15, 0.16));
  animation: oddu-float 6s ease-in-out infinite;
}

/* ============ CÓMO FUNCIONA ============ */
.oddu-step {
  padding: 2rem 1.6rem;
}
.oddu-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #3dacd9;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  margin-bottom: 1.1rem;
  box-shadow: 0 6px 14px rgba(61, 172, 217, 0.32);
}
.oddu-step h3 {
  font-size: 1.16rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.oddu-step p {
  font-size: 0.95rem;
  color: #6f6e69;
}

/* ============ FEATURES / BENEFICIOS ============ */
.oddu-feat {
  padding: 1.75rem 1.5rem;
}
.oddu-feat-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #e8f4f8;
  border-radius: 12px;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.oddu-feat h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.oddu-feat p {
  font-size: 0.93rem;
  color: #6f6e69;
}
.oddu-benefit {
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.oddu-benefit .oddu-feat-ico {
  flex-shrink: 0;
  margin-bottom: 0;
  border: 1px solid #bfe3ee;
  font-size: 1.6rem;
}
.oddu-benefit h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.oddu-benefit p {
  font-size: 0.93rem;
  color: #6f6e69;
}

/* ============ PRECIOS ============ */
.oddu-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
  margin-top: 1rem;
}
.oddu-plan {
  position: relative;
  background: #fff;
  border: 1px solid #e8e8e7;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.oddu-plan--feat {
  border: 2px solid #c24e00;
  padding-top: 2.25rem;
  box-shadow: 0 16px 40px -16px rgba(194, 78, 0, 0.28);
}
.oddu-plan-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #c24e00;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.oddu-plan-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #9b9a97;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.oddu-plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-bottom: 0.25rem;
}
.oddu-plan-price b {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #133b5c;
}
.oddu-plan-price span {
  font-size: 0.9375rem;
  color: #9b9a97;
}
.oddu-plan-desc {
  font-size: 0.9375rem;
  color: #6f6e69;
  margin-bottom: 1.5rem;
  min-height: 2.6em;
}
.oddu-plan ul {
  margin: 0 0 2rem;
  flex: 1;
}
.oddu-plan li {
  font-size: 0.925rem;
  color: #37352f;
  padding: 0.4rem 0;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.oddu-plan li i {
  font-style: normal;
  color: #15803d;
  font-weight: 700;
}
.oddu-plan li.is-off {
  color: #9b9a97;
}
.oddu-plan li.is-off i {
  color: #9b9a97;
}
.oddu-plan .oddu-btn {
  width: 100%;
}

/* ============ PARA CLIENTES ============ */
.oddu-customers {
  padding: 4.5rem 0;
  background: #e8f4f8;
  border-top: 1px solid #bfe3ee;
  border-bottom: 1px solid #bfe3ee;
  overflow: hidden;
}
.oddu-customers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}
.oddu-customers-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #2a8fb8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
.oddu-customers h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.oddu-customers p {
  font-size: 1.075rem;
  color: #6f6e69;
  margin: 0 0 1.75rem;
  line-height: 1.55;
}
.oddu-stores {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.oddu-store {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #133b5c;
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 11px;
  transition: all 0.18s ease;
}
.oddu-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(19, 59, 92, 0.28);
  color: #fff;
}
.oddu-store svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}
.oddu-store small {
  font-size: 0.66rem;
  opacity: 0.8;
  display: block;
  line-height: 1.1;
}
.oddu-store b {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: block;
  line-height: 1.1;
}
.oddu-mascota {
  position: relative;
  text-align: center;
}
.oddu-mascota img {
  max-width: 260px;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 16px 26px rgba(15, 15, 15, 0.14));
  animation: oddu-bob 5s ease-in-out infinite;
}
.oddu-mascota .oddu-star {
  position: absolute;
  width: 30px;
  animation: oddu-twinkle 3.5s ease-in-out infinite;
}
.oddu-mascota .oddu-star--1 {
  top: 8%;
  left: 6%;
}
.oddu-mascota .oddu-star--2 {
  top: 26%;
  right: 7%;
  width: 22px;
  animation-delay: 0.6s;
}

/* ============ FAQ ============ */
.oddu-faq {
  max-width: 760px;
  margin: 0 auto;
}
.oddu-faq-item {
  border-bottom: 1px solid #e8e8e7;
}
.oddu-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #133b5c;
  list-style: none;
}
.oddu-faq-q::-webkit-details-marker {
  display: none;
}
.oddu-faq-q::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: #2a8fb8;
  width: 24px;
  text-align: center;
}
.oddu-faq-item[open] .oddu-faq-q::after {
  content: "\2212";
}
.oddu-faq-a {
  padding: 0 0 1.4rem;
  font-size: 0.95rem;
  color: #6f6e69;
  line-height: 1.65;
}

.oddu-inline-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.75rem;
}
.oddu-inline-download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent, #c24e00);
  text-decoration: none;
  transition: color 0.15s ease;
}
.oddu-inline-download-link:hover {
  color: var(--accent-hover, #a03f00);
  text-decoration: underline;
}

/* ============ CTA FINAL ============ */
.oddu-cta {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: #133b5c;
  color: #fff;
  text-align: center;
}
.oddu-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 820px;
  height: 820px;
  background: radial-gradient(
    circle,
    rgba(61, 172, 217, 0.28) 0%,
    transparent 60%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.oddu-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.oddu-cta h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #fff;
}
.oddu-cta p {
  font-size: 1.075rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin: 0 auto 2rem;
}
.oddu-cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.oddu-cta .oddu-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.oddu-cta .oddu-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.oddu-cta-note {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============ FOOTER ============ */
.oddu-footer {
  background: #f7f7f5;
  padding: 3rem 0 2rem;
  border-top: 1px solid #e8e8e7;
}
.oddu-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.oddu-footer-brand {
  grid-column: span 2;
  min-width: 240px;
}
.oddu-footer-logo {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: #133b5c;
}
.oddu-footer-brand p {
  font-size: 0.9375rem;
  color: #6f6e69;
  line-height: 1.55;
  max-width: 320px;
}
.oddu-footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: #9b9a97;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
}
.oddu-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.oddu-footer-col a {
  font-size: 0.9375rem;
  color: #6f6e69;
}
.oddu-footer-col a:hover {
  color: #133b5c;
}
.oddu-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e8e7;
  font-size: 0.875rem;
  color: #9b9a97;
}
.oddu-footer-social {
  display: flex;
  gap: 1rem;
}
.oddu-footer-social a:hover {
  color: #133b5c;
}

/* ============ ANIMACIONES ============ */
@keyframes oddu-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes oddu-bob {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(-2deg);
  }
}
@keyframes oddu-twinkle {
  0%,
  100% {
    transform: scale(1) rotate(0);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.18) rotate(8deg);
    opacity: 1;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .oddu-nav-links {
    display: none;
  }
  .oddu-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.25rem 3.5rem;
    text-align: center;
  }
  .oddu-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .oddu-hero-actions,
  .oddu-hero-note {
    justify-content: center;
  }
  .oddu-hero-title {
    font-size: 2.6rem;
  }
  .oddu-hero-art {
    order: -1;
  }
  .oddu-h2,
  .oddu-cta h2 {
    font-size: 2rem;
  }
  .oddu-section,
  .oddu-cta {
    padding: 3.5rem 0;
  }
}

/* ============ BLOG ============ */
.oddu-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.oddu-blog-card {
  background: #ffffff;
  border: 1px solid #e8e8e7;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.oddu-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -12px rgba(15, 15, 15, 0.12);
  border-color: #bfe3ee;
}
.oddu-blog-cover {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f7f7f5;
}
.oddu-blog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.oddu-blog-card:hover .oddu-blog-cover img {
  transform: scale(1.04);
}
.oddu-blog-body {
  padding: 1.25rem 1.375rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.oddu-blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: #9b9a97;
}
.oddu-blog-tag {
  background: #e8f4f8;
  color: #2a8fb8;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.6875rem;
}
.oddu-blog-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #133b5c;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.oddu-blog-excerpt {
  font-size: 0.9375rem;
  color: #6f6e69;
  line-height: 1.55;
  margin: 0 0 1rem;
  flex: 1;
}
.oddu-blog-read {
  font-size: 0.875rem;
  font-weight: 600;
  color: #c24e00;
  transition: gap 0.2s ease;
}
.oddu-blog-card:hover .oddu-blog-read {
  color: #a03f00;
}
.oddu-blog-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .oddu-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .oddu-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BLOG.CSS — estilos específicos del blog
   Complementa a style.css (que ya define nav, footer, botones,
   colores, tipografía, etc.)
   ============================================================ */

/* ============ BLOG HERO ============ */
.blog-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, #f7f7f5 0%, #ffffff 100%);
  border-bottom: 1px solid #f2f1ee;
}
.blog-hero-inner {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}
.blog-hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #133b5c;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0.75rem 0 1rem;
}
.blog-hero p {
  font-size: 1.125rem;
  color: #6f6e69;
  line-height: 1.6;
  margin: 0;
}

/* ============ FILTROS DE CATEGORÍA ============ */
.blog-filters {
  padding: 2rem 0 0;
  background: #ffffff;
}
.blog-filters-inner {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-filter {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6f6e69;
  background: #ffffff;
  border: 1px solid #e8e8e7;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.blog-filter:hover {
  border-color: #bfe3ee;
  color: #2a8fb8;
  background: #e8f4f8;
}
.blog-filter.is-active {
  background: #133b5c;
  border-color: #133b5c;
  color: #ffffff;
}

/* ============ LISTADO DE POSTS ============ */
.blog-list {
  padding: 3rem 0 5rem;
  background: #ffffff;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ============ CARD DE POST ============ */
.blog-card {
  background: #ffffff;
  border: 1px solid #e8e8e7;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -12px rgba(15, 15, 15, 0.12);
  border-color: #bfe3ee;
}
.blog-card-cover {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f7f7f5;
}
.blog-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.blog-card:hover .blog-card-cover img {
  transform: scale(1.04);
}
.blog-card-body {
  padding: 1.25rem 1.375rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: #9b9a97;
}
.blog-card-tag {
  background: #e8f4f8;
  color: #2a8fb8;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.6875rem;
}
.blog-card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #133b5c;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.blog-card-excerpt {
  font-size: 0.9375rem;
  color: #6f6e69;
  line-height: 1.55;
  margin: 0 0 1rem;
  flex: 1;
}
.blog-card-read {
  font-size: 0.875rem;
  font-weight: 600;
  color: #c24e00;
  transition: color 0.2s ease;
}
.blog-card:hover .blog-card-read {
  color: #a03f00;
}

/* ============ CTA FINAL DEL BLOG ============ */
.blog-cta {
  padding: 4rem 0;
  background: #133b5c;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(61, 172, 217, 0.2) 0%,
    transparent 60%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.blog-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.blog-cta h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}
.blog-cta p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 2rem;
}
.blog-cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   TEMPLATE DE POST INDIVIDUAL
   Estilos para /blog/nombre-post/index.html
   ============================================================ */

/* Header del post */
.post-header {
  padding: 3rem 0 2rem;
  background: #ffffff;
  border-bottom: 1px solid #f2f1ee;
}
.post-header-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.post-breadcrumb {
  font-size: 0.875rem;
  color: #9b9a97;
  margin-bottom: 1rem;
}
.post-breadcrumb a {
  color: #6f6e69;
  text-decoration: none;
}
.post-breadcrumb a:hover {
  color: #c24e00;
}
.post-breadcrumb .sep {
  margin: 0 0.5rem;
  color: #c7c7c4;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  color: #9b9a97;
}
.post-meta .post-tag {
  background: #e8f4f8;
  color: #2a8fb8;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.6875rem;
}
.post-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: #133b5c;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}
.post-subtitle {
  font-size: 1.25rem;
  color: #6f6e69;
  line-height: 1.5;
  margin: 0;
}

/* Cover del post */
.post-cover {
  padding: 2rem 0;
  background: #ffffff;
}
.post-cover-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.post-cover img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: 0 12px 32px -8px rgba(15, 15, 15, 0.15);
}

/* Contenido del post */
.post-content {
  padding: 2rem 0 4rem;
  background: #ffffff;
}
.post-content-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #37352f;
}
.post-content-inner > * + * {
  margin-top: 1.25rem;
}
.post-content-inner h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #133b5c;
  letter-spacing: -0.015em;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  scroll-margin-top: 6rem;
}
.post-content-inner h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3125rem;
  font-weight: 700;
  color: #133b5c;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.post-content-inner p {
  margin: 0;
}
.post-content-inner a {
  color: #c24e00;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.post-content-inner a:hover {
  color: #a03f00;
}
.post-content-inner strong {
  color: #133b5c;
  font-weight: 600;
}
.post-content-inner ul,
.post-content-inner ol {
  padding-left: 1.5rem;
}
.post-content-inner li {
  margin: 0.4rem 0;
}
.post-content-inner blockquote {
  border-left: 4px solid #3dacd9;
  background: #e8f4f8;
  padding: 1rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
  color: #133b5c;
  font-style: italic;
}
.post-content-inner blockquote p {
  margin: 0;
}
.post-content-inner img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
}
.post-content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
  border: 1px solid #e8e8e7;
  border-radius: 12px;
  overflow: hidden;
}
.post-content-inner th,
.post-content-inner td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e8e8e7;
}
.post-content-inner th {
  background: #f7f7f5;
  color: #133b5c;
  font-weight: 600;
  font-size: 0.875rem;
}
.post-content-inner tr:last-child td {
  border-bottom: none;
}

/* Callout box dentro del post */
.post-callout {
  background: #fff3e9;
  border: 1px solid #ffcba4;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.post-callout p {
  margin: 0;
}
.post-callout strong {
  color: #c24e00;
}

/* CTA inline dentro del post */
.post-cta-inline {
  background: linear-gradient(135deg, #fff3e9 0%, #e8f4f8 100%);
  border: 1px solid #ffcba4;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  margin: 2.5rem 0;
  text-align: center;
}
.post-cta-inline h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #133b5c;
  margin: 0 0 0.5rem;
}
.post-cta-inline p {
  color: #6f6e69;
  margin: 0 0 1.25rem;
}

/* Footer del post: autor y fecha */
.post-footer {
  padding: 2rem 0;
  border-top: 1px solid #f2f1ee;
  background: #fafaf9;
}
.post-footer-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.post-share {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.post-share span {
  font-size: 0.875rem;
  color: #6f6e69;
  margin-right: 0.5rem;
}
.post-share a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8e8e7;
  color: #6f6e69;
  text-decoration: none;
  transition: all 0.2s ease;
}
.post-share a:hover {
  border-color: #c24e00;
  color: #c24e00;
}
.post-back {
  font-size: 0.9375rem;
  color: #6f6e69;
  text-decoration: none;
  font-weight: 500;
}
.post-back:hover {
  color: #c24e00;
}

/* Posts relacionados al final */
.post-related {
  padding: 3rem 0 4rem;
  background: #f7f7f5;
}
.post-related-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.post-related h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #133b5c;
  margin: 0 0 1.5rem;
  text-align: center;
}
.post-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-hero h1 {
    font-size: 2.25rem;
  }
  .post-title {
    font-size: 2rem;
  }
  .post-subtitle {
    font-size: 1.0625rem;
  }
  .post-content-inner h2 {
    font-size: 1.5rem;
  }
  .post-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-hero {
    padding: 3rem 0 2rem;
  }
  .blog-hero h1 {
    font-size: 1.875rem;
  }
  .post-header {
    padding: 2rem 0 1.5rem;
  }
  .post-title {
    font-size: 1.625rem;
  }
  .post-content-inner {
    font-size: 1rem;
  }
  .post-related-grid {
    grid-template-columns: 1fr;
  }
  .post-footer-inner {
    justify-content: center;
    text-align: center;
  }
}
