/* ============================================
   SEGURIDAD.PHP - Estilos Consolidados
   ============================================ */

.card-feature {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-feature .img-group {
    display: flex;
}

.card-feature .img-group img {
    width: 50%;
    height: 200px;
    object-fit: cover;
}

.card-feature .card-body {
    flex-grow: 1;
    background: #fff;
    color: #333;
    text-align: center;
    padding: 20px;
}

.card-feature .card-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-feature .card-text {
    font-size: 0.95rem;
}

.astillero-img {
    text-align: center;
}

.astillero-img img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: inline-block;
    margin-bottom: 30px;
}