/* ================= PLANES SECTION ================= */
.planes-section {
  position: relative;
  width: 100%;
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.planes-header {
  position: relative;
  padding: 8rem 1.5rem 6rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .planes-header { padding-top: 12rem; padding-bottom: 8rem; }
}

.planes-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--color-brand-blue);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .planes-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .planes-title { font-size: 3.75rem; }
}

.planes-subtitle {
  color: var(--text-gray-900);
  font-size: 1.125rem;
  font-weight: 700;
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .planes-subtitle { font-size: 1.25rem; }
}

/* Toggle */
.plan-toggle-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 30;
  width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}
.plan-toggle-bg {
  background: white;
  padding: 0.5rem;
  border-radius: 9999px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid #e5e7eb;
}
.plan-btn {
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  transition: all 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  background: white;
  color: var(--color-brand-blue);
  border: none;
  cursor: pointer;
}
.plan-btn:hover { background-color: #f3f4f6; }
@media (min-width: 768px) {
  .plan-btn { padding: 1rem 2rem; font-size: 1.125rem; }
}
.plan-btn.active {
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.plan-btn-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec);
  background-size: 300% 300%;
  animation: border-gradient-flow 5s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.plan-btn.active .plan-btn-bg { opacity: 1; }

.plan-btn-icon {
  display: none;
  position: relative;
  z-index: 10;
  width: 20px;
  height: 20px;
}
.plan-btn.active .plan-btn-icon { color: white; }
@media (min-width: 768px) {
  .plan-btn-icon { display: block; }
}
.plan-btn-icon svg { color: var(--color-brand-orange); transition: color 0.3s; }
.plan-btn:hover .plan-btn-icon svg { color: var(--color-brand-blue); }

.plan-btn-text { position: relative; z-index: 10; }

/* Split Container */
.planes-split {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid white;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .planes-split { flex-direction: row; }
}

/* Plan Card */
.plan-card {
  width: 100%;
  padding: 6rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background-color 0.5s;
}
@media (min-width: 768px) {
  .plan-card { width: 50%; padding-left: 3rem; padding-right: 3rem; }
}
@media (min-width: 1024px) {
  .plan-card { padding-left: 5rem; padding-right: 5rem; }
}
@media (min-width: 1280px) {
  .plan-card { padding-left: 7rem; padding-right: 7rem; }
}

.plan-equipo {
  background-color: #f0f4f8;
}
.plan-equipo:hover {
  background-color: var(--color-brand-orange);
}

.plan-jugador {
  background-color: white;
}
.plan-jugador:hover {
  background-color: var(--color-brand-blue);
}

.plan-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec);
  background-size: 300% 300%;
  animation: border-gradient-flow 5s linear infinite;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 0;
}
.plan-card:hover .plan-card-bg { opacity: 1; }

.plan-card-inner {
  position: relative;
  z-index: 10;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(0);
}
.plan-card-inner.animating {
  opacity: 0;
  transform: translateY(2rem);
}

.plan-equipo .plan-card-inner {
  margin-left: auto;
  margin-right: 0;
}
.plan-jugador .plan-card-inner {
  margin-right: auto;
  margin-left: 0;
}
@media (max-width: 767px) {
  .plan-equipo .plan-card-inner,
  .plan-jugador .plan-card-inner {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Badge */
.plan-badge {
  background-color: rgba(255, 71, 19, 0.1);
  color: var(--color-brand-orange);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: max-content;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s, color 0.3s;
}
.plan-equipo:hover .plan-badge {
  background-color: rgba(255,255,255,0.2);
  color: white;
}
.plan-jugador .plan-badge {
  background-color: rgba(0, 25, 236, 0.1);
  color: var(--color-brand-blue);
}
.plan-jugador:hover .plan-badge {
  background-color: rgba(255,255,255,0.2);
  color: white;
}

/* Plan Title */
.plan-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--text-gray-900);
  transition: color 0.3s;
}
@media (min-width: 1024px) {
  .plan-title { font-size: 5.5rem; }
}
@media (min-width: 1280px) {
  .plan-title { font-size: 6.5rem; }
}
.plan-card:hover .plan-title { color: white; }

.plan-subtitle {
  color: var(--text-gray-600);
  font-weight: 500;
  font-size: 1.125rem;
  transition: color 0.3s;
}
@media (min-width: 1024px) {
  .plan-subtitle { font-size: 1.25rem; }
}
.plan-card:hover .plan-subtitle {
  color: rgba(255,255,255,0.9);
}

/* Plan Price */
.plan-price {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  margin-bottom: 2rem;
  transition: color 0.3s;
  height: 70px;
  display: flex;
  align-items: center;
  font-size: 2.5rem;
  line-height: 1;
}
@media (min-width: 640px) {
  .plan-price { font-size: 4rem; }
}
@media (min-width: 1024px) {
  .plan-price { font-size: 3.6rem; }
}
.plan-price.internacional {
  font-size: 3rem;
}
@media (min-width: 640px) {
  .plan-price.internacional { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .plan-price.internacional { font-size: 4rem; }
}

.plan-equipo .plan-price { color: var(--color-brand-orange); }
.plan-jugador .plan-price { color: var(--color-brand-blue); }
.plan-card:hover .plan-price { color: white; }

/* Benefits */
.plan-benefits {
  width: 100%;
  flex: 1;
  transition: color 0.5s;
  margin-top: 1rem;
}
.plan-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 0.75rem;
  width: 100%;
}
@media (min-width: 768px) {
  .plan-benefits-grid { gap: 2.5rem 1.5rem; }
}
@media (min-width: 1024px) {
  .plan-benefits-grid { gap: 2.5rem 2rem; }
}

.benefit-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .benefit-item { gap: 1rem; }
}

.benefit-icon {
  flex-shrink: 0;
}
.benefit-icon svg {
  width: 36px;
  height: 36px;
  transition: color 0.3s;
}
.plan-equipo .benefit-icon svg { color: var(--color-brand-orange); }
.plan-jugador .benefit-icon svg { color: var(--color-brand-blue); }
.plan-card:hover .benefit-icon svg { color: white; }

.benefit-content {
  padding-top: 0.25rem;
  padding-right: 0.5rem;
}

.benefit-title {
  color: var(--text-gray-900);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.25;
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .benefit-title { font-size: 16px; }
}
@media (min-width: 1024px) {
  .benefit-title { font-size: 20px; }
}
.plan-card:hover .benefit-title { color: white; }

.benefit-sub {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.375;
  transition: color 0.3s;
}
.plan-equipo .benefit-sub { color: #8c919a; }
.plan-jugador .benefit-sub { color: var(--color-brand-blue); }
@media (min-width: 768px) {
  .benefit-sub { font-size: 13px; }
}
@media (min-width: 1024px) {
  .benefit-sub { font-size: 14px; }
}
.plan-equipo:hover .benefit-sub { color: rgba(255,255,255,0.9); }
.plan-jugador:hover .benefit-sub { color: rgba(255,255,255,0.7); }

/* Plan CTA */
.plan-cta-container {
  margin-top: 3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 20;
}
@media (min-width: 640px) {
  .plan-cta-container { flex-direction: row; }
}

.plan-cta-text {
  color: var(--text-gray-600);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  width: 100%;
  text-align: center;
  transition: color 0.3s;
}
@media (min-width: 640px) {
  .plan-cta-text { width: 50%; text-align: left; }
}
.plan-card:hover .plan-cta-text { color: white; }

.plan-cta-btn-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 640px) {
  .plan-cta-btn-wrap { width: 50%; }
}

.plan-cta-btn {
  padding: 2px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec);
  background-size: 300% 300%;
  animation: border-gradient-flow 5s linear infinite;
  display: inline-block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  width: 100%;
}
@media (min-width: 640px) {
  .plan-cta-btn { width: auto; }
}

.plan-cta-btn-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.plan-cta-btn:hover .plan-cta-btn-fill { opacity: 1; }

.plan-cta-inner {
  position: relative;
  z-index: 10;
  background: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan-cta-btn:hover .plan-cta-inner { background: transparent; }

.plan-equipo .plan-cta-inner { color: var(--color-brand-blue); }
.plan-jugador .plan-cta-inner { color: var(--color-brand-orange); }
.plan-cta-btn:hover .plan-cta-inner { color: white; }

.plan-cta-inner span {
  white-space: nowrap;
  font-size: clamp(12px, 1.5vw, 18px);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .plan-cta-inner span { font-size: 1.25rem; }
}

.plan-img-container {
  width: 90%;
  margin: auto auto 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.plan-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
}

/* ================= CTA MID ================= */
.cta-mid {
  padding-top: 8rem;
  padding-bottom: 0;
  background-color: var(--color-brand-orange);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 8px solid var(--color-brand-blue);
}

.cta-mid-bg1 {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519861531473-920026076fb1?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  opacity: 0.2;
  mix-blend-mode: multiply;
  z-index: 0;
}

.cta-mid-bg2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #ff4713, #cc390f, #ff4713, #b3320d);
  background-size: 400% 400%;
  animation: gradient-shift 6s ease infinite;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 0;
}
.scroll-active .cta-mid-bg2 { opacity: 1; }

.cta-mid-content {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-mid-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 3.25rem;
  line-height: 0.9;
  color: white;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
@media (min-width: 640px) {
  .cta-mid-title { font-size: 4rem; }
}
@media (min-width: 768px) {
  .cta-mid-title { font-size: 6.5rem; }
}

.cta-mid-desc {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  line-height: 1.625;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .cta-mid-desc { font-size: 1.5rem; }
}

.cta-mid-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 20;
  width: 100%;
  justify-content: center;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .cta-mid-buttons { flex-direction: row; width: auto; }
}
.cta-mid-buttons .btn-primary {
  background-color: white;
  color: var(--color-brand-orange);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  padding: 1rem 1.5rem;
  font-size: 13px;
}
@media (min-width: 768px) {
  .cta-mid-buttons .btn-primary {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
  }
}
.cta-mid-buttons .btn-outline {
  border-color: white;
  color: white;
  padding: 1rem 1.5rem;
  font-size: 13px;
}
.cta-mid-buttons .btn-outline:hover {
  background-color: white;
  color: var(--color-brand-orange);
}
@media (min-width: 768px) {
  .cta-mid-buttons .btn-outline {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
  }
}

.cta-mid-img-container {
  width: 100%;
  margin-top: 0;
  position: relative;
  z-index: 10;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0;
  line-height: 0;
}
.cta-mid-img-desk {
  display: none;
  width: 55%;
  max-width: 56rem;
  height: auto;
  object-fit: cover;
  object-position: bottom;
  margin: 0 auto;
}
.cta-mid-img-mob {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: bottom;
}
@media (min-width: 768px) {
  .cta-mid-img-desk { display: block; }
  .cta-mid-img-mob { display: none; }
}

/* ================= CRONOGRAMA PAGOS ================= */
.crono-pagos {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: var(--bg-color);
}
@media (min-width: 768px) {
  .crono-pagos { padding-bottom: 6rem; }
}

.crono-pagos-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--color-brand-blue);
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
@media (min-width: 1024px) {
  .crono-pagos-title { font-size: 3.75rem; }
}

.crono-pagos-container {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.crono-pagos-line {
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 0.5px;
  background: linear-gradient(to bottom, #ff4713, #0019ec, transparent);
  opacity: 0.3;
}
@media (min-width: 768px) {
  .crono-pagos-line { left: 50%; transform: translateX(-50%); }
}

.crono-pagos-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

.crono-pagos-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 768px) {
  .crono-pagos-item { flex-direction: row; }
}

.crono-pagos-date-desk {
  display: none;
  width: 50%;
  justify-content: flex-end;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  text-transform: uppercase;
  padding-right: 3rem;
}
@media (min-width: 768px) {
  .crono-pagos-date-desk { display: flex; }
}

.crono-pagos-dot {
  position: absolute;
  left: 16px;
  border-radius: 50%;
  border: 4px solid;
  z-index: 20;
  transition: all 0.3s;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--bg-color);
}
@media (min-width: 768px) {
  .crono-pagos-dot {
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 2rem;
  }
}
.crono-pagos-dot.is-last {
  width: 2rem;
  height: 2rem;
  background: white;
  box-shadow: 0 0 25px rgba(255,255,255,0.9);
}
@media (min-width: 768px) {
  .crono-pagos-dot.is-last {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.crono-pagos-item:hover .crono-pagos-dot {
  transform: scale(1.25);
}
@media (min-width: 768px) {
  .crono-pagos-item:hover .crono-pagos-dot {
    transform: translateX(-50%) scale(1.25);
  }
}

.crono-pagos-content {
  margin-left: 3.5rem;
  width: calc(100% - 3.5rem);
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .crono-pagos-content {
    margin-left: 0;
    width: 50%;
    padding-left: 3rem;
  }
}

.crono-pagos-date-mob {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .crono-pagos-date-mob { display: none; }
}

.crono-pagos-card-wrap {
  position: relative;
  width: 100%;
  z-index: 10;
  cursor: pointer;
}
@media (min-width: 768px) {
  .crono-pagos-card-wrap { width: 85%; }
}

.crono-pagos-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec);
  filter: blur(24px);
  opacity: 0;
  transition: opacity 0.7s;
  z-index: -10;
}
.crono-pagos-card-wrap:hover .crono-pagos-card-glow {
  opacity: 1;
}

.crono-pagos-card-bg {
  border-radius: 1.5rem;
  padding: 2px;
  background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec);
  height: 100%;
  position: relative;
  width: 100%;
  transition: transform 0.5s;
}
.crono-pagos-card-wrap:hover .crono-pagos-card-bg {
  transform: translateY(-0.5rem);
}

.crono-pagos-card {
  background: white;
  border-radius: 1.35rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}
@media (min-width: 768px) {
  .crono-pagos-card { padding: 2rem; }
}

.crono-pagos-card-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #0019ec, #000b75, #0019ec, #00085c);
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 0;
}
.crono-pagos-card-wrap:hover .crono-pagos-card-fill {
  opacity: 1;
}

.crono-pagos-card-inner {
  position: relative;
  z-index: 10;
}

.crono-pagos-card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-gray-900);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: color 0.5s;
}
.crono-pagos-card-wrap:hover .crono-pagos-card-title {
  color: white;
}

.crono-pagos-card-sub {
  color: var(--text-gray-600);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.625;
  font-weight: 500;
  transition: color 0.5s;
}
.crono-pagos-card-wrap:hover .crono-pagos-card-sub {
  color: #dbeafe;
}

.crono-pagos-btn {
  background: #f3f4f6;
  color: var(--color-brand-blue);
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
  transition: background 0.5s, color 0.5s;
  width: 100%;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}
@media (min-width: 640px) {
  .crono-pagos-btn { width: auto; }
}
.crono-pagos-card-wrap:hover .crono-pagos-btn {
  background: var(--color-brand-orange);
  color: white;
}

/* ================= CAROUSEL SECTION ================= */
.carousel-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--bg-color);
  position: relative;
}
@media (min-width: 768px) {
  .carousel-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.carousel-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.carousel-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--color-brand-blue);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
@media (min-width: 768px) {
  .carousel-title { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .carousel-title { font-size: 4.5rem; }
}

.carousel-subtitle {
  color: var(--color-brand-orange);
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.carousel-wrapper {
  position: relative;
  max-width: 100%;
  padding: 0;
  margin: 0 -1rem;
}
@media (min-width: 768px) {
  .carousel-wrapper { margin: 0 -2rem; }
}
@media (min-width: 1024px) {
  .carousel-wrapper { margin: 0 -3rem; }
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 3rem;
}
@media (min-width: 768px) {
  .carousel-track { padding: 0 4rem; }
}
@media (min-width: 1024px) {
  .carousel-track { padding: 0 5rem; }
}
.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 280px;
  scroll-snap-align: center;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s;
  aspect-ratio: 4/3;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .carousel-slide { flex: 0 0 320px; }
}
@media (min-width: 1024px) {
  .carousel-slide { flex: 0 0 380px; }
}

.carousel-slide:hover {
  transform: scale(1.02);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.carousel-slide:hover img {
  transform: scale(1.1);
}

.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,25,236,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.carousel-slide:hover::after {
  opacity: 1;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 30;
  border: none;
  color: var(--color-brand-blue);
  opacity: 0;
}
.carousel-wrapper:hover .carousel-nav {
  opacity: 1;
}
.carousel-nav:hover {
  background-color: var(--color-brand-orange);
  color: white;
  transform: translateY(-50%) scale(1.1);
}
.carousel-nav.prev { left: 0; }
.carousel-nav.next { right: 0; }
@media (min-width: 768px) {
  .carousel-nav { width: 2.5rem; height: 2.5rem; }
}
@media (min-width: 1024px) {
  .carousel-nav { width: 3rem; height: 3rem; }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d1d5db;
  cursor: pointer;
  transition: all 0.3s;
}
.carousel-dot.active {
  background-color: var(--color-brand-blue);
  transform: scale(1.2);
}
.carousel-dot:hover {
  background-color: var(--color-brand-orange);
}

/* ================= CAROUSEL FIXES ================= */
.carousel-section {
  overflow: hidden;
}
.carousel-wrapper {
  overflow: hidden;
}
.carousel-nav.prev { left: 0.5rem; }
.carousel-nav.next { right: 0.5rem; }
@media (min-width: 768px) {
  .carousel-nav.prev { left: 1.5rem; }
  .carousel-nav.next { right: 1.5rem; }
}
@media (min-width: 1024px) {
  .carousel-nav.prev { left: 2rem; }
  .carousel-nav.next { right: 2rem; }
}

/* ================= MOMENTOS CTA ================= */
.momentos-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,25,236,0.1);
}
.momentos-cta .btn-primary,
.momentos-cta .btn-outline {
  padding: 1rem 2rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ================= LOGISTICA CTA ================= */
.logistica-cta-wrap {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.logistica-cta-wrap .btn-primary {
  padding: 1rem 2rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline-blue {
  background: transparent;
  border: 2px solid var(--color-brand-blue);
  color: var(--color-brand-blue);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s, color 0.3s;
}
.btn-outline-blue:hover {
  background-color: var(--color-brand-blue);
  color: white;
}

/* ================= POPUPS ================= */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  overflow-y: auto;
  padding: 1rem;
}

.popup-content {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  max-width: 680px;
  margin: 2rem auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
@media (min-width: 640px) {
  .popup-content { padding: 2.5rem; }
}

.popup-content h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--color-brand-blue);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  padding-right: 2.5rem;
}
@media (min-width: 640px) {
  .popup-content h2 { font-size: 2rem; }
}

.popup-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  color: var(--text-gray-400);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s, background 0.2s;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f4f6;
}
.popup-close:hover {
  color: var(--color-brand-orange);
  background: #fee2e2;
}

body.popup-open {
  overflow: hidden;
}

/* Form Sections */
.form-section {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #e5e7eb;
}
.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.form-section h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-brand-blue);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-brand-orange);
  display: inline-block;
}

.form-group {
  margin-bottom: 1.125rem;
}
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-gray-700);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-gray-800);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: auto;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 25, 236, 0.1);
}
.form-group input[readonly] {
  background: #f9fafb;
  color: var(--text-gray-500);
  cursor: default;
}

/* Category blocks */
.category-block {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: #f9fafb;
}
.category-block h3 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  padding-bottom: 0;
  border-bottom: none;
  display: block;
}

/* Checkbox & Radio Groups */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.checkbox-group[style*="column-count"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0.75rem;
  gap: 0.4rem;
}
.checkbox-group label,
.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray-700);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  transition: color 0.2s;
}
.checkbox-group label:hover,
.radio-group label:hover { color: var(--color-brand-blue); }
.checkbox-group input[type="checkbox"],
.radio-group input[type="radio"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--color-brand-blue);
  cursor: pointer;
  flex-shrink: 0;
}
.radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Submit button */
.btn-submit {
  display: block;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec);
  background-size: 300% 300%;
  animation: border-gradient-flow 5s linear infinite;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  border-radius: 9999px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 1.5rem;
  letter-spacing: 0.025em;
}
.btn-submit:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 71, 19, 0.4);
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Feedback Messages */
.success-message {
  display: none;
  background: #f0fdf4;
  border: 2px solid #86efac;
  color: #166534;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
}
.error-message {
  display: none;
  background: #fef2f2;
  border: 2px solid #fca5a5;
  color: #991b1b;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}
