/* =================================================================================
                                      HOME
================================================================================= */
/*********************************** SECCION HERO  *********************************/
/* Container principal */
.homher-container {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.homher-main {
  flex-grow: 1;
}

/* Section */
.homher-section {
  position: relative;
  overflow: hidden;
  padding-top: 48px;
  padding-bottom: 80px;
}

@media (min-width: 1024px) {
  .homher-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

/* Efectos de blur en el fondo */
.homher-blur-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 800px;
  background: rgba(219, 234, 254, 0.5);
  filter: blur(100px);
  border-radius: 9999px;
  pointer-events: none;
  transform: translate(25%, -25%);
}

.homher-blur-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: rgba(254, 249, 195, 0.6);
  filter: blur(80px);
  border-radius: 9999px;
  pointer-events: none;
  transform: translate(-25%, 25%);
}

/* Content wrapper */
.homher-content-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .homher-content-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* Grid layout */
.homher-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .homher-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}

/* Text content */
.homher-text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

@media (min-width: 1024px) {
  .homher-text-content {
    text-align: left;
  }
}

/* Badge */
.homher-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  border-radius: 9999px;
  background-color: #ffffff;
  border: 1px solid #dbeafe;
  padding: 6px 16px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
  .homher-badge {
    align-self: flex-start;
  }
}

.homher-pulse-dot {
  display: flex;
  height: 8px;
  width: 8px;
  border-radius: 9999px;
  background-color: #22c55e;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.homher-badge-text {
  font-size: 12px;
  font-weight: 700;
  color: #0339a6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Title */
.homher-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #0f172a;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .homher-title {
    font-size: 72px;
  }
}

.homher-title-gradient {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #0339a6, #2563eb);
}

/* Description */
.homher-description {
  font-size: 18px;
  color: #475569;
  max-width: 576px;
  line-height: 1.625;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .homher-description {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Buttons */
.homher-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  padding-top: 16px;
}

@media (min-width: 640px) {
  .homher-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .homher-buttons {
    justify-content: flex-start;
  }
}

.homher-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 12px;
  background-color: #ffd93d;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  color: #0339a6;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(254, 240, 138, 0.4);
  text-decoration: none;
}

.homher-btn-primary:hover {
  background-color: #fde047;
  transform: scale(1.05);
}

.homher-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  background-color: #ffffff;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.homher-btn-secondary:hover {
  border-color: #0339a6;
  color: #0339a6;
}

.homher-icon {
  width: 24px;
  height: 24px;
}

.homher-icon-play {
  color: #0339a6;
}

/* Features */
.homher-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 16px;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .homher-features {
    justify-content: flex-start;
  }
}

.homher-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.homher-feature-icon {
  width: 20px;
  height: 20px;
  color: #ffd93d;
}

/* Image wrapper */
.homher-image-wrapper {
  position: relative;
  perspective: 1000px;
}

.homher-image-blur {
  position: absolute;
  inset: -4px;
  background-image: linear-gradient(to right, #0339a6, #60a5fa);
  border-radius: 16px;
  filter: blur(20px);
  opacity: 0.2;
  transition: opacity 1s;
}

.homher-image-wrapper:hover .homher-image-blur {
  opacity: 0.3;
  transition-duration: 0.2s;
}

.homher-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background-image: url("../img/home/hero.webp");
  background-size: cover;
  background-position: center;
}

@media (min-width: 1024px) {
  .homher-image-container {
    aspect-ratio: 4 / 3;
  }
}

.homher-image-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    to top,
    rgba(3, 57, 166, 0.8),
    transparent,
    transparent
  );
  opacity: 0.9;
}

/* Card */
.homher-card {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  animation: bounce 3s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(-10px);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.homher-card-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.homher-card-icon {
  height: 40px;
  width: 40px;
  border-radius: 9999px;
  background-image: linear-gradient(to bottom right, #facc15, #fef08a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0339a6;
  font-weight: 700;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.homher-card-icon svg {
  width: 24px;
  height: 24px;
}

.homher-card-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.homher-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #0339a6;
}

.homher-card-badge {
  color: #15803d;
  font-size: 12px;
  font-weight: 700;
  background-color: #dcfce7;
  border: 1px solid #bbf7d0;
  padding: 4px 8px;
  border-radius: 4px;
}

/* Modal de video (YouTube) */
.homher-video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.homher-video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.homher-video-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: white;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
}

.homher-video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.homher-video-modal iframe {
  width: 100%;
  height: 500px;
  display: block;
  border: none;
}

@media (max-width: 639px) {
  .homher-video-modal iframe {
    height: 250px;
  }
}

/*********************************** TIEMPO DE SORTEO  *********************************/
.homsor-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

.homsor-main {
  flex-grow: 1;
}

.homsor-section {
  position: relative;
  padding: 3rem 0;
  background-color: #ffffff;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.homsor-max-width {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .homsor-max-width {
    padding: 0 2rem;
  }
}

.homsor-card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background-color: #0339a6;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.2);
}

@media (min-width: 1024px) {
  .homsor-card-wrapper {
    padding: 3rem;
  }
}

.homsor-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 20px 20px;
}

.homsor-blur-effect {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 16rem;
  height: 16rem;
  background-color: #ffd93d;
  filter: blur(100px);
  border-radius: 9999px;
  opacity: 0.3;
}

.homsor-content-grid {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .homsor-content-grid {
    flex-direction: row;
  }
}

.homsor-text-content {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .homsor-text-content {
    text-align: left;
  }
}

.homsor-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 217, 61, 0.2);
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffd93d;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 217, 61, 0.3);
  backdrop-filter: blur(4px);
}

.homsor-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .homsor-title {
    font-size: 2.25rem;
  }
}

.homsor-description {
  color: #bfdbfe;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  line-height: 1.6;
}

.homsor-countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .homsor-countdown {
    justify-content: flex-start;
  }
}

.homsor-time-box {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding: 0.75rem;
  min-width: 80px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.homsor-time-number {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
}

.homsor-time-number.homsor-primary {
  color: #ffd93d;
}

.homsor-time-number.homsor-pulse {
  animation: homsor-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes homsor-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.homsor-time-label {
  font-size: 0.75rem;
  color: #bfdbfe;
  text-transform: uppercase;
  font-weight: 600;
}

.homsor-button {
  width: 100%;
  background-color: #ffd93d;
  color: #0339a6;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .homsor-button {
    width: auto;
  }
}

.homsor-button:hover {
  background-color: #ffffff;
  transform: scale(1.05);
}

.homsor-icon {
  width: 24px;
  height: 24px;
}

.homsor-ticket-wrapper {
  position: relative;
  width: 100%;
}

@media (min-width: 1024px) {
  .homsor-ticket-wrapper {
    width: 33.333333%;
  }
}

.homsor-ticket {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: rotate(3deg);
  transition: transform 0.5s ease;
  border: 4px solid rgba(255, 217, 61, 0.2);
}

.homsor-ticket:hover {
  transform: rotate(0deg);
}

.homsor-active-badge {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  background-color: #ef4444;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  animation: homsor-bounce 1s infinite;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

@keyframes homsor-bounce {
  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.homsor-ticket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 1rem;
}

.homsor-ticket-label {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
}

.homsor-ticket-number {
  color: #0339a6;
  font-weight: 700;
}

.homsor-prize-section {
  text-align: center;
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.homsor-prize-glow {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 217, 61, 0.05);
  border-radius: 9999px;
  filter: blur(40px);
  transform: scale(1.5);
}

.homsor-prize-label {
  color: #9ca3af;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 700;
  position: relative;
  z-index: 10;
}

.homsor-prize-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #0339a6;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 10;
}

.homsor-prize-currency {
  color: #ffd93d;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.homsor-prize-tag {
  font-size: 0.875rem;
  color: #16a34a;
  font-weight: 700;
  background-color: #f0fdf4;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  position: relative;
  z-index: 10;
}

.homsor-ticket-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.homsor-avatars {
  display: flex;
  margin-left: -0.5rem;
}

.homsor-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: #e2e8f0;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-left: -0.5rem;
}

.homsor-avatar.homsor-avatar-2 {
  background-color: #cbd5e1;
}

.homsor-avatar.homsor-avatar-count {
  background-color: #0339a6;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.625rem;
}

.homsor-participants {
  color: #64748b;
  font-weight: 500;
}

/*********************************** HOME COMO FUNCIONA EN 3 PASOS *********************************/
.homcf-container {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.homcf-main {
  flex-grow: 1;
}

/* Section */
.homcf-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f8fafc;
  position: relative;
}

@media (min-width: 1024px) {
  .homcf-section {
    padding-top: 128px;
    padding-bottom: 128px;
  }
}

/* Content wrapper */
.homcf-content-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1024px) {
  .homcf-content-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* Header */
.homcf-header {
  text-align: center;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}

/* Title */
.homcf-title {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .homcf-title {
    font-size: 36px;
  }
}

.homcf-title-accent {
  color: #0339a6;
}

/* Description */
.homcf-description {
  color: #475569;
  font-size: 18px;
  line-height: 1.75;
}

/* Steps Grid */
.homcf-steps {
  display: grid;
  gap: 32px;
  position: relative;
}

@media (min-width: 768px) {
  .homcf-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Connector line */
.homcf-connector {
  display: none;
}

@media (min-width: 768px) {
  .homcf-connector {
    display: block;
    position: absolute;
    top: 48px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(
      to right,
      rgba(3, 57, 166, 0),
      rgba(3, 57, 166, 0.2),
      rgba(3, 57, 166, 0)
    );
    z-index: 0;
  }
}

/* Step */
.homcf-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Step Icon Wrapper */
.homcf-step-icon-wrapper {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.homcf-step:hover .homcf-step-icon-wrapper {
  border-color: #0339a6;
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
}

/* Step Icon */
.homcf-step-icon {
  width: 36px;
  height: 36px;
  color: #0339a6;
}

/* Step Number */
.homcf-step-number {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background-color: #ffd93d;
  color: #0339a6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  border: 4px solid #f8fafc;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Step Title */
.homcf-step-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

/* Step Description */
.homcf-step-description {
  color: #475569;
  line-height: 1.625;
  font-size: 14px;
}

/*********************************** MULTIPLES INGRESO *********************************/

.hommfi-container {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.hommfi-main {
  flex-grow: 1;
}

/* Section */
.hommfi-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #ffffff;
}

@media (min-width: 1024px) {
  .hommfi-section {
    padding-top: 128px;
    padding-bottom: 128px;
  }
}

/* Content wrapper */
.hommfi-content-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1024px) {
  .hommfi-content-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* Header */
.hommfi-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

@media (min-width: 768px) {
  .hommfi-header {
    flex-direction: row;
  }
}

/* Title */
.hommfi-title {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .hommfi-title {
    font-size: 36px;
  }
}

/* Description */
.hommfi-description {
  color: #475569;
  max-width: 672px;
  font-size: 18px;
  line-height: 1.75;
}

/* Cards Grid */
.hommfi-cards {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .hommfi-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hommfi-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card Base */
.hommfi-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hommfi-card:hover {
  transform: translateY(-4px);
}

/* Card Variants - Blue */
.hommfi-card-blue:hover {
  border-color: #0339a6;
  box-shadow: 0 20px 25px -5px rgba(3, 57, 166, 0.05);
}

/* Card Variants - Purple */
.hommfi-card-purple:hover {
  border-color: #a855f7;
  box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.1);
}

/* Card Variants - Green */
.hommfi-card-green:hover {
  border-color: #22c55e;
  box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.1);
}

/* Card Variants - Yellow */
.hommfi-card-yellow:hover {
  border-color: #ffd93d;
  box-shadow: 0 20px 25px -5px rgba(255, 217, 61, 0.5);
}

/* Card Icon */
.hommfi-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.hommfi-card-icon svg {
  width: 24px;
  height: 24px;
}

/* Card Icon Variants */
.hommfi-card-icon-blue {
  background-color: #dbeafe;
  color: #0339a6;
}

.hommfi-card-blue:hover .hommfi-card-icon-blue {
  background-color: #0339a6;
  color: #ffffff;
}

.hommfi-card-icon-purple {
  background-color: #f3e8ff;
  color: #9333ea;
}

.hommfi-card-purple:hover .hommfi-card-icon-purple {
  background-color: #9333ea;
  color: #ffffff;
}

.hommfi-card-icon-green {
  background-color: #dcfce7;
  color: #16a34a;
}

.hommfi-card-green:hover .hommfi-card-icon-green {
  background-color: #16a34a;
  color: #ffffff;
}

.hommfi-card-icon-yellow {
  background-color: #fef3c7;
  color: #ca8a04;
}

.hommfi-card-yellow:hover .hommfi-card-icon-yellow {
  background-color: #ffd93d;
  color: #0339a6;
}

/* Card Title */
.hommfi-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

/* Card Text */
.hommfi-card-text {
  color: #475569;
  font-size: 14px;
  line-height: 1.625;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Card Badge */
.hommfi-card-badge {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  width: fit-content;
  margin-top: auto;
}

/* Badge Variants */
.hommfi-card-badge-blue {
  color: #0339a6;
  background-color: #dbeafe;
}

.hommfi-card-badge-purple {
  color: #7e22ce;
  background-color: #f3e8ff;
}

.hommfi-card-badge-green {
  color: #15803d;
  background-color: #dcfce7;
}

.hommfi-card-badge-yellow {
  color: #a16207;
  background-color: #fef3c7;
}

/*********************************** CALCULADORA *********************************/

.homcal-alerta-mensaje {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fef2f2;
  color: #b91c1c;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  border: 1px solid #fecaca;
}
/* === Contenedor general que envuelve todo el contenido === */
.homcal-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

/* === Área principal del contenido (excluye header/footer si hubiera) === */
.homcal-main {
  flex-grow: 1;
}

/* === Sección principal de la calculadora === */
.homcal-section {
  padding: 5rem 0;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  scroll-margin-top: 5rem;
}

/* === Contenedor de ancho máximo para centrar contenido === */
.homcal-max-width {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .homcal-max-width {
    padding: 0 2rem;
  }
}

/* === Encabezado de la sección (título y subtítulo) === */
.homcal-header {
  text-align: center;
  margin-bottom: 3rem;
}

.homcal-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .homcal-title {
    font-size: 2.25rem;
  }
}

.homcal-subtitle {
  color: #475569;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* === Tarjeta de sumatoria total de ganancias === */
.homcal-total-card {
  max-width: 80rem;
  margin: 0 auto 2rem;
}

.homcal-total-content {
  background: linear-gradient(to right, #0339a6, #1e40af);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1px solid #1e3a8a;
}

@media (min-width: 768px) {
  .homcal-total-content {
    flex-direction: row;
  }
}

.homcal-total-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.homcal-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 9999px;
}

.homcal-icon-large {
  width: 3rem;
  height: 3rem;
  color: #ffd93d;
}

.homcal-total-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #bfdbfe;
}

.homcal-total-desc {
  font-size: 0.875rem;
  color: #93c5fd;
}

.homcal-total-amount-wrapper {
  text-align: center;
}

@media (min-width: 768px) {
  .homcal-total-amount-wrapper {
    text-align: right;
  }
}

.homcal-total-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #93c5fd;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.homcal-total-amount {
  font-size: 2.25rem;
  font-weight: 900;
  color: #ffd93d;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07));
}

/* === Contenedor de las pestañas (tabs) === */
.homcal-tabs-container {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.homcal-tab-input {
  display: none;
}

.homcal-tabs-header {
  width: 100%;
  display: flex;
}

/* === Etiquetas de las pestañas === */
.homcal-tab-label {
  flex: 1;
  padding: 1.25rem 0;
  text-align: center;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  border-bottom: 4px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.homcal-tab-label:hover {
  background-color: #f8fafc;
}

.homcal-tab-icon {
  width: 24px;
  height: 24px;
}

.homcal-tab-text {
  display: none;
}

@media (min-width: 640px) {
  .homcal-tab-text {
    display: inline;
  }
}

/* === Estados activos de las pestañas (colores por tipo) === */
#tab1:checked ~ .homcal-tabs-header .homcal-tab1 {
  color: #0339a6;
  border-bottom-color: #0339a6;
  background-color: rgba(3, 57, 166, 0.05);
}

#tab2:checked ~ .homcal-tabs-header .homcal-tab2 {
  color: #a16207;
  border-bottom-color: #ffd93d;
  background-color: rgba(255, 217, 61, 0.05);
}

#tab3:checked ~ .homcal-tabs-header .homcal-tab3 {
  color: #15803d;
  border-bottom-color: #22c55e;
  background-color: rgba(34, 197, 94, 0.05);
}

#tab4:checked ~ .homcal-tabs-header .homcal-tab4 {
  color: #c2410c;
  border-bottom-color: #f97316;
  background-color: rgba(249, 115, 22, 0.05);
}

/* === Contenido de cada pestaña (oculto por defecto) === */
.homcal-tab-content {
  width: 100%;
  display: none;
  background-color: #ffffff;
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .homcal-tab-content {
    padding: 2.5rem;
  }
}

/* === Mostrar contenido activo con animación === */
#tab1:checked ~ .homcal-content1,
#tab2:checked ~ .homcal-content2,
#tab3:checked ~ .homcal-content3,
#tab4:checked ~ .homcal-content4 {
  display: block;
  animation: homcal-fade-in 0.5s ease-out forwards;
}

@keyframes homcal-fade-in {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Disposición en grilla del contenido interno de las pestañas === */
.homcal-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .homcal-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

/* === Columna de formulario (izquierda en desktop) === */
.homcal-form-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .homcal-form-column {
    grid-column: span 4;
  }
}

.homcal-form-column-sorteo {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .homcal-form-column-sorteo {
    grid-column: span 5;
  }
}

/* === Columna de resultados (derecha en desktop) === */
.homcal-results-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .homcal-results-column {
    grid-column: span 8;
  }
}

/* === Columna de resultados de premios en sorteos === */
.homcal-prize-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .homcal-prize-column {
    grid-column: span 7;
  }
}

/* === Grupo de formulario (etiqueta + campo) === */
.homcal-form-group {
  display: flex;
  flex-direction: column;
}

.homcal-form-group-inline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.homcal-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.5rem;
}

/* === Selectores (dropdowns) === */
.homcal-select {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #cbd5e1;
  font-weight: 700;
  color: #0f172a;
  background-color: #ffffff;
  padding: 0.75rem;
}

.homcal-select:focus {
  outline: none;
  border-color: #0339a6;
  box-shadow: 0 0 0 3px rgba(3, 57, 166, 0.1);
}

.homcal-select-green:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.homcal-select-orange:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* === Campos de entrada (inputs) === */
.homcal-input {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #cbd5e1;
  font-weight: 700;
  color: #0f172a;
  padding: 0.75rem;
}

.homcal-input:focus {
  outline: none;
  border-color: #0339a6;
  box-shadow: 0 0 0 3px rgba(3, 57, 166, 0.1);
}

.homcal-input-green:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.homcal-input-orange:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.homcal-help-text {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.25rem;
}

/* === Grupo de botones === */
.homcal-button-group {
  display: flex;
  gap: 0.5rem;
}

.homcal-button {
  flex: 1;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.homcal-button-primary {
  background-color: #0339a6;
  color: #ffffff;
}

.homcal-button-primary:hover {
  background-color: #1e40af;
}

.homcal-button-green {
  background-color: #16a34a;
  color: #ffffff;
}

.homcal-button-green:hover {
  background-color: #15803d;
}

.homcal-button-orange {
  background-color: #f97316;
  color: #ffffff;
}

.homcal-button-orange:hover {
  background-color: #ea580c;
}

.homcal-button-sorteo {
  width: 100%;
  background-color: #0339a6;
  color: #ffd93d;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.homcal-button-sorteo:hover {
  background-color: #1e3a8a;
}

.homcal-button-secondary {
  background-color: #e2e8f0;
  color: #475569;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.homcal-button-secondary:hover {
  background-color: #cbd5e1;
}

.homcal-button-icon {
  width: 1rem;
  height: 1rem;
}

/* === Contenedores de etiquetas de valores agregados === */
.homcal-tags-box {
  border-radius: 0.75rem;
  padding: 1rem;
}

.homcal-tags-box.homcal-blue {
  background-color: rgba(3, 57, 166, 0.05);
  border: 1px solid #dbeafe;
}

.homcal-tags-box.homcal-green {
  background-color: rgba(34, 197, 94, 0.05);
  border: 1px solid #dcfce7;
}

.homcal-tags-box.homcal-orange {
  background-color: rgba(249, 115, 22, 0.05);
  border: 1px solid #fed7aa;
}

.homcal-tags-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.homcal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* === Etiquetas individuales (tags) === */
.homcal-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.homcal-tag-blue {
  background-color: #dbeafe;
  color: #1e40af;
}

.homcal-tag-green {
  background-color: #dcfce7;
  color: #166534;
}

.homcal-tag-orange {
  background-color: #fed7aa;
  color: #9a3412;
}

.homcal-tag-close {
  margin-left: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0;
}

.homcal-tag-blue .homcal-tag-close {
  color: #2563eb;
}

.homcal-tag-blue .homcal-tag-close:hover {
  color: #1e3a8a;
}

.homcal-tag-green .homcal-tag-close {
  color: #16a34a;
}

.homcal-tag-green .homcal-tag-close:hover {
  color: #15803d;
}

.homcal-tag-orange .homcal-tag-close {
  color: #ea580c;
}

.homcal-tag-orange .homcal-tag-close:hover {
  color: #c2410c;
}

/* === Contenedor de tablas (resultados) === */
.homcal-table-wrapper {
  background-color: #f8fafc;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  padding: 0.25rem;
  overflow: hidden;
}

.homcal-table-scroll {
  overflow-x: auto;
}

.homcal-table {
  width: 100%;
  font-size: 0.875rem;
  text-align: left;
}

/* === Encabezado de tablas === */
.homcal-thead {
  text-transform: uppercase;
  font-size: 0.75rem;
}

.homcal-thead-blue {
  background-color: #0339a6;
  color: #ffffff;
}

.homcal-thead-green {
  background-color: #16a34a;
  color: #ffffff;
}

.homcal-thead-orange {
  background-color: #f97316;
  color: #ffffff;
}

.homcal-th {
  padding: 0.75rem 1rem;
}

.homcal-th-right {
  text-align: right;
}

/* === Cuerpo de las tablas === */
.homcal-tbody {
  border-top: 1px solid #e2e8f0;
}

.homcal-tr {
  border-bottom: 1px solid #e2e8f0;
}

.homcal-tr-white {
  background-color: #ffffff;
}

.homcal-tr-gray {
  background-color: #f8fafc;
}

.homcal-td {
  padding: 0.75rem 1rem;
}

.homcal-td-bold {
  font-weight: 700;
}

.homcal-td-blue {
  color: #0339a6;
}

.homcal-td-green {
  color: #16a34a;
}
.homcal-td-orange {
  color: #f97316;
}

.homcal-td-right {
  text-align: right;
}

/* === Inputs dentro de las tablas === */
.homcal-table-input {
  width: 5rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.25rem;
}

.homcal-table-input:focus {
  outline: none;
  border-color: #0339a6;
  box-shadow: 0 0 0 1px #0339a6;
}

.homcal-table-input-green:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 1px #22c55e;
}

.homcal-table-input-orange:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 1px #f97316;
}

/* === Pie de tablas === */
.homcal-tfoot {
  background-color: #eff6ff;
}

.homcal-tfoot-blue {
  background-color: #eff6ff;
}

.homcal-tfoot-green {
  background-color: #f0fdf4;
}

.homcal-tfoot-orange {
  background-color: #fff7ed;
}

.homcal-td-total {
  padding: 0.75rem 1rem;
  text-align: right;
  font-weight: 900;
  text-transform: uppercase;
  color: #0339a6;
}

.homcal-td-total-green {
  color: #166534;
}

.homcal-td-total-orange {
  color: #9a3412;
}

.homcal-td-total-amount {
  padding: 0.75rem 1rem;
  text-align: right;
  font-weight: 900;
  font-size: 1.125rem;
  color: #0339a6;
}

.homcal-td-total-green-amt {
  color: #166534;
}

.homcal-td-total-orange-amt {
  color: #9a3412;
}

/* === Caja de porcentaje (en pestaña de sorteos) === */
.homcal-percentage-box {
  background-color: #eff6ff;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #dbeafe;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.homcal-percentage-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0339a6;
}

.homcal-percentage-value {
  font-size: 1.125rem;
  font-weight: 900;
  color: #0339a6;
}

/* === Inputs para porcentajes por nivel (sorteos) === */
.homcal-level-inputs {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: #f8fafc;
  border-radius: 0.5rem;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.homcal-hidden {
  display: none;
}

.homcal-level-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.homcal-level-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.homcal-level-label {
  font-size: 0.75rem;
  font-weight: 700;
  width: 3rem;
}

.homcal-level-input {
  width: 100%;
  border-radius: 0.25rem;
  border: 1px solid #e2e8f0;
  font-size: 0.75rem;
  padding: 0.25rem;
}

/* === Tarjeta de proyección de premios en sorteos === */
.homcal-prize-card {
  background: linear-gradient(to bottom right, #0339a6, #1e3a8a);
  border-radius: 0.75rem;
  padding: 1.5rem;
  color: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.homcal-prize-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-color: #ffd93d;
  filter: blur(60px);
  opacity: 0.2;
  border-radius: 9999px;
}

.homcal-prize-title {
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.homcal-prize-icon {
  width: 24px;
  height: 24px;
  color: #ffd93d;
}

.homcal-prize-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.homcal-prize-balance {
  text-align: right;
}

.homcal-prize-balance-label {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 0.25rem;
  color: #bfdbfe;
}

.homcal-prize-balance-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffd93d;
  line-height: 1.2;
}

.homcal-prize-table-scroll {
  overflow-x: auto;
}

.homcal-prize-table {
  width: 100%;
  font-size: 0.875rem;
  text-align: left;
  color: #bfdbfe;
}

.homcal-prize-thead {
  text-transform: uppercase;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.homcal-prize-th {
  padding: 0.75rem 1rem;
}

.homcal-prize-th-right {
  text-align: right;
}

.homcal-prize-tbody {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.homcal-prize-tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.homcal-prize-td {
  padding: 0.75rem 1rem;
}

.homcal-prize-td-right {
  text-align: right;
}

.homcal-prize-td-white {
  font-weight: 700;
  color: #ffffff;
}

.homcal-prize-td-yellow {
  font-weight: 700;
  color: #ffd93d;
}

.homcal-prize-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.homcal-prize-total-label {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.homcal-prize-total-amount {
  font-size: 1.875rem;
  font-weight: 900;
  color: #ffd93d;
}

/* === Estilos específicos para la pestaña de Sorteos (etiquetas ámbar) === */
.homcal-tags-box.homcal-amber {
  background-color: rgba(255, 217, 61, 0.05);
  border: 1px solid #fef3c7;
}

.homcal-tag-amber {
  background-color: #fef3c7;
  color: #a16207;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.homcal-tag-amber .homcal-tag-close {
  color: #d97706;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0;
  margin-left: 0.25rem;
}

.homcal-tag-amber .homcal-tag-close:hover {
  color: #a16207;
}

/* === Ajustes responsivos para móviles (botones apilados) === */
@media (max-width: 639px) {
  .homcal-button-group {
    flex-direction: column;
  }
  .homcal-button,
  .homcal-button-sorteo {
    width: 100%;
    justify-content: center;
  }
}

/*********************************** SECCION DE MOTIVACION *********************************/
.hommot-container {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.hommot-main {
  flex-grow: 1;
}

/* Section */
.hommot-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f8fafc;
}

/* Content wrapper */
.hommot-content-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1024px) {
  .hommot-content-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* CTA Box */
.hommot-cta-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-image: linear-gradient(to bottom right, #0339a6, #011445);
  padding: 64px 24px;
  border: 1px solid #1e3a8a;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .hommot-cta-box {
    padding: 96px 64px;
  }
}

@media (min-width: 1024px) {
  .hommot-cta-box {
    flex-direction: row;
    align-items: center;
    padding-left: 80px;
    padding-right: 80px;
  }
}

/* Pattern Background */
.hommot-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Blur Effect */
.hommot-blur {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 256px;
  height: 256px;
  background-color: #ffd93d;
  filter: blur(120px);
  opacity: 0.2;
  border-radius: 9999px;
}

/* Content */
.hommot-content {
  position: relative;
  max-width: 576px;
  text-align: center;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hommot-content {
    text-align: left;
  }
}

/* Title */
.hommot-title {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #ffffff;
}

@media (min-width: 640px) {
  .hommot-title {
    font-size: 36px;
  }
}

/* Description */
.hommot-description {
  margin-top: 16px;
  font-size: 18px;
  color: #bfdbfe;
  line-height: 1.75;
}

/* Button Wrapper */
.hommot-button-wrapper {
  position: relative;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hommot-button-wrapper {
    margin-top: 0;
    flex-shrink: 0;
  }
}

/* Button */
.hommot-button {
  border-radius: 12px;
  background-color: #ffd93d;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  color: #0339a6;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.hommot-button:hover {
  background-color: #ffffff;
  transform: scale(1.05);
}

/* Icon */
.hommot-icon {
  width: 24px;
  height: 24px;
}
/* =================================================================================
                                    FRANQUICIA
================================================================================= */
/*********************************** SECCION HERO  *********************************/
.franhe-container {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.franhe-main {
  flex-grow: 1;
}

/* Hero Section */
.franhe-hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0339a6;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .franhe-hero-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.franhe-hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuDWa_P_df01M2Whj4w2SN0NS73k-dnJK5dR_Vjhbz8QIiCGJl2uVtzH2PosBWWW1g6d9Pdvh3qhzfMPOVKuJlVuRMVicUi5EktcyfNrG-L2WZtB9ytNVoyeWPsn44AMeVLSejtmMdWcOvk5lCqzqIjehOonOsO5ACC_5rczbIfkfPwxtW5umlNZ7syVgZR4NpvQLkn9EPpPlpXDLqUdKGVKztigSZyq6waCDnOkxW7v92Bg6ADgks_gMGKVfNqPLnc4a4o_wG7s_XQX");
}

.franhe-hero-blur-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background-color: #3b82f6;
  filter: blur(150px);
  border-radius: 9999px;
  opacity: 0.3;
  pointer-events: none;
}

.franhe-hero-blur-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background-color: #ffd93d;
  filter: blur(150px);
  border-radius: 9999px;
  opacity: 0.2;
  pointer-events: none;
}

.franhe-hero-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 10;
  text-align: center;
}

@media (min-width: 1024px) {
  .franhe-hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Badge */
.franhe-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(30, 58, 138, 0.5);
  border: 1px solid rgba(96, 165, 250, 0.3);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.franhe-badge-dot {
  display: flex;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background-color: #ffd93d;
  animation: franhe-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes franhe-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.franhe-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Title */
.franhe-hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 1.5rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .franhe-hero-title {
    font-size: 3.75rem;
  }
}

.franhe-title-highlight {
  color: #ffd93d;
}

/* Hero Description */
.franhe-hero-description {
  font-size: 1.125rem;
  color: #bfdbfe;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

@media (min-width: 1024px) {
  .franhe-hero-description {
    font-size: 1.25rem;
  }
}

/* Buttons Container */
.franhe-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .franhe-buttons-container {
    flex-direction: row;
  }
}

/* Primary Button */
.franhe-button-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  background-color: #ffd93d;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0339a6;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.franhe-button-primary:hover {
  background-color: #fce96a;
  transform: scale(1.05);
}

/* Secondary Button */
.franhe-button-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.franhe-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Icon */
.franhe-icon {
  width: 1.5rem;
  height: 1.5rem;
}
/*********************************** SECCION RENTABILIDAD  *********************************/
.franinf-container {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.franinf-main {
  flex-grow: 1;
}

/* Benefits Section */
.franinf-benefits-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}

.franinf-benefits-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .franinf-benefits-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Benefits Header */
.franinf-benefits-header {
  text-align: center;
  margin-bottom: 4rem;
}

.franinf-benefits-subtitle {
  color: #0339a6;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.franinf-benefits-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: #0f172a;
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .franinf-benefits-title {
    font-size: 2.25rem;
  }
}

.franinf-benefits-description {
  color: #64748b;
  margin-top: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}

/* Benefits Grid */
.franinf-benefits-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .franinf-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .franinf-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Benefit Card */
.franinf-benefit-card {
  background-color: #f8fafc;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.franinf-benefit-card:hover {
  border-color: rgba(255, 217, 61, 0.5);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Card Decoration */
.franinf-card-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  border-bottom-left-radius: 9999px;
  margin-right: -3rem;
  margin-top: -3rem;
  opacity: 0.5;
  transition: transform 0.3s ease;
}

.franinf-benefit-card:hover .franinf-card-decoration {
  transform: scale(1.5);
}

.franinf-decoration-blue {
  background-color: #dbeafe;
}

.franinf-decoration-green {
  background-color: #dcfce7;
}

.franinf-decoration-purple {
  background-color: #f3e8ff;
}

/* Card Icon Wrapper */
.franinf-card-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 10;
}

.franinf-benefit-card:hover .franinf-card-icon-wrapper {
  transform: scale(1.1);
}

/* Card Icon */
.franinf-card-icon {
  width: 1.875rem;
  height: 1.875rem;
  color: #0339a6;
}

/* Card Title */
.franinf-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 10;
}

/* Card Description */
.franinf-card-description {
  color: #475569;
  line-height: 1.75;
  position: relative;
  z-index: 10;
}
/*********************************** SECCION PROSESO DE REGISTRO  *********************************/
.franrsi-container {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.franrsi-main {
  flex-grow: 1;
}

/* Steps Section */
.franrsi-steps-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0339a6;
  position: relative;
  overflow: hidden;
}

.franrsi-steps-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.franrsi-blur-top-right {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 24rem;
  height: 24rem;
  background-color: rgba(59, 130, 246, 0.2);
  border-radius: 9999px;
  filter: blur(96px);
}

.franrsi-blur-bottom-left {
  position: absolute;
  bottom: -6rem;
  left: -6rem;
  width: 24rem;
  height: 24rem;
  background-color: rgba(255, 217, 61, 0.1);
  border-radius: 9999px;
  filter: blur(96px);
}

.franrsi-steps-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .franrsi-steps-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Steps Header */
.franrsi-steps-header {
  text-align: center;
  margin-bottom: 4rem;
}

.franrsi-steps-badge {
  display: inline-block;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: 9999px;
  background-color: rgba(30, 64, 175, 0.5);
  border: 1px solid #1e40af;
  color: #ffd93d;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.franrsi-steps-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: #ffffff;
}

@media (min-width: 1024px) {
  .franrsi-steps-title {
    font-size: 2.25rem;
  }
}

.franrsi-steps-description {
  color: #bfdbfe;
  margin-top: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}

/* Steps Grid */
.franrsi-steps-grid {
  display: grid;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .franrsi-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

/* Connector Line */
.franrsi-connector-line {
  display: none;
}

@media (min-width: 768px) {
  .franrsi-connector-line {
    display: block;
    position: absolute;
    top: 3rem;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(to right, transparent, #1e40af, transparent);
  }
}

/* Step Item */
.franrsi-step-item {
  position: relative;
}

.franrsi-step-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Step Icon Box */
.franrsi-step-icon-box {
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  background-color: #0339a6;
  border: 1px solid #1e40af;
  box-shadow: 0 0 15px rgba(3, 57, 166, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
  transition: transform 0.3s ease;
}

.franrsi-step-item:hover .franrsi-step-icon-box {
  transform: translateY(-0.5rem);
}

.franrsi-step-icon-bg {
  position: absolute;
  inset: 0;
  background-color: rgba(30, 64, 175, 0.2);
  border-radius: 1rem;
  transform: rotate(6deg);
  transition: transform 0.3s ease;
}

.franrsi-step-item:hover .franrsi-step-icon-bg {
  transform: rotate(12deg);
}

.franrsi-step-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #ffd93d;
  position: relative;
  z-index: 20;
}

.franrsi-step-number {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: #ffd93d;
  border: 4px solid #0339a6;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.franrsi-number-text {
  color: #0339a6;
  font-weight: 900;
  font-size: 0.875rem;
}

/* Step Title */
.franrsi-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

/* Step Description */
.franrsi-step-description {
  color: #bfdbfe;
  font-size: 0.875rem;
  line-height: 1.75;
  padding-left: 1rem;
  padding-right: 1rem;
}
/*********************************** SECCION HERO  *********************************/
/*********************************** SECCION HERO  *********************************/
/* =================================================================================
                                    ACADEMIA
  ================================================================================= */
.acade-main {
  flex-grow: 1;
  padding-bottom: 4rem;
}

.acade-hero {
  background-color: #0339a6;
  padding-top: 3rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.acade-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 24px 24px;
}

.acade-container {
  margin: 0 auto;
  max-width: 1280px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 10;
}

.acade-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
}

.acade-hero-left {
  flex: 1;
}

.acade-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(30, 58, 138, 0.5);
  border: 1px solid #1d4ed8;
  padding: 0.375rem 1rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}

.acade-icon {
  width: 1rem;
  height: 1rem;
  color: #ffd93d;
}

.acade-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #bfdbfe;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.acade-title {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
}

.acade-title-highlight {
  color: #ffd93d;
}

.acade-subtitle {
  color: #bfdbfe;
  margin-top: 0.5rem;
  font-size: 1.125rem;
}

.acade-progress-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  min-width: 240px;
}

.acade-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.acade-progress-label {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
}

.acade-progress-percentage {
  color: #ffd93d;
  font-weight: 700;
  font-size: 0.875rem;
}

.acade-progress-bar {
  width: 100%;
  background-color: rgba(30, 58, 138, 0.5);
  border-radius: 9999px;
  height: 0.625rem;
}

.acade-progress-fill {
  background-color: #ffd93d;
  height: 0.625rem;
  border-radius: 9999px;
  transition: width 0.5s ease;
}

.acade-progress-text {
  color: #93c5fd;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.acade-content {
  margin: 0 auto;
  max-width: 1280px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 20;
}

.acade-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.acade-main-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.acade-video-wrapper {
  background-color: #000;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  border: 4px solid #ffffff;
}

.youtube-player-container {
  width: 100%;
  height: 100%;
}

.acade-lesson-details {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  padding: 2rem;
}

.acade-details-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.acade-details-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0339a6;
  margin-bottom: 0.5rem;
}

.acade-details-description {
  color: #475569;
  line-height: 1.75;
}

.acade-navigation {
  border-top: 1px solid #f1f5f9;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.acade-nav-btn {
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
  background: none;
}

.acade-nav-disabled {
  color: #cbd5e1;
  cursor: not-allowed;
  opacity: 0.6;
}

.acade-nav-next {
  background-color: #0339a6;
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.1);
}

.acade-nav-next:hover:not(:disabled) {
  background-color: #1e3a8a;
}

.acade-sidebar {
  grid-column: span 1;
}

.acade-course-menu {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(148, 163, 184, 0.1),
    0 8px 10px -6px rgba(148, 163, 184, 0.1);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  position: sticky;
  top: 6rem;
}

.acade-menu-header {
  background-color: #0339a6;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

.acade-menu-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.acade-menu-title .acade-icon {
  color: #ffd93d;
}

.acade-menu-subtitle {
  color: #bfdbfe;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.acade-lesson-list {
  max-height: calc(100vh - 250px);
  overflow-y: auto;
}

.acade-lesson-list::-webkit-scrollbar {
  width: 6px;
}

.acade-lesson-list::-webkit-scrollbar-track {
  background: #f1f5f9;
}

.acade-lesson-list::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 20px;
}

.acade-lesson-item {
  padding: 1rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  gap: 0.75rem;
  transition: background-color 0.3s;
  cursor: pointer;
}

.acade-lesson-item:hover:not(.acade-lesson-locked) {
  background-color: #f8fafc;
}

.acade-lesson-active {
  background-color: rgba(239, 246, 255, 0.5);
  border-left: 4px solid #ffd93d;
}

.acade-lesson-active:hover {
  background-color: #eff6ff;
}

.acade-lesson-number,
.acade-lesson-lock {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.acade-lesson-number {
  background-color: #0339a6;
  color: #ffffff;
}

.acade-lesson-lock {
  background-color: #f1f5f9;
  color: #cbd5e1;
  border: 1px solid #e2e8f0;
}

.acade-lesson-content {
  flex: 1;
}

.acade-lesson-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0339a6;
}

.acade-lesson-locked .acade-lesson-title {
  color: #475569;
}

.acade-lesson-desc {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.acade-lesson-locked {
  opacity: 0.7;
  cursor: not-allowed;
}

.acade-playing-badge {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2563eb;
  background-color: #dbeafe;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

.acade-icon-small {
  width: 0.875rem;
  height: 0.875rem;
}

@media (min-width: 768px) {
  .acade-hero-content {
    flex-direction: row;
    align-items: flex-end;
  }
  .acade-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .acade-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .acade-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .acade-grid {
    grid-template-columns: 2fr 1fr;
  }
  .acade-lesson-details {
    padding: 2rem;
  }
}
/* =================================================================================
                                    CONTACTO
================================================================================= */

/* =================================================================================
                                    CONTACTO
================================================================================= */
.hocon-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hocon-main {
  flex-grow: 1;
}

.hocon-contact-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hocon-contact-section {
    padding: 6rem 0;
  }
}

.hocon-bg-circle-1,
.hocon-bg-circle-2 {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  z-index: 0;
}

.hocon-bg-circle-1 {
  top: 0;
  right: 0;
  transform: translate(-25%, -25%);
  width: 800px;
  height: 800px;
  background: rgba(191, 219, 254, 0.5);
  filter: blur(100px);
}

.hocon-bg-circle-2 {
  bottom: 0;
  left: 0;
  transform: translate(-25%, 25%);
  width: 600px;
  height: 600px;
  background: rgba(255, 217, 61, 0.6);
  filter: blur(80px);
}

.hocon-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 10;
}

.hocon-text-center {
  text-align: center;
}

.hocon-mb-16 {
  margin-bottom: 4rem;
}

.hocon-max-w-2xl {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hocon-heading {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: #0f172a;
}

@media (min-width: 1024px) {
  .hocon-heading {
    font-size: 3rem;
  }
}

.hocon-heading span {
  background: linear-gradient(to right, #0339a6, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hocon-lead {
  font-size: 1.125rem;
  color: #475569;
}

.hocon-grid-contact {
  display: grid;
  gap: 3rem;
  margin-top: 4rem;
}

@media (min-width: 1024px) {
  .hocon-grid-contact {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }
}

.hocon-form-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hocon-form-card {
    padding: 3rem;
  }
}

.hocon-form-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background: linear-gradient(to right, #0339a6, #ffd93d);
}

.hocon-form-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hocon-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.hocon-form-group {
  margin-bottom: 1.5rem;
}

.hocon-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.75rem;
}

.hocon-input-wrapper {
  position: relative;
}

.hocon-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hocon-input,
.hocon-select,
.hocon-textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 1rem;
  border: 2px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.9375rem;
  outline: none;
  transition: all 0.3s ease;
  line-height: 1.5;
  font-family: "Manrope", sans-serif;
  box-sizing: border-box;
}

.hocon-textarea {
  min-height: 180px;
  resize: vertical;
  padding-top: 1rem;
}

.hocon-input::placeholder,
.hocon-textarea::placeholder {
  color: #94a3b8;
}

.hocon-input:focus,
.hocon-select:focus,
.hocon-textarea:focus {
  border-color: #0339a6;
  box-shadow: 0 0 0 4px rgba(3, 57, 166, 0.1);
  background: #ffffff;
}

.hocon-submit-wrapper {
  padding-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.hocon-submit-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  background: #0339a6;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(3, 57, 166, 0.25);
}

@media (max-width: 640px) {
  .hocon-submit-wrapper {
    justify-content: stretch;
  }

  .hocon-submit-btn {
    width: 100%;
  }
}

.hocon-submit-btn:hover {
  background: #fbbf24;
  box-shadow: 0 6px 20px rgba(3, 57, 166, 0.35);
  transform: translateY(-2px);
}

.hocon-submit-btn:active {
  transform: translateY(0);
}

.hocon-info-card {
  background: #0339a6;
  color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 32, 100, 0.2);
  position: relative;
  overflow: hidden;
}

.hocon-info-card::before,
.hocon-info-card::after {
  content: "";
  position: absolute;
  border-radius: 9999px;
  mix-blend-mode: overlay;
}

.hocon-info-card::before {
  top: -3rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
  background: #3b82f6;
  opacity: 0.3;
  filter: blur(2rem);
}

.hocon-info-card::after {
  bottom: 0;
  left: 0;
  width: 8rem;
  height: 8rem;
  background: #ffd93d;
  opacity: 0.2;
  filter: blur(1rem);
}

.hocon-info-card > * {
  position: relative;
  z-index: 10;
}

.hocon-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hocon-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hocon-contact-icon-bg {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hocon-contact-icon-bg svg {
  color: #ffd93d;
  width: 20px;
  height: 20px;
}

.hocon-contact-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hocon-contact-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hocon-contact-value:hover {
  color: #ffd93d;
}

.hocon-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.hocon-social-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(191, 219, 254, 0.8);
  margin-bottom: 1rem;
}

.hocon-social-links {
  display: flex;
  gap: 1rem;
}

.hocon-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: white;
  color: #0339a6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.hocon-social-link:hover {
  background: #ffd93d;
  color: #0339a6;
  transform: translateY(-0.25rem);
}

.hocon-space-y-8 > * + * {
  margin-top: 2rem;
}

.hocon-cta-section {
  padding: 5rem 0;
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
}

.hocon-cta-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(to bottom right, #0339a6, #011445);
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2.5rem;
  border: 1px solid rgba(30, 58, 138, 0.6);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
  .hocon-cta-card {
    padding: 5rem 4rem;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.hocon-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 24px 24px;
}

.hocon-cta-content {
  position: relative;
  z-index: 10;
  max-width: 36rem;
}

.hocon-cta-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .hocon-cta-title {
    font-size: 2.25rem;
  }
}

.hocon-cta-text {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(219, 234, 254, 0.9);
}

.hocon-cta-button {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: white;
  color: #0339a6;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, transform 0.2s;
}

.hocon-cta-button:hover {
  background: #ffd93d;
}

/* SVG inline style */
.hocon-svg {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  stroke: currentColor;
  stroke-width: 0;
  fill: currentColor;
  flex-shrink: 0;
}
/* =================================================================================
                                    POLITICAS Y PRIVACIDAD 
  ================================================================================= */
.popri-light {
  color-scheme: light;
}

.popri-flex-grow {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ------ Hero Section ------ */
.popri-section-hero {
  position: relative;
  background-color: #0339a6;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .popri-section-hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.popri-section-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 24px 24px;
}

.popri-hero-radial {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background-color: rgba(59, 130, 246, 0.2);
  filter: blur(120px);
  border-radius: 9999px;
  pointer-events: none;
  transform: translateX(33.333333%) translateY(-33.333333%);
}

.popri-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}

.popri-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(30, 58, 138, 0.5);
  border: 1px solid #3b82f6;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.popri-hero-badge svg {
  color: #ffd93d;
  width: 14px;
  height: 14px;
}

.popri-hero-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #dbeafe;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.popri-hero-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .popri-hero-title {
    font-size: 3rem;
  }
}

.popri-hero-title .popri-highlight {
  color: #ffd93d;
}

.popri-hero-subtitle {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 400;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
  margin-bottom: 1rem;
}

/* ------ Main Content Section ------ */
.popri-section-main {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8fafc;
}

@media (min-width: 1024px) {
  .popri-section-main {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.popri-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.popri-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .popri-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 3rem;
  }
}

.popri-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .popri-sidebar {
    display: block;
    grid-column: span 3 / span 3;
  }
}

.popri-sticky {
  position: sticky;
  top: 4.5rem;
}

.popri-sidebar-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.popri-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  height: calc(100vh - 10rem);
  overflow-y: auto;
  padding-right: 0.5rem;
  -ms-overflow-style: auto;
  scrollbar-width: auto;
}

.popri-sidebar-nav::-webkit-scrollbar {
  width: 8px;
}

.popri-sidebar-nav::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.popri-sidebar-nav::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.popri-sidebar-nav::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.popri-sidebar-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.popri-sidebar-link:hover,
.popri-active-link {
  color: #0339a6;
  background-color: #fbbf24;
}

.popri-content-area {
  background-color: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.05), 0 0 0 1px #e2e8f0;
  padding: 2rem;
}

@media (min-width: 1024px) {
  .popri-content-area {
    grid-column: span 9 / span 9;
    padding: 3rem;
  }
}

.popri-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.popri-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0339a6;
}

.popri-section-icon-wrapper {
  display: none;
}

@media (min-width: 640px) {
  .popri-section-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    border-radius: 9999px;
    background-color: #eff6ff;
    color: #0339a6;
  }
}

.popri-section-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.popri-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.popri-divider {
  height: 1px;
  background-color: #e2e8f0;
}

.popri-section-item {
  scroll-margin-top: 8rem;
}

.popri-section-item-header {
  display: flex;
  gap: 1rem;
}

.popri-section-icon {
  margin-top: 0.25rem;
}

.popri-section-icon svg {
  width: 24px;
  height: 24px;
  color: #0339a6;
}

.popri-section-icon--primary svg {
  color: #ffd93d;
}

.popri-section-icon--danger svg {
  color: #ef4444;
}

.popri-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0339a6;
  margin-bottom: 0.75rem;
}

.popri-section-text {
  color: #475569;
  line-height: 1.625;
  margin-bottom: 1rem;
}

.popri-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.popri-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #475569;
  font-size: 0.9375rem;
}

.popri-list li svg {
  width: 14px;
  height: 14px;
  color: #ffd93d;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.popri-list-disc {
  list-style-type: disc;
  padding-left: 1.25rem;
}

.popri-list-disc li {
  display: list-item;
  gap: 0;
}

.popri-highlight-box {
  background-color: #eff6ff;
  border-left: 4px solid #0339a6;
  padding: 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin-bottom: 1rem;
}

.popri-highlight-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0;
}

.popri-grid-2 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .popri-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.popri-grid-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
}

.popri-grid-item svg {
  color: #f87171;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.popri-contact-link {
  font-weight: 700;
  color: #0339a6;
  text-decoration: none;
}
.popri-contact-link:hover {
  text-decoration: underline;
}

.popri-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  color: white;
  z-index: 10000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.popri-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.popri-toast.error {
  background-color: #e74c3c;
}

.popri-toast.success {
  background-color: #2ecc71;
}

/* =================================================================================
                                    TERMINOS Y CONDICIONES 
  ================================================================================= */
.terco-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

/* === Sección de encabezado === */
.terco-hero {
  position: relative;
  background-color: #0339a6;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .terco-hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.terco-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 24px 24px;
}

.terco-hero-subtext {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 400;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
  margin-bottom: 1rem;
}

.terco-hero-radial {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background-color: rgba(59, 130, 246, 0.2);
  filter: blur(120px);
  border-radius: 9999px;
  pointer-events: none;
  transform: translateX(33.333333%) translateY(-33.333333%);
}

.terco-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}

.terco-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(30, 58, 138, 0.5);
  border: 1px solid #3b82f6;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.terco-hero-badge svg {
  color: #ffd93d;
  width: 14px;
  height: 14px;
}

.terco-hero-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #dbeafe;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.terco-hero-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .terco-hero-title {
    font-size: 3rem;
  }
}

.terco-hero-title .terco-highlight {
  color: #ffd93d;
}

.terco-hero-text {
  color: #475569;
  line-height: 1.625;
  margin-bottom: 1rem;
}

/* === Contenido principal === */
.terco-main-content {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8fafc;
}
@media (min-width: 1024px) {
  .terco-main-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.terco-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.terco-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .terco-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 3rem;
  }
}

.terco-sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .terco-sidebar {
    display: block;
    grid-column: span 3 / span 3;
  }
}

.terco-sticky {
  position: sticky;
  top: 4.5rem;
}

.terco-sidebar-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.terco-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  height: calc(100vh - 10rem);
  overflow-y: auto;
  padding-right: 0.5rem;
  /* Scrollbar visible en todos los navegadores */
  -ms-overflow-style: auto; /* IE y Edge */
  scrollbar-width: auto; /* Firefox */
}

/* Estilo del scrollbar en WebKit (Chrome, Safari) - opcional pero recomendado */
.terco-sidebar-nav::-webkit-scrollbar {
  width: 8px;
}

.terco-sidebar-nav::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.terco-sidebar-nav::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.terco-sidebar-nav::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.terco-sidebar-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

/* Estilo compartido: hover y activo */
.terco-sidebar-nav a:hover,
.terco-sidebar-nav a.terco-active {
  color: #0339a6;
  background-color: #fbbf24;
}

.terco-content {
  background-color: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.05), 0 0 0 1px #e2e8f0;
  padding: 2rem;
}
@media (min-width: 1024px) {
  .terco-content {
    grid-column: span 9 / span 9;
    padding: 3rem;
  }
}

.terco-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.terco-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0339a6;
}

.terco-section-icon {
  display: none;
}
@media (min-width: 640px) {
  .terco-section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    border-radius: 9999px;
    background-color: #eff6ff;
    color: #0339a6;
  }
}

.terco-section-icon svg {
  width: 32px;
  height: 32px;
}

.terco-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.terco-divider {
  height: 1px;
  background-color: #e2e8f0;
}

.terco-section-item {
  scroll-margin-top: 8rem;
}

.terco-section-item-header {
  display: flex;
  gap: 1rem;
}

.terco-section-item-icon {
  margin-top: 0.25rem;
}

.terco-section-item-icon svg {
  width: 24px;
  height: 24px;
  color: #0339a6;
}

.terco-section-item-icon.terco-icon-primary svg {
  color: #ffd93d;
}

.terco-section-item-icon.terco-icon-danger svg {
  color: #ef4444;
}

.terco-section-item-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0339a6;
  margin-bottom: 0.75rem;
}

.terco-section-item-content p {
  color: #475569;
  line-height: 1.625;
  margin-bottom: 1rem;
}

.terco-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.terco-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #475569;
  font-size: 0.9375rem;
}

.terco-list li svg {
  width: 14px;
  height: 14px;
  color: #ffd93d;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.terco-list-disc {
  list-style-type: disc;
  padding-left: 1.25rem;
}

.terco-list-disc li {
  display: list-item;
  gap: 0;
}

.terco-alert {
  background-color: #eff6ff;
  border-left: 4px solid #0339a6;
  padding: 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin-bottom: 1rem;
}

.terco-alert p {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0;
}

.terco-grid-2 {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .terco-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.terco-grid-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
}

.terco-grid-item svg {
  color: #f87171;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.terco-contact-link {
  font-weight: 700;
  color: #0339a6;
  text-decoration: none;
}

.terco-contact-link:hover {
  text-decoration: underline;
}
/* =================================================================================
                                  DESCARGO DE RESPONSABILIDAD
  ================================================================================= */
.desre-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

/* === Sección de encabezado === */
.desre-hero {
  position: relative;
  background-color: #0339a6;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .desre-hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.desre-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 24px 24px;
}

.desre-hero-subtext {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 400;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
  margin-bottom: 1rem;
}

.desre-hero-radial {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background-color: rgba(59, 130, 246, 0.2);
  filter: blur(120px);
  border-radius: 9999px;
  pointer-events: none;
  transform: translateX(33.333333%) translateY(-33.333333%);
}

.desre-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}

.desre-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(30, 58, 138, 0.5);
  border: 1px solid #3b82f6;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.desre-hero-badge svg {
  color: #ffd93d;
  width: 14px;
  height: 14px;
}

.desre-hero-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #dbeafe;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.desre-hero-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .desre-hero-title {
    font-size: 3rem;
  }
}

.desre-hero-title .desre-highlight {
  color: #ffd93d;
}

.desre-hero-text {
  color: #475569;
  line-height: 1.625;
  margin-bottom: 1rem;
}

/* === Contenido principal === */
.desre-main-content {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8fafc;
}
@media (min-width: 1024px) {
  .desre-main-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.desre-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.desre-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .desre-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 3rem;
  }
}

.desre-sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .desre-sidebar {
    display: block;
    grid-column: span 3 / span 3;
  }
}

.desre-sticky {
  position: sticky;
  top: 4.5rem;
}

.desre-sidebar-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.desre-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  height: calc(100vh - 10rem);
  overflow-y: auto;
  padding-right: 0.5rem;
  /* Scrollbar visible en todos los navegadores */
  -ms-overflow-style: auto; /* IE y Edge */
  scrollbar-width: auto; /* Firefox */
}

/* Estilo del scrollbar en WebKit (Chrome, Safari) */
.desre-sidebar-nav::-webkit-scrollbar {
  width: 8px;
}

.desre-sidebar-nav::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.desre-sidebar-nav::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.desre-sidebar-nav::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.desre-sidebar-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

/* Estilo compartido: hover y activo */
.desre-sidebar-nav a:hover,
.desre-sidebar-nav a.desre-active {
  color: #0339a6;
  background-color: #fbbf24;
}

.desre-content {
  background-color: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.05), 0 0 0 1px #e2e8f0;
  padding: 2rem;
}
@media (min-width: 1024px) {
  .desre-content {
    grid-column: span 9 / span 9;
    padding: 3rem;
  }
}

.desre-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.desre-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0339a6;
}

.desre-section-subtitle {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.desre-section-icon {
  display: none;
}
@media (min-width: 640px) {
  .desre-section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    border-radius: 9999px;
    background-color: #fef9c3;
    border: 1px solid #fef08a;
    color: #ca8a04;
  }
}

.desre-section-icon svg {
  width: 32px;
  height: 32px;
}

.desre-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.desre-divider {
  height: 1px;
  background-color: #e2e8f0;
}

.desre-section-item {
  scroll-margin-top: 8rem;
}

.desre-section-item-header {
  display: flex;
  gap: 1rem;
}

.desre-section-item-icon {
  margin-top: 0.25rem;
}

.desre-section-item-icon svg {
  width: 24px;
  height: 24px;
  color: #0339a6;
}

.desre-section-item-icon.desre-icon-primary svg {
  color: #ffd93d;
}

.desre-section-item-icon.desre-icon-danger svg {
  color: #ef4444;
}

.desre-section-item-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0339a6;
  margin-bottom: 0.75rem;
}

.desre-section-item-content p {
  color: #475569;
  line-height: 1.625;
  margin-bottom: 1rem;
}

.desre-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.desre-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #475569;
  font-size: 0.9375rem;
}

.desre-list li svg {
  width: 14px;
  height: 14px;
  color: #ffd93d;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.desre-list-disc {
  list-style-type: disc;
  padding-left: 1.25rem;
}

.desre-list-disc li {
  display: list-item;
  gap: 0;
}

.desre-alert {
  background-color: #dbeafe;
  border-left: 4px solid #0339a6;
  padding: 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin-bottom: 1rem;
}

.desre-alert p {
  font-size: 0.875rem;
  color: #1e40af;
  margin: 0;
}

.desre-warning-box {
  background-color: #fef9c3;
  border: 1px solid #fef08a;
  padding: 1.25rem;
  border-radius: 0.75rem;
  text-align: center;
  margin-top: 1rem;
}

.desre-warning-box p {
  font-size: 0.875rem;
  font-weight: 700;
  color: #92400e;
  line-height: 1.625;
  margin: 0;
}

.desre-grid-2 {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .desre-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.desre-grid-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
}

.desre-grid-item svg {
  color: #f87171;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.desre-contact-link {
  font-weight: 700;
  color: #0339a6;
  text-decoration: none;
}

.desre-contact-link:hover {
  text-decoration: underline;
}
/* =================================================================================
                                    LOGIN DE USUARIOS
  ================================================================================= */
.logusr-body {
  font-family: "Manrope", sans-serif;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: #003082;
  background-image: radial-gradient(circle at center, #003996 0%, #003082 100%);
}

/* Background Elements */
.logusr-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.logusr-tech-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: 40px 40px;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(
    circle at center,
    black 40%,
    transparent 100%
  );
}

.logusr-blob {
  position: absolute;
  border-radius: 9999px;
}

.logusr-blob-1 {
  top: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background-color: rgba(7, 44, 112, 0.6);
  filter: blur(100px);
  animation: logusr-float-slow 15s ease-in-out infinite;
  mix-blend-mode: screen;
  display: none;
}

.logusr-blob-2 {
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background-color: rgba(245, 166, 35, 0.2);
  filter: blur(80px);
  animation: logusr-float-medium 10s ease-in-out infinite reverse;
  mix-blend-mode: overlay;
  display: none;
}

.logusr-blob-3 {
  bottom: -20%;
  left: 20%;
  width: 700px;
  height: 700px;
  background-color: rgba(59, 130, 246, 0.2);
  filter: blur(120px);
  animation: logusr-float-fast 12s ease-in-out infinite;
  display: none;
}

.logusr-blob-mobile-1 {
  top: -10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background-color: rgba(7, 44, 112, 0.6);
  filter: blur(60px);
  animation: logusr-float-slow 15s ease-in-out infinite;
  mix-blend-mode: screen;
  display: block;
}

.logusr-blob-mobile-2 {
  bottom: 0%;
  right: 0%;
  width: 250px;
  height: 250px;
  background-color: rgba(245, 166, 35, 0.2);
  filter: blur(60px);
  animation: logusr-float-medium 10s ease-in-out infinite reverse;
  mix-blend-mode: overlay;
  display: block;
}

.logusr-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  animation: logusr-pulse-slow 8s ease-in-out infinite;
  z-index: 0;
}

@media (min-width: 640px) {
  .logusr-blob-1,
  .logusr-blob-2,
  .logusr-blob-3 {
    display: block;
  }
  .logusr-blob-mobile-1,
  .logusr-blob-mobile-2 {
    display: none;
  }
}

/* Animations */
@keyframes logusr-float-slow {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

@keyframes logusr-float-medium {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

@keyframes logusr-float-fast {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

@keyframes logusr-pulse-slow {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes logusr-fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Language Selector */
.logusr-language-selector {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 50;
}

.logusr-language-wrapper {
  position: relative;
}

.logusr-language-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 8px;
  padding: 8px 12px;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.logusr-language-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.logusr-icon {
  flex-shrink: 0;
}

.logusr-lang-text {
  display: none;
}

.logusr-chevron {
  transition: transform 0.3s;
}

.logusr-language-wrapper:hover .logusr-chevron {
  transform: rotate(180deg);
}

.logusr-language-dropdown {
  position: absolute;
  right: 0;
  margin-top: 8px;
  width: 128px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 4px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  transform: scale(0.95);
  transform-origin: top right;
}

.logusr-language-wrapper:hover .logusr-language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.logusr-lang-option {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #64748b;
  text-decoration: none;
  transition: background-color 0.2s;
}

.logusr-lang-option:hover {
  background-color: #f1f5f9;
}

.logusr-lang-active {
  color: #0b409c;
  font-weight: 500;
}

@media (min-width: 640px) {
  .logusr-language-selector {
    top: 24px;
    right: 24px;
  }

  .logusr-lang-text {
    display: inline;
  }
}

/* Tab Inputs */
.logusr-tab-input {
  display: none;
}

/* Container */
.logusr-container {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 8px;
  overflow-y: auto;
}

@media (min-width: 640px) {
  .logusr-container {
    height: auto;
    padding: 16px;
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  .logusr-container {
    padding: 24px;
  }
}

/* Card */
.logusr-card {
  width: 100%;
  max-width: 340px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  position: relative;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  margin: auto;
  max-height: 95vh;
  overflow-y: auto;
}

.logusr-card::-webkit-scrollbar {
  width: 4px;
}

.logusr-card::-webkit-scrollbar-track {
  background: transparent;
}

.logusr-card::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

@media (min-width: 640px) {
  .logusr-card {
    max-width: 420px;
    border-radius: 24px;
    padding: 24px;
  }
}

@media (min-width: 768px) {
  .logusr-card {
    max-width: 540px;
    padding: 32px;
  }
}

@media (min-width: 1024px) {
  .logusr-card {
    max-width: 620px;
  }
}

/* Header */
.logusr-header {
  text-align: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .logusr-header {
    margin-bottom: 20px;
  }
}

.logusr-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

@media (min-width: 640px) {
  .logusr-brand {
    gap: 12px;
    margin-bottom: 8px;
  }
}

.logusr-logo-wrapper {
  position: relative;
  flex-shrink: 0;
}
.logusr-logo img {
  width: 30px;
}
.logusr-logo-glow {
  position: absolute;
  inset: 0;
  background-color: rgba(245, 166, 35, 0.2);
  filter: blur(40px);
  border-radius: 9999px;
  transform: scale(1.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.logusr-logo {
  position: relative;
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0b409c;
  border-radius: 9999px;
  box-shadow: 0 10px 25px -5px rgba(35, 109, 245, 0.3);
  transition: transform 0.3s;
}

.logusr-logo:hover {
  transform: scale(1.05);
}

@media (min-width: 640px) {
  .logusr-logo {
    height: 44px;
    width: 44px;
  }
}

@media (min-width: 768px) {
  .logusr-logo {
    height: 48px;
    width: 48px;
  }
}

.logusr-title {
  font-size: 18px;
  font-weight: 800;
  color: #0b409c;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-align: left;
}

@media (min-width: 640px) {
  .logusr-title {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .logusr-title {
    font-size: 24px;
  }
}

.logusr-subtitle {
  color: #64748b;
  font-weight: 500;
  font-size: 10px;
  max-width: 260px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .logusr-subtitle {
    font-size: 12px;
    max-width: 448px;
  }
}

/* Tabs */
.logusr-tabs {
  margin-bottom: 12px;
  padding: 0;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .logusr-tabs {
    margin-bottom: 20px;
    padding: 0 16px;
  }
}

.logusr-tabs-container {
  position: relative;
  display: flex;
  background-color: #f3f4f6;
  padding: 4px;
  border-radius: 12px;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  max-width: 220px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .logusr-tabs-container {
    border-radius: 16px;
    max-width: 260px;
  }
}

.logusr-toggle-bg {
  position: absolute;
  left: 4px;
  top: 4px;
  bottom: 4px;
  width: calc(50% - 4px);
  background-color: #0b409c;
  border-radius: 9.6px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease-out;
  z-index: 0;
}

@media (min-width: 640px) {
  .logusr-toggle-bg {
    border-radius: 13.6px;
  }
}

#logusr-tab-login:checked ~ .logusr-container .logusr-toggle-bg {
  transform: translateX(0%);
}

#logusr-tab-register:checked ~ .logusr-container .logusr-toggle-bg {
  transform: translateX(100%);
}

.logusr-tab-label {
  flex: 1;
  text-align: center;
  padding: 6px 0;
  font-size: 10px;
  font-weight: 700;
  z-index: 10;
  cursor: pointer;
  transition: color 0.3s;
  user-select: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}

@media (min-width: 640px) {
  .logusr-tab-label {
    padding: 8px 0;
    font-size: 14px;
  }
}

.logusr-tab-label:hover {
  color: #0f172a;
}

#logusr-tab-login:checked ~ .logusr-container #logusr-label-login {
  color: white;
}

#logusr-tab-register:checked ~ .logusr-container #logusr-label-register {
  color: white;
}

/* Views */
.logusr-view {
  display: none;
  width: 100%;
}

#logusr-tab-login:checked ~ .logusr-container .logusr-view-login {
  display: block;
  animation: logusr-fadeIn 0.3s ease-out forwards;
}

#logusr-tab-register:checked ~ .logusr-container .logusr-view-register {
  display: block;
  animation: logusr-fadeIn 0.3s ease-out forwards;
}

/* Wallet Grid */
.logusr-wallet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 640px) {
  .logusr-wallet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Wallet Button */
.logusr-wallet-button {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background-color: white;
  padding: 8px;
  transition: all 0.3s;
  width: 100%;
  cursor: pointer;
}

.logusr-wallet-button:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.logusr-wallet-button:active {
  transform: scale(0.98);
}

@media (min-width: 640px) {
  .logusr-wallet-button {
    flex-direction: column;
    justify-content: center;
    padding: 16px;
  }
}

.logusr-wallet-button:hover .logusr-wallet-icon {
  transform: scale(1.1);
}

/* Wallet Icons */
.logusr-wallet-icon {
  display: flex;
  height: 32px;
  width: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .logusr-wallet-icon {
    height: 40px;
    width: 40px;
  }
}

.logusr-wallet-icon-metamask {
  background-color: rgba(254, 243, 199, 0.5);
}

.logusr-wallet-button:hover .logusr-wallet-icon-metamask {
  background-color: rgba(254, 243, 199, 1);
}

.logusr-wallet-icon-safepal {
  background-color: rgba(219, 234, 254, 0.5);
}

.logusr-wallet-button:hover .logusr-wallet-icon-safepal {
  background-color: rgba(219, 234, 254, 1);
}

.logusr-wallet-icon-walletconnect {
  background-color: rgba(224, 231, 255, 0.5);
}

.logusr-wallet-button:hover .logusr-wallet-icon-walletconnect {
  background-color: rgba(224, 231, 255, 1);
}

.logusr-wallet-icon-solana {
  background-color: rgba(243, 232, 255, 0.5);
}

.logusr-wallet-button:hover .logusr-wallet-icon-solana {
  background-color: rgba(243, 232, 255, 1);
}

/* Wallet Info */
.logusr-wallet-info {
  text-align: left;
  flex: 1;
}

@media (min-width: 640px) {
  .logusr-wallet-info {
    text-align: center;
  }
}

.logusr-wallet-name {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  transition: color 0.3s;
}

@media (min-width: 640px) {
  .logusr-wallet-name {
    font-size: 14px;
  }
}

.logusr-wallet-button:hover .logusr-wallet-name {
  color: #f5a623;
}

.logusr-wallet-desc {
  display: none;
  font-size: 10px;
  color: #cbd5e1;
  margin-top: 2px;
}

@media (min-width: 640px) {
  .logusr-wallet-desc {
    display: block;
  }
}

/* Wallet Check Icon */
.logusr-wallet-check {
  position: absolute;
  top: 8px;
  right: 8px;
  opacity: 0;
  transition: opacity 0.3s;
  color: #f5a623;
  display: none;
}

.logusr-wallet-button:hover .logusr-wallet-check {
  opacity: 1;
}

@media (min-width: 640px) {
  .logusr-wallet-check {
    display: block;
  }
}

.logusr-check-blue {
  color: #2563eb;
}

.logusr-check-indigo {
  color: #6366f1;
}

.logusr-check-purple {
  color: #9333ea;
}

/* Wallet Arrow */
.logusr-wallet-arrow {
  opacity: 0;
  transition: opacity 0.3s;
  margin-left: auto;
  color: #f5a623;
  display: block;
}

.logusr-wallet-button:hover .logusr-wallet-arrow {
  opacity: 1;
}

@media (min-width: 640px) {
  .logusr-wallet-arrow {
    display: none;
  }
}

.logusr-arrow-blue {
  color: #2563eb;
}

.logusr-arrow-indigo {
  color: #6366f1;
}

.logusr-arrow-purple {
  color: #9333ea;
}

/* Hover Colors */
.logusr-wallet-button:hover {
  border-color: #f5a623;
  background-color: rgba(254, 243, 199, 0.5);
}

.logusr-wallet-button:nth-child(2):hover {
  border-color: #3b82f6;
  background-color: rgba(239, 246, 255, 0.5);
}

.logusr-wallet-button:nth-child(2):hover .logusr-wallet-name {
  color: #2563eb;
}

.logusr-wallet-button:nth-child(3):hover {
  border-color: #6366f1;
  background-color: rgba(238, 242, 255, 0.5);
}

.logusr-wallet-button:nth-child(3):hover .logusr-wallet-name {
  color: #6366f1;
}

.logusr-wallet-button:nth-child(4):hover {
  border-color: #a855f7;
  background-color: rgba(250, 245, 255, 0.5);
}

.logusr-wallet-button:nth-child(4):hover .logusr-wallet-name {
  color: #9333ea;
}

/* Help */
.logusr-help {
  text-align: center;
  padding-top: 12px;
}

@media (min-width: 640px) {
  .logusr-help {
    padding-top: 16px;
  }
}

.logusr-help-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(11, 64, 156, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.logusr-help-link:hover {
  color: #0b409c;
}

/* Register View */
.logusr-register-intro {
  text-align: center;
  margin-bottom: 12px;
  padding: 0 8px;
}

@media (min-width: 640px) {
  .logusr-register-intro {
    margin-bottom: 20px;
  }
}

.logusr-register-intro p {
  color: #64748b;
  font-size: 10px;
  line-height: 1.6;
  max-width: 384px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .logusr-register-intro p {
    font-size: 12px;
  }
}

.logusr-wallet-name-register {
  flex: 1;
  text-align: left;
}

@media (min-width: 640px) {
  .logusr-wallet-name-register {
    text-align: center;
  }
}

/* Wallet Add Icon */
.logusr-wallet-add {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #f5a623;
  opacity: 0;
  transition: opacity 0.3s;
  margin-left: 0;
  display: none;
}

.logusr-wallet-button:hover .logusr-wallet-add {
  opacity: 1;
}

@media (min-width: 640px) {
  .logusr-wallet-add {
    display: block;
  }

  .logusr-view-register .logusr-wallet-arrow {
    display: block;
  }
}

.logusr-add-blue {
  color: #2563eb;
}

.logusr-add-indigo {
  color: #6366f1;
}

.logusr-add-purple {
  color: #9333ea;
}

/* Terms */
.logusr-terms {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 8px 4px;
}

@media (min-width: 640px) {
  .logusr-terms {
    flex-direction: row;
  }
}

.logusr-terms-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.logusr-checkbox {
  border-radius: 4px;
  border: 1px solid #cbd5e1;
  color: #0b409c;
  cursor: pointer;
  width: 12px;
  height: 12px;
}

.logusr-checkbox:focus {
  outline: 2px solid #0b409c;
  outline-offset: 2px;
}

@media (min-width: 640px) {
  .logusr-checkbox {
    width: 14px;
    height: 14px;
  }
}

.logusr-terms-label {
  font-size: 10px;
  color: #64748b;
  cursor: pointer;
  user-select: none;
  text-align: center;
}

@media (min-width: 640px) {
  .logusr-terms-label {
    font-size: 12px;
  }
}

.logusr-terms-link {
  color: #0b409c;
  font-weight: 700;
  text-decoration: none;
}

.logusr-terms-link:hover {
  text-decoration: underline;
}

/* Scrollbar */
.logusr-body::-webkit-scrollbar {
  width: 6px;
}

.logusr-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.logusr-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.logusr-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
/* =================================================================================
                                      
================================================================================= */
/* =================================================================================
                                      
================================================================================= */
