/* Clases utilitarias para textos, márgenes y otros estilos comunes */

/* Clase de accesibilidad - Oculta visualmente pero accesible para lectores de pantalla */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Alineación de texto */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Estilos de texto */
.text-italic {
    font-style: italic;
}

.text-bold {
    font-weight: bold;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

/* Colores de texto */
.text-muted {
    color: #595959; /* AAA: 7:1 */
}

.text-primary {
    color: var(--primary-color);
}

.text-white {
    color: white;
}

/* Tamaños de texto */
.text-small {
    font-size: 0.875rem;
}

.text-large {
    font-size: 1.2rem;
}

/* Estilos específicos para casos de uso */
.client-testimony {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.text-caption {
    font-style: italic;
    color: #595959; /* AAA: 7:1 */
    font-size: 0.9rem;
}

/* Overlays */
.overlay-light {
    background: rgba(0, 0, 0, 0.3);
}

.overlay-medium {
    background: rgba(0, 0, 0, 0.5);
}

.overlay-dark {
    background: rgba(0, 0, 0, 0.7);
}

/* Márgenes y padding */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Posicionamiento */
.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.flex-column {
    flex-direction: column;
} 