@font-face {
    font-family: "FuturaCondensed";
    src: url("../fuente/futura-condensed.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

.services-container {
    width: 100%; /* Ajustar el ancho del contenedor */
    margin: auto;
    text-align: center;
    background: #efefef; /* Fondo blanco */
    padding: 20px;
    border-radius: 10px;
}

.services-container h2 {
    color: #3f3f3f;
    letter-spacing: 4px;
    font-size: 45px;
    margin-bottom: 20px;
    font-family: "FuturaCondensed", sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columnas */
    gap: 15px;
}

.service {
    background: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.service img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}