.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 850px;
    margin: auto;
}

.option {
    width: calc((100% / 3) - 10px);
    padding-bottom: calc((100% / 3) * (3 / 5));
    margin-bottom: 10px;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.option::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 165, 0, 0.925);
    transition: background-color 0.3s ease;
}

.option:hover::before {
    background-color: rgba(255, 165, 0, 0.60);
}

.option-p {
    position: absolute;
    top: 40%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 1.35em; /* Tamaño de fuente aumentado en un 35% */
    text-decoration: none;
    z-index: 1;
    transition: color 0.3s ease;
}

.option:hover .option-p {
    color: black;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
    }

    .option {
        width: calc((100% / 2) - 10px);
        padding-bottom: calc((100% / 2) * (3 / 5));
    }

    @media (max-width: 480px) {
        .option {
            width: 100%;
					  /*width: calc((100% / 2) - 10px);*/
						padding-bottom: 60%;
        }
    }
}