/* Espaciado */
.m-4 {
    margin: 1rem;
}

.p-4 {
    padding: 1rem;
}

.p-8 {
    padding: 2rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.ml-4{
    margin-left: 1rem;
}

.ml-auto {
    margin-left: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Dimensiones */
.w-full {
    width: 100%;
}

.w-auto{
    width: auto;
}

.w-1{
    width: 4px;
}

.w-2{
    width: 8px;
}

.w-3{
    width: 16px;
}

.w-4{
    width: 32px;
}

.max-w-\[600px\] {
    max-width: 600px;
}

/* Flexbox */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

/* Tipografía */
.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 700;
}

/* Bordes y decoración */
.rounded-2xl {
    border-radius: 1rem; /* ~rounded-2xl en Tailwind */
}

.shadow-lg {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.border-2 {
    border-width: 2px;
}

.border-dashed {
    border-style: dashed;
}

.border-\[\#F08001\] {
    border-color: #F08001;
}

.justify-center{
    justify-items: center;
}

/* Custom buttons */
.solidButton {
    border: 4px solid #F08001;
    padding: 8px 16px;
    background-color: #F08001;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    box-shadow: none;
    height: auto;
    line-height: normal;
}

.solidButton:hover {
    background-color: #ff9a33;
    border-color: #ff9a33;
    box-shadow: none;
}

.outlineButton {
    border: 4px solid #F08001;
    background-color: transparent;
    color: #F08001 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 4px;
    box-shadow: none;
    height: auto;
    line-height: normal;
}

.outlineButton:hover {
    background-color: #ff9a33;
    border-color: #ff9a33;
    color: white;
}
