body, h1, h2, h3, h4, h5, h6 {

    font-weight: 400;
    width: 100%;
	  font-size: 1rem;
}

h1 {
	font-size: 1.7rem;
	line-height: 2rem;
	font-weight: 600;
}
h2, .h2 {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 500;
}
h3, .h3 {
	font-size: 1.3rem;
}
h4, .h4 {
  font-size: 1.1rem;
}

.label, .form-label, label {
    color: var(--bs-light);
}

.main {
	background: rgba(50, 194, 255, 0.4);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	color: var(--bs-light);
}

.jumbotron {
    /* Imagen optimizada con WebP */
    background-image: url('https://cdn.modyo.cloud/uploads/ba679c1c-6872-4c74-a372-c177a0da3643/original/hero.webp');

    /* Parallax */
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    /* Dimensiones */
    min-height: 70vh;
    position: relative;

    /* Flexbox para centrar contenido */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Overlay para mejor contraste del texto */
  .jumbotron::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
  }

  /* Contenido sobre el overlay */
  .jumbotron > * {
    position: relative;
    z-index: 2;
  }

  /* Mobile: desactivar parallax (mejor performance) */
  @media (max-width: 768px) {
    .jumbotron {
      background-attachment: scroll;
      background-image: url('https://cdn.modyo.cloud/uploads/16015016-2048-4bf4-97c3-ef381c15a811/original/hero2.jpg?w=768&q=75&fm=webp');
      min-height: 50vh;
    }
  }

#jumbotron:hover {
  /*-webkit-filter: grayscale(0);
  filter: none;*/
}


/* CONTACT FORM */
.form-snippet h1 {
  margin-top: 1.5rem!important;
  margin-bottom: 1.5rem!important;
}

.form-snippet .btn-primary {
	width: 100%;
}

/*FOOTER*/

footer {
	background: var(--bs-primary);
  color: var(--bs-light);
	padding: 1.5em;
}

footer a {  
	color: var(--bs-light);
  transition-duration: 0.2s;
}

footer a:hover {
  color: var(--bs-dark);
  text-decoration: none;
}

ul.list-unstyled {
  padding-top: 1rem;
	padding-left: revert;
}

ul.list-unstyled li {
  padding-top: 1rem;
}

/* Notifications CSS */
.notifications_btn .notifications-badge {width: 12px;height: 12px;border-radius: 100%;position: absolute;right: 15px;top: 3px;padding: 0 !important;background: rgba(var(--bs-secondary-rgb), 1);border: var(--bs-btn-bg) 2px solid;transition:.15s;}
.notifications_btn:hover .notifications-badge {border: var(--bs-btn-hover-bg) 2px solid;transition:.15s;}
.avatar {height: 40px;width: 40px;background-size: cover;}
.dropdown_user {min-width: 300px;}
.avatar_big {font-size: 20px;width: 50px !important;height: 50px !important;background-size: cover;}
.notification *:last-child {margin-bottom: 0 !important;}
#notifications.modal.right .modal-dialog,
#menu_panel.modal.right .modal-dialog {max-width: 400px;}
