/* [project]/_EXTRAS/LadoCliente/ClienteWraper.module.css [app-client] (css) */
.ClienteWraper-module__jnXr4a__headerPlaceholder {
  width: 100%;
  height: 140px;
}

@media (max-width: 768px) {
  .ClienteWraper-module__jnXr4a__headerPlaceholder {
    height: 120px;
  }
}

@media (max-width: 576px) {
  .ClienteWraper-module__jnXr4a__headerPlaceholder {
    height: 110px;
  }
}

@media (max-width: 480px) {
  .ClienteWraper-module__jnXr4a__headerPlaceholder {
    height: 100px;
  }
}

@media (max-width: 360px) {
  .ClienteWraper-module__jnXr4a__headerPlaceholder {
    height: 90px;
  }
}

/* [project]/_Pages/Main/header/header.module.css [app-client] (css) */
.header-module__o-aMQG__header {
  z-index: 1000;
  background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
  border-bottom: 3px solid #8b7355;
  height: 90px;
  padding: 2% 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 20px rgba(184, 134, 11, .3);
}

.header-module__o-aMQG__container {
  justify-content: space-between;
  align-items: center;
  width: 95%;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
}

.header-module__o-aMQG__logo {
  color: #fff;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
  transition: transform .3s;
  display: flex;
}

.header-module__o-aMQG__logo:hover {
  transform: scale(1.05);
}

.header-module__o-aMQG__logoIcon {
  background: rgba(255, 255, 255, .2);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  padding: 10px;
  display: flex;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

.header-module__o-aMQG__logoImage {
  object-fit: contain;
  width: 32px;
  height: 32px;
}

.header-module__o-aMQG__logoText {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
  font-size: 1.4rem;
  font-weight: 700;
}

.header-module__o-aMQG__navDesktop {
  align-items: center;
  gap: 30px;
  display: flex;
}

.header-module__o-aMQG__navLink {
  color: #fff;
  border-radius: 25px;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-module__o-aMQG__navLink:before {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, .2), rgba(0, 0, 0, 0));
  width: 100%;
  height: 100%;
  transition: left .5s;
  position: absolute;
  top: 0;
  left: -100%;
}

.header-module__o-aMQG__navLink:hover:before {
  left: 100%;
}

.header-module__o-aMQG__navLink:hover {
  background: rgba(255, 255, 255, .15);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
}

.header-module__o-aMQG__navLink ion-icon {
  font-size: 1.2rem;
}

.header-module__o-aMQG__userActions {
  align-items: center;
  gap: 15px;
  display: flex;
}

.header-module__o-aMQG__loading {
  color: #fff;
  padding: 10px;
}

.header-module__o-aMQG__loading ion-icon {
  font-size: 1.5rem;
  animation: 1.5s infinite header-module__o-aMQG__pulse;
}

@keyframes header-module__o-aMQG__pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

.header-module__o-aMQG__userMenu {
  position: relative;
}

.header-module__o-aMQG__userButton {
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, .1);
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 25px;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  font-weight: 500;
  transition: all .3s;
  display: flex;
}

.header-module__o-aMQG__userButton:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-2px);
}

.header-module__o-aMQG__userName {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 120px;
  overflow: hidden;
}

.header-module__o-aMQG__chevron {
  transition: transform .3s;
}

.header-module__o-aMQG__dropdown {
  z-index: 1001;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  min-width: 200px;
  margin-top: 8px;
  padding: 8px 0;
  animation: .3s header-module__o-aMQG__dropdownFadeIn;
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

@keyframes header-module__o-aMQG__dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-module__o-aMQG__dropdownItem {
  color: #333;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.header-module__o-aMQG__dropdownItem:hover {
  color: #b8860b;
  background: #f5f5f5;
}

.header-module__o-aMQG__dropdownItem ion-icon {
  color: #666;
  font-size: 1.1rem;
}

.header-module__o-aMQG__dropdownItem:hover ion-icon {
  color: #b8860b;
}

.header-module__o-aMQG__authButtons {
  gap: 10px;
  display: flex;
}

.header-module__o-aMQG__loginButton, .header-module__o-aMQG__registerButton {
  border-radius: 20px;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.header-module__o-aMQG__loginButton {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
}

.header-module__o-aMQG__loginButton:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-2px);
}

.header-module__o-aMQG__registerButton {
  color: #b8860b;
  background: #fff;
  border: 1px solid #fff;
}

.header-module__o-aMQG__registerButton:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
}

.header-module__o-aMQG__menuMovil {
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  font-size: 1.8rem;
  transition: transform .3s;
  display: none;
}

.header-module__o-aMQG__menuMovil:hover {
  transform: scale(1.1);
}

.header-module__o-aMQG__navMovil {
  background: linear-gradient(135deg, #a0790a 0%, #b8860b 100%);
  border-right: 3px solid #8b7355;
  width: 300px;
  height: calc(100vh - 90px);
  padding: 30px 20px;
  animation: .3s header-module__o-aMQG__slideInLeft;
  display: none;
  position: fixed;
  top: 90px;
  left: 0;
  overflow-y: auto;
  box-shadow: 5px 0 20px rgba(0, 0, 0, .3);
}

@keyframes header-module__o-aMQG__slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.header-module__o-aMQG__navLinkMovil {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.header-module__o-aMQG__navLinkMovil:hover {
  color: #ffe5b4;
  background: rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding-left: 15px;
}

.header-module__o-aMQG__navLinkMovil:last-child {
  border-bottom: none;
}

.header-module__o-aMQG__authMovil {
  border-top: 2px solid rgba(255, 255, 255, .3);
  margin-top: 30px;
  padding-top: 30px;
}

.header-module__o-aMQG__authLinkMovil {
  color: #fff;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.header-module__o-aMQG__authLinkMovil:hover {
  color: #ffe5b4;
  background: rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding-left: 15px;
}

.header-module__o-aMQG__authLinkMovil:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .header-module__o-aMQG__header {
    height: 80px;
    padding: 1.5% 0;
  }

  .header-module__o-aMQG__container {
    padding: 0 15px;
  }

  .header-module__o-aMQG__logoText {
    font-size: 1.1rem;
  }

  .header-module__o-aMQG__navDesktop {
    display: none;
  }

  .header-module__o-aMQG__menuMovil {
    display: block;
  }

  .header-module__o-aMQG__navMovil {
    width: 280px;
    height: calc(100vh - 80px);
    display: block;
    top: 80px;
  }

  .header-module__o-aMQG__authButtons {
    display: none;
  }

  .header-module__o-aMQG__userButton {
    padding: 6px 10px;
  }

  .header-module__o-aMQG__userName {
    max-width: 80px;
  }

  .header-module__o-aMQG__dropdown {
    min-width: 180px;
    right: -10px;
  }
}

@media (max-width: 480px) {
  .header-module__o-aMQG__header {
    height: 70px;
    padding: 1% 0;
  }

  .header-module__o-aMQG__container {
    padding: 0 10px;
  }

  .header-module__o-aMQG__logoText {
    display: none;
  }

  .header-module__o-aMQG__navMovil {
    width: 250px;
    height: calc(100vh - 70px);
    top: 70px;
  }

  .header-module__o-aMQG__dropdown {
    min-width: 160px;
    left: auto;
    right: -20px;
  }
}

@media (hover: hover) {
  .header-module__o-aMQG__navLink:hover, .header-module__o-aMQG__userButton:hover, .header-module__o-aMQG__loginButton:hover, .header-module__o-aMQG__registerButton:hover {
    transform: translateY(-2px);
  }
}

/* [project]/_Pages/Main/Footer/footer.module.css [app-client] (css) */
.footer-module__kc1oAq__elegantFooter {
  color: #fff;
  background: linear-gradient(135deg, #5a3317 0%, #6b4423 50%, #7d4f2a 100%);
  margin-top: auto;
  padding-top: 50px;
  padding-bottom: 20px;
  font-family: Poppins, sans-serif;
  position: relative;
  overflow: hidden;
}

.footer-module__kc1oAq__footerWave {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 C300,20 300,20 600,40 C900,20 900,20 1200,40 L1200,0 L0,0 Z' fill='%23B8860B'/%3E%3C/svg%3E") 0 0 / cover no-repeat;
  width: 100%;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-1px);
}

.footer-module__kc1oAq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-module__kc1oAq__footerContent {
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  display: grid;
}

.footer-module__kc1oAq__footerBrand {
  grid-column: 1;
}

.footer-module__kc1oAq__footerLogo {
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  display: flex;
}

.footer-module__kc1oAq__logoImage {
  background: rgba(255, 255, 255, .1);
  border: 2px solid #b8860b;
  border-radius: 50%;
  padding: 5px;
  transition: transform .3s;
}

.footer-module__kc1oAq__logoImage:hover {
  transform: scale(1.05);
}

.footer-module__kc1oAq__footerLogo h2 {
  color: #b8860b;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.footer-module__kc1oAq__footerDescription {
  color: #e6e6e6;
  opacity: .9;
  margin-bottom: 15px;
  font-size: .9rem;
  line-height: 1.5;
}

.footer-module__kc1oAq__footerQuality {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.footer-module__kc1oAq__qualityTag {
  color: #b8860b;
  background: rgba(184, 134, 11, .3);
  border: 1px solid #b8860b;
  border-radius: 15px;
  align-items: center;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 10px;
  font-size: .75rem;
  font-weight: 600;
  transition: all .3s;
  display: inline-flex;
}

.footer-module__kc1oAq__qualityTag:hover {
  background: rgba(200, 134, 13, .3);
  transform: translateY(-2px);
}

.footer-module__kc1oAq__qualityTag ion-icon {
  font-size: 1rem;
}

.footer-module__kc1oAq__footerLinks {
  grid-column: 2;
}

.footer-module__kc1oAq__footerLinks h3 {
  color: #b8860b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-module__kc1oAq__footerLinks ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-module__kc1oAq__footerLinks li {
  margin-bottom: 12px;
}

.footer-module__kc1oAq__footerLink {
  color: beige;
  border-radius: 5px;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.footer-module__kc1oAq__footerLink:hover {
  color: #c8860d;
  background: rgba(200, 134, 13, .1);
  padding-left: 10px;
}

.footer-module__kc1oAq__footerLink ion-icon {
  opacity: .8;
  font-size: 1.1rem;
}

.footer-module__kc1oAq__footerContact {
  grid-column: 3;
}

.footer-module__kc1oAq__footerContact h3 {
  color: #b8860b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-module__kc1oAq__contactList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-module__kc1oAq__contactList li {
  color: #e6e6e6;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .9rem;
  line-height: 1.4;
  display: flex;
}

.footer-module__kc1oAq__contactList ion-icon {
  color: #b8860b;
  min-width: 18px;
  margin-top: 2px;
  font-size: 1.1rem;
}

.footer-module__kc1oAq__footerConnect {
  grid-column: 4;
}

.footer-module__kc1oAq__footerConnect h3 {
  color: #b8860b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-module__kc1oAq__subscribeForm {
  margin-bottom: 25px;
}

.footer-module__kc1oAq__inputContainer {
  background: rgba(255, 255, 255, .1);
  border: 2px solid rgba(184, 134, 11, .3);
  border-radius: 25px;
  transition: all .3s;
  display: flex;
  overflow: hidden;
}

.footer-module__kc1oAq__inputContainer:focus-within {
  border-color: #b8860b;
  box-shadow: 0 0 20px rgba(184, 134, 11, .3);
}

.footer-module__kc1oAq__inputContainer input {
  color: #fff;
  background: none;
  border: none;
  outline: none;
  flex: 1;
  padding: 12px 16px;
  font-size: .95rem;
}

.footer-module__kc1oAq__inputContainer input::placeholder {
  color: rgba(245, 245, 220, .7);
}

.footer-module__kc1oAq__inputContainer input:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.footer-module__kc1oAq__submitBtn {
  cursor: pointer;
  color: #5a3317;
  background: linear-gradient(45deg, #b8860b, gold);
  border: none;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  font-weight: bold;
  transition: all .3s;
  display: flex;
}

.footer-module__kc1oAq__submitBtn:hover:not(:disabled) {
  background: linear-gradient(45deg, gold, #b8860b);
  transform: scale(1.05);
}

.footer-module__kc1oAq__submitBtn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.footer-module__kc1oAq__submitBtn ion-icon {
  font-size: 1.1rem;
}

.footer-module__kc1oAq__mensaje {
  text-align: center;
  border-radius: 15px;
  margin-top: 10px;
  padding: 8px 12px;
  font-size: .85rem;
}

.footer-module__kc1oAq__mensaje.footer-module__kc1oAq__success {
  color: #22c55e;
  background: rgba(34, 197, 94, .2);
  border: 1px solid rgba(34, 197, 94, .3);
}

.footer-module__kc1oAq__mensaje.footer-module__kc1oAq__error {
  color: #ef4444;
  background: rgba(239, 68, 68, .2);
  border: 1px solid rgba(239, 68, 68, .3);
}

.footer-module__kc1oAq__socialMedia {
  flex-wrap: wrap;
  gap: 15px;
  display: flex;
}

.footer-module__kc1oAq__socialIcon {
  color: #b8860b;
  background: rgba(184, 134, 11, .2);
  border: 2px solid #b8860b;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
}

.footer-module__kc1oAq__socialIcon:hover {
  color: #5a3317;
  background: #b8860b;
  transform: translateY(-3px)scale(1.1);
  box-shadow: 0 5px 15px rgba(184, 134, 11, .4);
}

.footer-module__kc1oAq__socialIcon ion-icon {
  font-size: 1.3rem;
}

.footer-module__kc1oAq__footerDivider {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), #b8860b, rgba(0, 0, 0, 0));
  height: 2px;
  margin: 40px 0 20px;
}

.footer-module__kc1oAq__footerBottom {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  display: flex;
}

.footer-module__kc1oAq__copyright {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.footer-module__kc1oAq__copyright p {
  color: beige;
  opacity: .8;
  margin: 0;
  font-size: .9rem;
}

.footer-module__kc1oAq__currentYear {
  color: #b8860b;
  font-weight: 600;
}

.footer-module__kc1oAq__legalLinks {
  flex-wrap: wrap;
  gap: 20px;
  display: flex;
}

.footer-module__kc1oAq__legalLink {
  color: beige;
  opacity: .8;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: .85rem;
  text-decoration: none;
  transition: all .3s;
}

.footer-module__kc1oAq__legalLink:hover {
  color: #b8860b;
  opacity: 1;
  background: rgba(184, 134, 11, .1);
  transform: translateY(-1px);
}

.footer-module__kc1oAq__footerBadges {
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  display: flex;
}

.footer-module__kc1oAq__badge {
  color: #b8860b;
  background: rgba(184, 134, 11, .2);
  border: 1px solid #b8860b;
  border-radius: 15px;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: .8rem;
  font-weight: 600;
  display: inline-flex;
}

.footer-module__kc1oAq__badge ion-icon {
  font-size: 1rem;
}

.footer-module__kc1oAq__versionBadge {
  color: beige;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(245, 245, 220, .3);
  border-radius: 12px;
  padding: 4px 8px;
  font-size: .75rem;
  font-weight: 500;
}

@keyframes footer-module__kc1oAq__fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .footer-module__kc1oAq__footerContent {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-module__kc1oAq__footerBrand {
    grid-column: 1;
  }

  .footer-module__kc1oAq__footerLinks {
    grid-column: 2;
  }

  .footer-module__kc1oAq__footerContact {
    grid-column: 1;
  }

  .footer-module__kc1oAq__footerConnect {
    grid-column: 2;
  }
}

@media (max-width: 768px) {
  .footer-module__kc1oAq__elegantFooter {
    padding-top: 40px;
  }

  .footer-module__kc1oAq__footerContent {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-module__kc1oAq__footerBrand, .footer-module__kc1oAq__footerLinks, .footer-module__kc1oAq__footerContact, .footer-module__kc1oAq__footerConnect {
    text-align: center;
    grid-column: 1;
  }

  .footer-module__kc1oAq__footerLogo {
    justify-content: center;
  }

  .footer-module__kc1oAq__footerLogo h2 {
    font-size: 1.5rem;
  }

  .footer-module__kc1oAq__footerQuality {
    align-items: center;
  }

  .footer-module__kc1oAq__socialMedia {
    justify-content: center;
  }

  .footer-module__kc1oAq__footerBottom {
    text-align: center;
    flex-direction: column;
    gap: 15px;
  }

  .footer-module__kc1oAq__copyright {
    align-items: center;
  }

  .footer-module__kc1oAq__legalLinks, .footer-module__kc1oAq__footerBadges {
    justify-content: center;
  }

  .footer-module__kc1oAq__backToTop {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .footer-module__kc1oAq__container {
    padding: 0 15px;
  }

  .footer-module__kc1oAq__footerLogo h2 {
    font-size: 1.3rem;
  }

  .footer-module__kc1oAq__footerDescription {
    font-size: .9rem;
  }

  .footer-module__kc1oAq__footerLinks h3, .footer-module__kc1oAq__footerContact h3, .footer-module__kc1oAq__footerConnect h3 {
    font-size: 1.1rem;
  }

  .footer-module__kc1oAq__inputContainer {
    border-radius: 20px;
  }

  .footer-module__kc1oAq__inputContainer input {
    padding: 10px 14px;
    font-size: .9rem;
  }

  .footer-module__kc1oAq__submitBtn {
    padding: 10px 14px;
  }

  .footer-module__kc1oAq__socialIcon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .footer-module__kc1oAq__socialIcon ion-icon {
    font-size: 1.1rem;
  }

  .footer-module__kc1oAq__qualityTag {
    padding: 6px 10px;
    font-size: .8rem;
  }

  .footer-module__kc1oAq__legalLinks {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-module__kc1oAq__legalLink {
    font-size: .8rem;
  }
}

@media (prefers-color-scheme: dark) {
  .footer-module__kc1oAq__elegantFooter {
    background: linear-gradient(135deg, #654321 0%, #8b4513 50%, sienna 100%);
  }

  .footer-module__kc1oAq__footerDescription, .footer-module__kc1oAq__contactList li, .footer-module__kc1oAq__copyright p {
    color: #e6e6e6;
  }
}

@media (hover: hover) {
  .footer-module__kc1oAq__footerLink:hover, .footer-module__kc1oAq__socialIcon:hover, .footer-module__kc1oAq__qualityTag:hover, .footer-module__kc1oAq__legalLink:hover {
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-module__kc1oAq__backToTop, .footer-module__kc1oAq__footerLink, .footer-module__kc1oAq__socialIcon, .footer-module__kc1oAq__qualityTag, .footer-module__kc1oAq__submitBtn, .footer-module__kc1oAq__legalLink {
    transition: none !important;
    animation: none !important;
  }
}

/* [project]/_EXTRAS/Crear/crear.module.css [app-client] (css) */
.crear-module__inSqOW__mensajeAdminCreado {
  color: #fff;
  z-index: 10000;
  background: #4caf50;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  animation: 5s ease-in-out forwards crear-module__inSqOW__fadeInOut;
  position: fixed;
  top: 20px;
  right: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

@keyframes crear-module__inSqOW__fadeInOut {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  10% {
    opacity: 1;
    transform: translateX(0);
  }

  90% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

/*# sourceMappingURL=_d837defe._.css.map*/