/* css/productos-servicios.css */
.ps-page .page-main-title {
    text-align: center;
    font-size: 2em;
    color: #333;
    margin-bottom: 30px;
}

.ps-intro-section {
    display: flex;
    flex-wrap: wrap-reverse; /* Imagen puede ir arriba en pantallas pequeñas */
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.ps-description {
    flex: 3;
    min-width: 300px;
    line-height: 1.7;
    text-align: justify;
}

.ps-image-main {
    flex: 2;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ps-categories-nav {
    margin-top: 20px;
    margin-bottom: 30px;
}

.ps-categories-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centra los botones */
    gap: 15px; /* Espacio entre botones */
}

.ps-category-button {
    display: block; /* O inline-block si prefieres que se ajusten al texto */
    background-color: #007bff; /* Azul, ajusta a tu paleta */
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 220px; /* Ancho mínimo para que se vean bien */
}

.ps-category-button:hover {
    background-color: #0056b3; /* Azul más oscuro */
    transform: translateY(-2px); /* Efecto ligero al pasar el mouse */
}

/* Estilos para la página de servicios */
.ps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin: 40px 0;
}

.ps-card {
    max-width: 320px;
    text-align: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    padding: 25px;
}

.ps-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.ps-card h3 {
    color: #764ba2;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 8px;
}

.ps-card p {
    color: #5a6c7d;
    font-size: 1em;
}
