/* Sección principal */
.cerrajeria-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #fefefe, #e0e0e0);
    overflow: hidden;
}

/* Imagen */
.cerrajeria-section img {
    width: 80%;
    max-width: 300px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.cerrajeria-section img:hover {
    transform: scale(1.05);
}

/* Texto descriptivo */
.cerrajeria-section .text-container {
    text-align: center;
    max-width: 500px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease forwards;
}

.cerrajeria-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.cerrajeria-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Iconos */
.icons-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.icon {
    background: #fff;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #007bff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Animación fadeInUp */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive mobile-first */
@media (min-width: 600px) {
    .cerrajeria-section {
        flex-direction: row;
        gap: 2rem;
        padding: 3rem;
    }

    .cerrajeria-section img {
        margin-bottom: 0;
    }

    .cerrajeria-section .text-container {
        text-align: left;
        margin-bottom: 0;
    }
}
