
/* 
    Created on : 31 ene. 2025, 8:54:04 a. m.
    Author     : sofia
*/

 /*estilos para complementar el boostrap */

 /*font sizes*/
.text-xs{
    font-size: 1rem;
}
.text-sm{
    font-size: 1.3rem; 
}
.text-md {
    font-size: 2rem;
}
.text-lg {
    font-size: 3rem;
}

.font-bold{font-weight: bold;}
        
.position-relative {position: relative; }
.position-absolute {position: absolute; }
        

 /*flexbbox*/
.flex{display: flex}
.block{display: block}

.flex-column{flex-direction: column;}
.flex-column-reverse{flex-direction: column-reverse;}
.flex-reverse{flex-direction: row-reverse;}
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; 
}

.flex-grow-1 {flex-grow: 1;}
.flex-shrink-0 {flex-shrink: 0;}

/*gap*/
.gap-1{gap: 1rem;}
.gap-2{gap: 2rem;}
.gap-3{gap: 3rem;}
.gap-4{gap: 4rem;}
.gap-5{gap: 5rem;}

/*space*/
.space-y-1 {
    display: flex;
    flex-direction: column;
    gap: 1rem; 
}
.space-y-2 {
    display: flex;
    flex-direction: column;
    gap: 2rem; 
}
.space-y-3 {
    display: flex;
    flex-direction: column;
    gap: 3rem; 
}


/*justifi-content*/
.justify-content-center{justify-content: center;}
.justify-content-around{justify-content: space-around;}
.justify-content-end{justify-content: end;}
.justify-content-between { justify-content: space-between; }
.justify-flex-end { justify-content: flex-end; }

/*align-items*/
.align-items-center{align-items: center;}
.align-items-end{align-items: end;}

/* z-index */
.z-10{z-index: 10;}
.z-20{z-index: 20;}
.z-30{z-index: 30;}
.z-40{z-index: 40;}
.z-50{z-index: 50;}

/*margenes margin*/
.m-auto{margin: auto}
.m-px{margin: 1px;}
.m-1{margin: 1rem;}
.m-2{margin: 2rem;}
.m-3{margin: 3rem;}
.m-4{margin: 4rem;}
.m-5{margin: 5rem;}
.m-6{margin: 6rem;}

/*margin top button*/
.my-auto{margin: auto 0}
.my-0{margin: 0 0;}
.my-1{margin: 1rem 0;}
.my-2{margin: 2rem 0;}
.my-3{margin: 3rem 0;}
.my-4{margin: 4rem 0;}
.my-5{margin: 5rem 0;}
.my-6{margin: 6rem 0;}

/*margin rigth left*/
.mx-auto{margin: 0 auto}
.mx-0{margin: 0 0;}
.mx-1{margin: 0 1rem;}
.mx-2{margin: 0 2rem;}
.mx-3{margin: 0 3rem;}
.mx-4{margin: 0 4rem;}
.mx-5{margin: 0 5rem;}
.mx-6{margin: 0 6rem;}

/*margin top*/
.mt-0{margin-top: 0;}
.mt-1{margin-top: 1rem;}
.mt-2{margin-top: 2rem;}
.mt-3{margin-top: 3rem;}
.mt-4{margin-top: 4rem;}
.mt-5{margin-top: 5rem;}
.mt-6{margin-top: 6rem;}

/*margin button*/
.mb-auto{margin-bottom: auto}
.mb-0{margin-bottom: 0;}
.mb-1{margin-bottom: 1rem;}
.mb-2{margin-bottom: 2rem;}
.mb-3{margin-bottom: 3rem;}
.mb-4{margin-bottom: 4rem;}
.mb-5{margin-bottom: 5rem;}
.mb-6{margin-bottom: 6rem;}

/*margin rigth*/
.mr-0{margin-right: 0;}
.mr-1{margin-right: 1rem;}
.mr-2{margin-right: 2rem;}
.mr-3{margin-right: 3rem;}
.mr-4{margin-right: 4rem;}
.mr-5{margin-right: 5rem;}
.mr-6{margin-right: 6rem;}

/*margin left*/
.ml-0{margin-left: 0;}
.ml-1{margin-left: 1rem;}
.ml-2{margin-left: 2rem;}
.ml-3{margin-left: 3rem;}
.ml-4{margin-left: 4rem;}
.ml-5{margin-left: 5rem;}
.ml-6{margin-left: 6rem;}


/*pading*/
.p-0{padding: 0}
.p-1{padding: 0.5rem}
.p-2{padding: 1rem}
.p-3{padding: 1.5rem}
.p-4{padding: 2rem}
.p-5{padding: 2.5rem}
.p-6{padding: 3rem}
.p-7{padding: 3.5rem}



/*ancho width*/
.w-auto {width: auto;}
.w-1 {width: 1rem;}
.w-2 {width: 2rem;}
.w-3 {width: 3rem;}
.w-4 {width: 4rem;}
.w-5 {width: 5rem;}
.w-6 {width: 6rem;}
.w-7 {width: 7rem;}
.w-8 {width: 8rem;}

.w-20 {width: 20% !important;}
.w-25 {width: 25% !important;}
.w-30 {width: 30% !important;}
.w-35 {width: 35% !important;}
.w-40 {width: 40% !important;}
.w-50 {width: 50% !important;}
.w-60 {width: 60% !important;}
.w-70 {width: 70% !important;}
.w-80 {width: 80% !important;}
.w-85 {width: 85% !important;}
.w-90 {width: 90% !important;}
.w-95 {width: 95% !important;}
.w-full {width: 100% !important;}

.max-w-full{max-width: 100%}
.max-w-90{max-width: 90%}

.max-w-xs{max-width: 20rem; /* 320px */}


/*alto height*/
.h-1{height: 1rem;}
.h-2{height: 2rem;}
.h-3{height: 3rem;}
.h-3_5{height: 3.5rem;}
.h-4{height: 4rem;}
.h-5{height: 5rem;}
.h-6{height: 6rem;}
.h-7{height: 7rem;}
.h-8{height: 8rem;}
.h-27{height: 27rem;}

.h-screen{height: 100vh;}
.h-min-screen{height: 80vh;}


.h-full { height: 100%; }


/* top */
.top-0 { top: 0; }


/* left */
.left-0 { left: 0; }

/*bordes*/
.border-none{border: none;}
.border-gray-300 {border: 1px solid #d9d9db;}

.border-red-700 {border: 2px solid #971b00;}


/*box shadow*/
.shadow-none{box-shadow: none;}

/*backgrounds colors*/ 
.bg-transparent {background: transparent !important;}
.bg-white { background-color: #ffffff !important;}
.bg-grey-700 {background-color: #606264 !important;}
.bg-grey-400 {background-color: #a7a3a3d6 !important;}
.bg-grey-300 {background-color: #dbd7d7 !important;}
.bg-grey-200 {background-color: #e8e8e8 !important;}
.bg-grey-50  {background-color: #ecebebd6 !important;}

.bg-blue-900 {background-color: #03318C !important;}
.bg-blue-850 {background-color: #0047BC !important;}
.bg-blue-700 {background-color: #048ABF !important;}

.bg-blue-600 {background-color: #6EC1E4 !important;}
.bg-blue-500 {background-color: #a6dbf1 !important;}
.bg-blue-100 {background-color: #d2eaf5 !important;}
.bg-green-600  {background-color: #ACC435 !important;}

.bg-orange-500 {background-color: #F29B30 !important;}
.bg-orange-100 {background-color: #f5e9d2 !important;}
.bg-yellow-50 {background-color: #fffdd9 !important;}


.bg-orange-700 {background-color: #FF6600 !important;}

.bg-red-100 {background-color: #ffb9b4 !important;}
.bg-red-700 {background-color: #f44336 !important;}

.bg-dark { background-color: #000; } /* O cualquier tono oscuro */


.bg-opacity-50 { background-color: rgba(0, 0, 0, 0.5); }

.hover-overlay:hover { opacity: 1; }

/* scroll */
.scroll-y{overflow-y: auto; }

/* Border  */

.border {
  border-width: 1px !important;
}

.border-gray-300 {
  border-color: #d1d5db !important;
}


/* focus */
.focus\:outline-none:focus {
  outline: none !important;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5) !important;
}

.focus\:ring-blue-500:focus {
  box-shadow: 0 0 0 2px #3b82f6 !important; /* Este sobrescribe el anterior si se usa solo */
}


/* opacidad */
.opacity-0 { opacity: 0; }


/*rounded*/
.rounded-full{border-radius: 100%}
.rounded-md{border-radius: 1rem;}
.rounded-lg {
  border-radius: 1.5rem !important; /* 8px */
}


.rounded-r-sm {
  border-top-right-radius: 0.5rem;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0;

}

.rounded-r-full {
  border-top-right-radius: 100%;
  border-top-left-radius: 0;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 0;

}

.rounded-r-md {
  border-top-right-radius: 1rem;
  border-top-left-radius: 0;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 0;
}

.rounded-r-lg {
  border-top-right-radius: 1.5rem !important;
  border-top-left-radius: 0;
  border-bottom-right-radius: 1.5rem !important;
  border-bottom-left-radius: 0;

}

.rounded-l-sm {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0;
}

.rounded-l-full {
  border-top-left-radius: 100%;
  border-top-right-radius: 0;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 0;
}

.rounded-l-md {
  border-top-left-radius: 1rem;
  border-top-right-radius: 0;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 0;
}

.rounded-l-lg {
  border-top-left-radius: 1.5rem !important;
  border-top-right-radius: 0;
  border-bottom-left-radius: 1.5rem !important;
  border-bottom-right-radius: 0;
}


/*text color*/
.text-white{color: #fff;}
.text-gray-800 { color: #374151 !important;}
.text-grey-700 {color: #666666 !important;}

.text-blue-900 {color: #03318C !important;}
.text-blue-850 {color: #0047BC !important;}
.text-blue-700 {color: #0958e0 !important;}
.text-blue-650 {color: #048ABF !important;}
.text-blue-600 {color: #6EC1E4 !important;}
.text-blue-500 {color: #a6dbf1 !important;}

.text-green-800{color: #ADFF00 !important;}
.text-green-600{color: #98BF45 !important;}

.text-yellow-700{color: #b7950f !important;}

.text-orange-700 {color: #FF6600 !important;}
.text-red-700 {color: #be0404 !important;}


/*text hover color*/

.text-decortion-hover:hover {
  text-decoration:solid ; /* Sin subrayado */
}
.text-link-white {
  color: #fff; /* Texto blanco */
  text-decoration: none; /* Sin subrayado */
}

.text-link-white:hover { 
  color: #ececec; /* Texto blanco */
  text-decoration: underline; /* Subrayado al pasar el mouse */
}

.text-link-dark-blue {
  color: #17046e; /* Texto blanco */
  text-decoration: none; /* Sin subrayado */
}

.text-link-dark-blue:hover { 
  color: #282769; /* Texto blanco */
  text-decoration: underline; /* Subrayado al pasar el mouse */
}

.text-link-red {
  color: red; /* Texto en rojo */
  text-decoration: none; /* Sin subrayado */
}

.text-link-red:hover {
  text-decoration: underline; /* Subrayado al pasar el mouse */
  color: darkred; /* Cambia a un rojo más oscuro */
}

.text-hover-green:hover{color: #acee1e !important;}


/* text */
.text-justify {text-align: justify;}
.underline-none{text-decoration: none;}
.text-center {text-align: center;}
.text-initial{text-align: initial;}


/* text shadow  */
.text-shadow-sm{
  text-shadow: 0px 2px 4px  rgba(94, 94, 94, 0.5);
}

.text-shadow-md{
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5)
}



/* line-heigt interlineado  */
.leading-relaxed{line-height: 1.6rem;}


/* oculto */
.hidden {display: none;}


/* efectos  */
.translate-x:hover {
  transform: translateX(-5px);
}


/* cursor */
.cursor-pointer {cursor: pointer;}
.cursor-default{cursor: default !important;}

  
/* imagenes */
.img-fluid {
  max-width: 100%;
  height: auto;
}


/* transition */
.transition-opacity { transition: opacity 0.3s ease-in-out; }



/*buttons color*/ 
.btn-purple {
  color: #fff;
  background-color: #ab00b0;
  border-color: #ab00b0;
}

.btn-yellow {
  color: #fff;
  background-color: #eec900;
  border-color: #eec900;
}


 /* responsive */
@media screen and (max-width: 800px){
  .md\:m-auto{margin: auto !important;}

  .md\:w-25 {width: 25% !important;}
  .md\:w-90 {width: 90% !important;}
  .md\:w-100 {width: 100% !important;}

  .md\:flex {
    display: flex !important;
  }
  .md\:flex-none {
    display: block !important;
  }
}


