/* ============================================
   POTENCIA.PHP - Estilos Consolidados
   ============================================ */

/* Botones */
.btn-opcion {
    display: inline-block;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    font-weight: 600;
    padding: 12px 20px;
    margin: 8px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-opcion:hover {
    background: linear-gradient(135deg, #0056b3, #003f7f);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Imágenes generales */
.hover-zoom {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.hover-zoom:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.lapcp-gif {
    width: 300px;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
}

/* Ajustes de sección */
.lapcp-section {
    max-width: 800px;
    margin: 0 auto;
}

.lapcp-text {
    font-size: 1.15rem;
    line-height: 1.6;
    text-align: justify;
}

/* Sección uniforme */
.section-uniform {
    background-color: #f9f9f9;
    padding: 70px 20px;
    border-radius: 12px;
}

/* Títulos */
h2.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    text-align: center;
}

.section-uniform .row img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.service-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Texto de las imágenes */
.img-title {
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
}